Skip to content

Commit 9fdcca2

Browse files
committed
Fix conflicts
2 parents 80fcc9f + e0b50d2 commit 9fdcca2

File tree

9 files changed

+135
-7
lines changed

9 files changed

+135
-7
lines changed

dist/vue-mapbox.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-mapbox.min.js.gz

20 Bytes
Binary file not shown.

dist/vue-mapbox.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-mapbox.umd.min.js.gz

21 Bytes
Binary file not shown.

docs/_coverpage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Vue-mapbox <small>0.0.32</small>
1+
# Vue-mapbox <small>0.0.33</small>
22

33
> Combine powers of [Vue.js](https://vuejs.org/) and [Mapbox Gl JS](https://mapbox.com/mapbox-gl-js)
44

package-lock.json

Lines changed: 120 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-mapbox",
3-
"version": "0.0.32",
3+
"version": "0.0.33",
44
"description": "Vuejs 2 components for interacting with mapbox-gj-js ",
55
"main": "dist/vue-mapbox.umd.min.js",
66
"repository": {
@@ -73,6 +73,7 @@
7373
"eslint-plugin-node": "^5.2.1",
7474
"eslint-plugin-promise": "^3.6.0",
7575
"eslint-plugin-standard": "^3.0.1",
76+
"eslint-plugin-vue": "^4.5.0",
7677
"eventsource-polyfill": "^0.9.6",
7778
"friendly-errors-webpack-plugin": "^1.1.3",
7879
"html-webpack-plugin": "^2.28.0",

src/components/GlMap.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export default {
114114
115115
this.$_bindEvents(eventsToListen)
116116
this.$_bindPropsUpdateEvents()
117-
this.initial = true
117+
this.initial = false
118118
this.mapLoaded = true
119119
})
120120
},

src/components/UI/GeolocateControl.vue

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,17 @@
2222
}
2323
}
2424
},
25-
watchPosition: {
25+
trackUserLocation: {
2626
type: Boolean,
2727
default: false
28+
},
29+
showUserLocation: {
30+
type: Boolean,
31+
default: true
32+
},
33+
fitBoundsOptions: {
34+
type: Object,
35+
default: () => ({ maxZoom: 15 })
2836
}
2937
},
3038

0 commit comments

Comments
 (0)