diff options
author | Anton Tananaev <anton@traccar.org> | 2022-05-28 07:37:24 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-05-28 07:37:24 -0700 |
commit | 47fdc633966a8f2baefb5424042de6be2ecd1ab6 (patch) | |
tree | 9817e5b02898636f146c4ed7c62aa8221310bb6f /modern/src/map/core | |
parent | ab26340ead6eba063734286a374101951d08688b (diff) | |
download | trackermap-web-47fdc633966a8f2baefb5424042de6be2ecd1ab6.tar.gz trackermap-web-47fdc633966a8f2baefb5424042de6be2ecd1ab6.tar.bz2 trackermap-web-47fdc633966a8f2baefb5424042de6be2ecd1ab6.zip |
Add map to stops report
Diffstat (limited to 'modern/src/map/core')
-rw-r--r-- | modern/src/map/core/MapView.js (renamed from modern/src/map/core/Map.js) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modern/src/map/core/Map.js b/modern/src/map/core/MapView.js index 1e7fa76b..ba5a67d6 100644 --- a/modern/src/map/core/Map.js +++ b/modern/src/map/core/MapView.js @@ -75,7 +75,7 @@ const switcher = new SwitcherControl( map.addControl(switcher); -const Map = ({ children }) => { +const MapView = ({ children }) => { const containerEl = useRef(null); const t = useTranslation(); @@ -131,4 +131,4 @@ const Map = ({ children }) => { ); }; -export default Map; +export default MapView; |