You have to set geocoder.ignorePositions
to false
. Also make sure you use the geocoding provider with enough quota.
I add it but the same is shown automatically in the device address only but not in the report. I have my own geocoding server so there is no limit.
<entry key='geocoder.enable'>true</entry>
<entry key='geocoder.type'>nominatim</entry>
<entry key='geocoder.url'>http://xx.xx.2.xx:8xx5/reverse</entry>
<entry key='geocoder.processInvalidPositions'>false</entry>
<entry key='geocoder.onRequest'>false</entry>
<entry key='geocoder.reuseDistance'>10</entry>
<entry key='geocoder.ignorePositions'>false</entry>
Have you checked that you have the data for all positions?
I have configured
<entry key='geocoder.onRequest'>false</entry>
in Traccar to automatically display the address for devices. However, I am facing an issue where the address is only shown automatically for devices, but not in the report. I would like to modify the Traccar so that the address is always displayed in the report without needing to click the "Show address" button. How can I achieve this?