iOS Question iGoogleMaps Zoom doesn't work

mauro vicamini

Active Member
Licensed User
Longtime User
It seems that the zoom does't work.
Try this:
B4X:
Private Sub AddMap
    gmap.Initialize("gmap", ApiKey)
    Panel1.AddView(gmap, 0, 0, 100%x, 100%y)
   
    gmap.MapType = gmap.MAP_TYPE_TERRAIN
    gmap.GetUiSettings.CompassEnabled = True
    gmap.GetUiSettings.MyLocationButtonEnabled = True
    gmap.GetUiSettings.ZoomGesturesEnabled = True
    gmap.CameraPosition.Initialize(45,9,16)

End Sub
It always stay at zoom level 2.
If I'm wrong, pls post me some working example code for zooming at level 16 or more.

Thanks
 
Top