nitaliano / react-native-mapbox-gl

A Mapbox GL react native module for creating custom maps
Other
2.16k stars 699 forks source link

setVisibleCoordinateBounds not a function #1640

Closed ansarikhurshid786 closed 4 years ago

ansarikhurshid786 commented 5 years ago

I am trying to fitbond using setVisibleCoordinateBounds method of mapbox.

I tried like :

let line = turf.lineString(responseData.geometry.rings[0]);
let bbox = turf.bbox(line);
this.oMap.setVisibleCoordinateBounds(bbox);

But I am getting setVisibleCoordinateBounds is not function..

@nitaliano