Skip to content

Commit e878350

Browse files
committed
Documentation update
1 parent 96ac2bf commit e878350

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/_coverpage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Vue-mapbox <small>0.0.26</small>
1+
# Vue-mapbox <small>0.0.27</small>
22

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

docs/basemap.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default {
3131
```
3232

3333
### Interact with map properties as GlMap props
34-
You can control map parameters like zoom, bearing, pitch etc. by changing props.
34+
You can control map parameters like zoom, bearing, pitch etc. by changing props.
3535
If you set .sync modifier ([Vue docs](https://vuejs.org/v2/guide/components.html#sync-Modifier)) to prop, it will updates when you use operations that takes time to proceed. For example, if you use flyTo method, props zoom, center, bearing, pitch will be updated when animation ends.
3636
<!-- See example with flyTo:
3737
example with flyTo -->

docs/quickstart.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ Add Vue, MapboxGL and Vue-mapbox scripts on your page:
3838
<head>
3939
<!-- ... -->
4040
<!-- Mapbox GL CSS -->
41-
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.45.0/mapbox-gl.css' rel='stylesheet' />
41+
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.46.0/mapbox-gl.css' rel='stylesheet' />
4242
<!-- Mapbox GL JS -->
43-
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.45.0/mapbox-gl.js'></script>
43+
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.46.0/mapbox-gl.js'></script>
4444
<!-- VueJS -->
4545
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js "></script>
4646
<!-- Vue-mapbox -->
47-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/vue-mapbox@0.0.26/dist/vue-mapbox.min.js"></script>
47+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/vue-mapbox@latest/dist/vue-mapbox.min.js"></script>
4848
<!-- ... -->
4949
</head>
5050
</html>

0 commit comments

Comments
 (0)