vue 高德地图使用 vue-amap
Posted James的博客园
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 高德地图使用 vue-amap相关的知识,希望对你有一定的参考价值。
此插件文档及使用还不错
https://elemefe.github.io/vue-amap/
<template> <div class="amap-page-container" style="height:300px;"> <el-amap vid="amapDemo" :zoom="zoom" :center="center" class="amap-demo"> <el-amap-circle v-for="(circle,index) in circles" :key="index" :center="circle.center" :radius="circle.radius" :fill-opacity="circle.fillOpacity" :events="circle.events"></el-amap-circle> </el-amap> </div> </template> <style> .amap-page-container { height: 200px; } </style> <script> export default { data () { return { zoom: 15, center: [121.5273285, 31.21515044], circles: [ { center: [121.5273285, 31.21515044], radius: 200, fillOpacity: 0.5, events: { click: () => { alert(\'click\'); } } } ] } } }; </script>
以上是关于vue 高德地图使用 vue-amap的主要内容,如果未能解决你的问题,请参考以下文章