Android Question Question For Warwound

Terradrones

Active Member
Hi Warwound

I am using your Googlemaps Extra Library to plot circles on the map where my Coordinates are located.

Is there any chance of please adding a Functions whereby I can plot the Names of the Coordinate next to each circle?

Erel has given me the hint of using Markers, which I have tried and it works. The only problem is that if one has thousands of points, then your entire map is covered by these ugly looking Goolemap Markers.

If that is not possible, then maybe a Function whereby the User taps on one of the circles and a Pop-up screen appears with the info of the Point.

Thanks
Michael
 

M6SOFT

Member
Licensed User
Longtime User
Take a look at CustomTileProvider. You can generate tiles in code, drawing circles, names etc. based on coordinates stored for example in database.

B4X:
CustomTileProviderV.Initialize(Null, "Get_Tile_Points")

TileOverlayOptions1.Initialize

TileOverlayOptions1.SetTileProvider(CustomTileProviderV)

TileOverlayOptions1.SetVisible(true)

TileOverlayOptions1.SetZIndex(4)  

TileOverlayV=GoogleMapsExtras1.AddTileOverlay(gmap, TileOverlayOptions1)
 
Upvote 0
Top