mus*_*ons 3 javascript webpack vue.js mapbox-gl-js vue-component
我想在Quasar Framework(Vue)单文件组件中实现Mapbox-gl-js Map,但是我没有让它工作.我在使用Vue的Googlemaps上找到了一些代码,在Mapbox上找到了一些带有React的东西,并尝试将它从中拉出来.使用下面的地图初始化参数,我可以在index.html(使用mapzen图块)中显示正常的地图,但是希望它在组件中.
我尝试按照[ https://laracasts.com/discuss/channels/vue/google-maps-and-vue-js](link url)进行调整,然后针对Mapbox进行调整: proj/src/components/maplayout.vue :
<template>
<quasar-layout>
<h3>Map</h3>
<div id='map'></div>
</quasar-layout>
</template>
<script>
import mapboxgl from '../app'
export default {
data () {
return {}
},
create () {
this.createMap()
},
methods: {
createMap: function () {
mapboxgl.accessToken = '{{yourmapboxaccestokenkey}}'
var simple = {
'version': 8,
'sources': {
'osm': {
'type': 'vector',
'tiles': ['https://vector.mapzen.com/osm/all/{z}/{x}/{y}.mvt?api_key=vector-tiles-{{yourmapzenapikey}}']
}
},
'layers': [{
'id': 'background',
'type': 'background',
'paint': {
'background-color': '#adddd2'
}
}, {
'id': 'majorroad',
'source': 'osm',
'source-layer': 'roads',
'type': 'line'
}, {
'id': 'buildings',
'type': 'fill',
'source': 'osm',
'source-layer': 'buildings'
}]
}
// initialize the map
this.map = new mapboxgl.Map({
container: 'map',
style: simple,
center: [-1.83, -78.183],
zoom: 5.5
})
}
}
}
</script>
<style>
</style>
Run Code Online (Sandbox Code Playgroud)
顺便说一句,对于带有webpack的mapbox,您需要某些加载器,请参阅:[ https://mikewilliamson.wordpress.com/2016/02/24/using-mapbox-gl-and-webpack-together/ ](link url)但是因为我之前让Mapbox使用Webpack(没有vue),我想我没那么好.实际上我没有在浏览器控制台中出现任何错误(但显然没有地图出现).
在app.js文件中,我不知道如何处理建议(也许没有必要,因为googlemaps需要回调,dunno关于mapbox/mapzen?!):
var App = window.App = new Vue ({
//code
})
Run Code Online (Sandbox Code Playgroud)
与Quasar一样,初始化完成如下:
Quasar.start(() => {
Router.start(Vue.extend({}), '#quasar-app')
})
Run Code Online (Sandbox Code Playgroud)
我真的没有...
欢迎任何有关如何使这项工作的建议!
我很接近.这实际上有效:
<template>
<quasar-layout>
<h3>Map</h3>
<div id='map'></div>
</quasar-layout>
</template>
<script>
import mapboxgl from 'mapbox-gl'
console.dir(mapboxgl)
export default {
data () {
return {}
},
ready () {
this.createMap()
},
methods: {
createMap: function () {
mapboxgl.accessToken = '{{yourmapboxaccestokenkey}}'
var simple = {
'version': 8,
'sources': {
'osm': {
'type': 'vector',
'tiles': ['https://vector.mapzen.com/osm/all/{z}/{x}/{y}.mvt?api_key=vector-tiles-{{yourmapzenapikey}}']
}
},
'layers': [{
'id': 'background',
'type': 'background',
'paint': {
'background-color': '#bbccd2'
}
},
{
'id': 'majorroad',
'source': 'osm',
'source-layer': 'roads',
'type': 'line'
},
{
'id': 'buildings',
'type': 'fill',
'source': 'osm',
'source-layer': 'buildings'
}]
}
// init the map
this.map = new mapboxgl.Map({
container: 'map',
style: simple,
minzoom: 1.3,
center: [-74.0073, 40.7124], // Manhattan
zoom: 16
})
this.map.addControl(new mapboxgl.Navigation())
}
}
}
</script>
<style>
</style>
Run Code Online (Sandbox Code Playgroud)
我没有改变我的Vue初始化.
| 归档时间: |
|
| 查看次数: |
4772 次 |
| 最近记录: |