vue设置百度地图自定义主题
<template><baidu-map class="map" :center="{lng: 116.404, lat: 39.915}" :zoom="15" :mapStyle="mapStyle"></baidu-map></template><script>export default {data ()...
·
<template>
<baidu-map class="map" :center="{lng: 116.404, lat: 39.915}" :zoom="15" :mapStyle="mapStyle">
</baidu-map>
</template>
<script>
export default {
data () {
return {
mapStyle: {
styleJson: [
{
"featureType": "all",
"elementType": "geometry",
"stylers": {
"hue": "#007fff",
"saturation": 89
}
},
{
"featureType": "water",
"elementType": "all",
"stylers": {
"color": "#ffffff"
}
}
]
}
}
}
}
</script>
<style lang="scss" scoped>
.map{
height:80%;
}
</style>
更多推荐
已为社区贡献7条内容
所有评论(0)