diff options
-rw-r--r-- | modern/src/other/GeofencesPage.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modern/src/other/GeofencesPage.js b/modern/src/other/GeofencesPage.js index 21df8f34..4ecba888 100644 --- a/modern/src/other/GeofencesPage.js +++ b/modern/src/other/GeofencesPage.js @@ -13,6 +13,7 @@ import MapGeofenceEdit from '../map/MapGeofenceEdit'; import GeofencesList from './GeofencesList'; import { useTranslation } from '../common/components/LocalizationProvider'; import dimensions from '../common/theme/dimensions'; +import MapGeocoder from '../map/geocoder/MapGeocoder'; const useStyles = makeStyles((theme) => ({ root: { @@ -70,9 +71,10 @@ const GeofencesPage = () => { </Drawer> <div className={classes.mapContainer}> <MapView> - <MapCurrentLocation /> <MapGeofenceEdit /> </MapView> + <MapCurrentLocation /> + <MapGeocoder /> </div> </div> </div> |