diff options
Diffstat (limited to 'modern/src/other/EventPage.js')
-rw-r--r-- | modern/src/other/EventPage.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modern/src/other/EventPage.js b/modern/src/other/EventPage.js index 7f5d32ba..7bd5be30 100644 --- a/modern/src/other/EventPage.js +++ b/modern/src/other/EventPage.js @@ -11,6 +11,7 @@ import { useTranslation } from '../common/components/LocalizationProvider'; import MapView from '../map/core/MapView'; import MapCamera from '../map/MapCamera'; import MapPositions from '../map/MapPositions'; +import MapGeofence from '../map/MapGeofence'; const useStyles = makeStyles(() => ({ root: { @@ -70,6 +71,7 @@ const EventPage = () => { </AppBar> <div className={classes.mapContainer}> <MapView> + <MapGeofence /> {position && <MapPositions positions={[position]} />} </MapView> {position && <MapCamera latitude={position.latitude} longitude={position.longitude} />} |