Hi,
when I try to iterate over markers in a GoogleMap I got this error message during compilation:
my code is something like this
Any help?
when I try to iterate over markers in a GoogleMap I got this error message during compilation:
use of undeclared identifier 'GMSMarker'; did you mean 'B4IMarker'?
my code is something like this
B4X:
Public gmap as GoogleMap
gmap.Initialize("gmap",ApiKey)
'some markers added (and correctly displayed)
For Each m As Marker in gmap '<---this is the line with the compilation error
...
Next
Any help?