Hi,
I need to track an user by GPS coordinates each 10 seconds and show it on line using TMSFNCMaps.
How the best way to do it using markers? For example, I would like to take a truck image on road running during the travel.
How I can get it?
Regards,
Thiago
Bart
(Bart)
2
Hi,
With TTMSFNCMaps
you can assign a custom image to Markers
. Detailed information can be found in the online Markers documentation.
You can also use Polylines
to display the route a vehicle has been following. Detailed information can be found in the online Polylines Documentation.
Hello,
I need to move a marker on map during the travel and I do not find it on manual. How can I do it?
Regrds.
Bart
(Bart)
4
Adjust the Latitude
and/or Longitude
coordinates to reposition the Marker
on the map.
TMSFNCMaps1.BeginUpdate;
TMSFNCMaps1.Markers[0].Latitude := TMSFNCOpenLayers1.Markers[0].Latitude + 0.1;
TMSFNCMaps1.Markers[0].Longitude := TMSFNCOpenLayers1.Markers[0].Longitude + 0.1;
TMSFNCMaps1.EndUpdate;