I use a small circle geofence as a marker in the map.
Greetings Bernd
You can also use POI layer.
How to add a layer and The poi appear on map and my client receive the same poi in the message.
POI layout would only solve the first part. Display markers on the map.
How to add a layer and The poi appear on map and my client receive the same poi in the message.
And how to include trip duration in short massage.
And how to include trip duration in short massage.
#if($speedUnit == 'kmh')
#set($speedValue = $position.speed * 1.852)
#set($speedString = $numberTool.format("0.0 km/h", $speedValue))
#elseif($speedUnit == 'mph')
#set($speedValue = $position.speed * 1.15078)
#set($speedString = $numberTool.format("0.0 mph", $speedValue))
#else
#set($speedString = $numberTool.format("0.0 kn", $position.speed))
#end
$device.name ignition OFF Speed $speedString Near $position.address at $dateTool.format("hh:mm a EEE d MMM yyyy", $event.eventTime, $locale, $timezone) Map Link: https://www.google.com/maps/search/?api=1&query=$position.latitude,$position.longitude
Hi friend,
I want to add custom land markers to the traccar map. That address should appear on my map and my client should receive the same address in the message. Is it possible?