diff --git a/webapp/pages/map.vue b/webapp/pages/map.vue
index fe9acce44..47acaa21d 100644
--- a/webapp/pages/map.vue
+++ b/webapp/pages/map.vue
@@ -21,6 +21,7 @@
:max-pitch="60"
@load="onMapLoad"
>
+
{{ style.title }}
+
+
+
+
diff --git a/webapp/plugins/v-mapbox.js b/webapp/plugins/v-mapbox.js
index 657b7b6d6..ebbfef3db 100644
--- a/webapp/plugins/v-mapbox.js
+++ b/webapp/plugins/v-mapbox.js
@@ -6,14 +6,20 @@ import {
MglMap,
MglMarker,
MglPopup,
+ MglAttributionControl,
MglScaleControl,
+ MglNavigationControl,
+ MglGeolocateControl,
} from 'v-mapbox'
// Map
Vue.component('MglMap', MglMap)
// Controls
+Vue.component('MglAttributionControl', MglAttributionControl)
Vue.component('MglScaleControl', MglScaleControl)
+Vue.component('MglNavigationControl', MglNavigationControl)
+Vue.component('MglGeolocateControl', MglGeolocateControl)
// Layers
Vue.component('MglGeojsonLayer', MglGeojsonLayer)