Thank you for your response. I have encountered some issues. Could you provide me with a proper configuration? Here is my current setup:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE properties SYSTEM 'http://java.sun.com/dtd/properties.dtd'>
<properties>
<!-- Documentation: https://www.traccar.org/configuration-file/ -->
<entry key='database.driver'>org.postgresql.Driver</entry>
<entry key='database.url'>jdbc:postgresql://localhost:5432/traccar_db</entry>
<entry key='database.user'>postgres</entry>
<entry key='database.password'>root</entry>
<!-- Géocodage inverse avec OpenStreetMap Nominatim -->
<entry key='geocoder.enable'>true</entry>
<entry key='geocoder.type'>nominatim</entry>
<entry key='geocoder.url'>https://nominatim.openstreetmap.org/reverse</entry>
<!-- Inclure l'adresse dans les rapports -->
<entry key='report.includeAddress'>true</entry>
<!-- Temps réel et délais de mise à jour -->
<entry key='event.overspeed.minimalDuration'>60</entry>
<entry key='event.motion.minimalDuration'>60</entry>
<entry key='event.geofence.minimalDuration'>60</entry>
<entry key='event.ignition.minimalDuration'>60</entry>
<!-- Paramètres de sécurité -->
<entry key='web.allowCommands'>true</entry>
<entry key='web.disableCommands'>false</entry>
<entry key='web.disableReports'>false</entry>
</properties>
Did you understand what Anton wrote ?
Additional parameters
By default reverse geocoding is only done when user requests reports or explicitly clicks "show address" button in the app. You can disable this behavior using the following parameters:
<entry key='geocoder.onRequest'>false</entry>
<entry key='geocoder.ignorePositions'>false</entry>
I hope you are doing well.
I have successfully installed and configured Traccar Manager, but I am encountering an issue with real-time address updates. When I click on a vehicle, the address does not update automatically. Instead, I need to manually click on the "Show Address" button each time to refresh it.
I have attached a screenshot for reference. Could you please advise on how to enable real-time address updates?
Thank you for your support.