Android Question GoogleMaps - Zindex of Circle, Polilines, ect does not have any Effect

DonManfred

Expert
Licensed User
Longtime User
Hello,
a friend of mine have problems with GoogleMaps using the new Renderer.
com.google.android.gms:play-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

WhatsApp Bild 2024-06-15 um 10.10.55_6f5fda90.jpg

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.
 
Top