Skip to content

Commit

Permalink
Fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
soal committed Jul 5, 2018
2 parents 80fcc9f + e0b50d2 commit 9fdcca2
Show file tree
Hide file tree
Showing 9 changed files with 135 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/vue-mapbox.min.js

Large diffs are not rendered by default.

Binary file modified dist/vue-mapbox.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/vue-mapbox.umd.min.js

Large diffs are not rendered by default.

Binary file modified dist/vue-mapbox.umd.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/_coverpage.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Vue-mapbox <small>0.0.32</small>
# Vue-mapbox <small>0.0.33</small>

> Combine powers of [Vue.js](https://vuejs.org/) and [Mapbox Gl JS](https://mapbox.com/mapbox-gl-js)
Expand Down
121 changes: 120 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-mapbox",
"version": "0.0.32",
"version": "0.0.33",
"description": "Vuejs 2 components for interacting with mapbox-gj-js ",
"main": "dist/vue-mapbox.umd.min.js",
"repository": {
Expand Down Expand Up @@ -73,6 +73,7 @@
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.5.0",
"eventsource-polyfill": "^0.9.6",
"friendly-errors-webpack-plugin": "^1.1.3",
"html-webpack-plugin": "^2.28.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/GlMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export default {
this.$_bindEvents(eventsToListen)
this.$_bindPropsUpdateEvents()
this.initial = true
this.initial = false
this.mapLoaded = true
})
},
Expand Down
10 changes: 9 additions & 1 deletion src/components/UI/GeolocateControl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,17 @@
}
}
},
watchPosition: {
trackUserLocation: {
type: Boolean,
default: false
},
showUserLocation: {
type: Boolean,
default: true
},
fitBoundsOptions: {
type: Object,
default: () => ({ maxZoom: 15 })
}
},
Expand Down

0 comments on commit 9fdcca2

Please sign in to comment.