码迷,mamicode.com
首页 > 其他好文 > 详细

vue 高德地图使用 vue-amap

时间:2018-05-16 20:43:02      阅读:1536      评论:0      收藏:0      [点我收藏+]

标签:for   page   port   def   rip   使用   1.2   com   code   

 此插件文档及使用还不错

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

标签:for   page   port   def   rip   使用   1.2   com   code   

原文地址:https://www.cnblogs.com/xiangsj/p/9047755.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!