Hello,
a friend of mine have problems with GoogleMaps using the new Renderer.
com.google.android.gmslay-services-maps is updated to 18.2.0
Using the code (mapextra is type GoogleMapsExtras) the circle should cover the Building. But it looks like the circle is "behind" the Building.
B4X:
Sub MapFragment1_Click (Point As LatLng)
Dim copts As CircleOptions
copts.Initialize
copts.Center2(Point.Latitude,Point.Longitude)
copts.FillColor(Colors.Blue)
copts.Radius(10)
copts.ZIndex(10000)
mapextra.AddCircle(gmap,copts)
'gmap.AddMarker(Point.Latitude, Point.Longitude, "New Marker")
End Sub
Has anyone seen such a problem too?
It looks like Zindex does not change anything anylonger.
My friend told me that this is after the last update from google already. He isn´t sure about the new renderer.