Android Question Google maps default scale (zoom level)

leitor79

Active Member
Licensed User
Longtime User
Hi,

I'm starting to use this, and I need to know how to set the zoom level by code... I couldn't find the property or method withing the Mapfragment or googlemap objects...

Regards,
 

DonManfred

Expert
Licensed User
Longtime User
B4X:
    Dim cp As CameraPosition
    cp.Initialize(latlon.Latitude, latlon.Longitude, zoom)
    gmap.AnimateCamera(cp)
 
Upvote 0

BillMeyer

Well-Known Member
Licensed User
Longtime User
Eish - DonManfred is on the Ball !!
 
Upvote 0
Top