nitaliano / react-native-mapbox-gl

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

Zoom into certain coordinates on button click. #1482

Closed cerberusv2px closed 5 years ago

cerberusv2px commented 5 years ago

How to zoom into certain coordinates. Suppose I am at zoom level 12 with coordinates [a1,b1]. Now on button click, I want to zoom into coordinates [a2,b2] with zoom level 20.

I did the following, but it wont work.

this.map.moveTo([85.4279593, 27.7159906]);
this.map.zoomTo(18);
kristfal commented 5 years ago

Use setCamera instead. This function takes both coordinates and zoom level and other params.