#else if B4i
gmap.Initialize("gmap", Main.API_KEY)
pnlMap.AddView(gmap, 0, 0, pnlMap.Width, pnlMap.Height)
gmap.MyLocationEnabled=True '<<----------- To force the pop up for user permission
#End If
gmap.GetUiSettings.CompassEnabled = True
gmap.GetUiSettings.TiltGesturesEnabled = False
gmap.MapType = gmap.MAP_TYPE_NORMAL
If gmap.MyLocationEnabled=True Then '<<---- try to determine user click permission to dislay Location Button / Hide Location Button
gmap.GetUiSettings.MyLocationButtonEnabled=True
Else
gmap.GetUiSettings.MyLocationButtonEnabled=False
End If