diff options
author | Anton Tananaev <anton@traccar.org> | 2022-06-15 18:49:15 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-06-15 18:49:15 -0700 |
commit | 5154c9be13ad1446b09feaaa843e621555ac7581 (patch) | |
tree | b6af81051fb500cb228476a64f90b1fe376ae5e3 /modern/src/reports/StopReportPage.js | |
parent | c407acaadc5dadbc7db917a11c8294aa7710b2cc (diff) | |
download | trackermap-web-5154c9be13ad1446b09feaaa843e621555ac7581.tar.gz trackermap-web-5154c9be13ad1446b09feaaa843e621555ac7581.tar.bz2 trackermap-web-5154c9be13ad1446b09feaaa843e621555ac7581.zip |
Address for trips and stops
Diffstat (limited to 'modern/src/reports/StopReportPage.js')
-rw-r--r-- | modern/src/reports/StopReportPage.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modern/src/reports/StopReportPage.js b/modern/src/reports/StopReportPage.js index c5bb1003..9e42cb33 100644 --- a/modern/src/reports/StopReportPage.js +++ b/modern/src/reports/StopReportPage.js @@ -20,6 +20,7 @@ import useReportStyles from './common/useReportStyles'; import MapPositions from '../map/MapPositions'; import MapView from '../map/core/MapView'; import MapCamera from '../map/MapCamera'; +import AddressValue from '../common/components/AddressValue'; const columnsArray = [ ['startTime', 'reportStartTime'], @@ -73,6 +74,8 @@ const StopReportPage = () => { return formatHours(item[key]); case 'spentFuel': return formatVolume(item[key], volumeUnit, t); + case 'address': + return (<AddressValue latitude={item.latitude} longitude={item.longitude} originalAddress={item[key]} />); default: return item[key]; } |