File tree 1 file changed +5
-24
lines changed
1 file changed +5
-24
lines changed Original file line number Diff line number Diff line change @@ -9,43 +9,24 @@ First of all you need to install Mapbox GL and Vue-mapbox. [See vue-mapbox doc](
9
9
Install mabbox-gl-geocoder and vue-mapbox-geocoder:
10
10
11
11
``` bash
12
- npm i @mapbox/mapbox-gl-geocoder vue-mapbox-geocoder
13
- ```
14
-
15
- Then, on plugin registration you need to add plugins option:
16
-
17
- ``` javascript
18
- import Vue from ' vue'
19
- import VueMapbox from ' vue-mapbox'
20
- import Mapbox from ' mapbox-gl'
21
- import MapboxGeocoder from ' @mapbox/mapbox-gl-geocoder'
22
-
23
- Vue .use (VueMapbox, {
24
- mapboxgl: Mapbox,
25
- plugins: [{ mapboxGeocoder: MapboxGeocoder }] // Notice plugins property
26
- })
27
-
28
- new Vue ({
29
- el: ' #app' ,
30
- render : h => h (require (' ./App' ))
31
- })
12
+ npm i @mapbox/mapbox-gl-geocoder vue-mapbox vue-mapbox-geocoder
32
13
```
33
14
34
15
Now you can add geocoder control like other controls:
35
16
36
17
``` vue
37
18
<template>
38
- <mgl-map
19
+ <MglMap
39
20
:accessToken="accessToken"
40
- :mapStyle.sync ="mapStyle"
21
+ :mapStyle="mapStyle"
41
22
>
42
- <mgl-geocoder-control
23
+ <MglGeocoderControl
43
24
<-- props needed for GeolocateControl -->
44
25
:accessToken="accessToken"
45
26
:input.sync="defaultInput"
46
27
@results="handleSearch"
47
28
/>
48
- </mgl-map >
29
+ </MglMap >
49
30
</template>
50
31
51
32
<script>
You can’t perform that action at this time.
0 commit comments