PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → [WM] How to show all the customers in Google Maps
[WM] How to show all the customers in Google Maps
Iniciado por guest, 26,feb. 2018 16:55 - 1 respuesta
Publicado el 26,febrero 2018 - 16:55
Hello to all

I'm trying to play with WM18 to create an application to see all the markers (customers) on a Google Map, reading their addresses from a database and pass the data to Google api to show a screen like that below



I would like to know which steps to follow.

Tips and tricks are appreciated.
Thanks in advance

Gianni
Publicado el 27,febrero 2018 - 11:51
try this

clTempPosition is a géoPosition

for each base
clTempPosition..Latitude = base.latitude
clTempPosition..Longitude = base.longitude
Marker..Position = clTempPosition

MapAddMarker(MAP_Path,Marker)
...
end