iOS Question Google Maps Marker Info Window

foakgul

Member
Licensed User
Longtime User
Hello,

Is there a Google Maps marker method for keeping the marker label visible at all times in iOS just like B4A?

Specifically I'm looking for the following method but it doesn't exist.

marker.InfoWindowShown

Thanks!
 

foakgul

Member
Licensed User
Longtime User
I'm getting the following error after adding this sub to GoogleMapsExtra class:

B4X:
[<b4i_googlemapsextra 0x17d6e940> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key selectedMarker.

The way I call the routine is:
B4X:
m = gmap.AddMarker2(Point.Latitude, Point.Longitude, "trial", Colors.Red)
gextra.SetSelectedMarker(m)

Thanks!


 
Upvote 0

Daniel Uribe

Member
Licensed User
Longtime User
Hello everyone!


A little question, is there a way to call infowindow marker clic event? like android?:

B4X:
...
Dim oiwcl As OnInfoWindowClickListener
        oiwcl.Initialize("InfoWindow")
        gmapextras.SetOnInfoWindowClickListener(gmap, oiwcl)

....

Sub InfoWindow_click(Marker1 As Marker)
        Log("click on infowindow")
End Sub

Always Thanks a lot!!!!!
 
Upvote 0
Top