🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ## index.js ``` //index.js Page({ /** * 页面的初始数据 */ data: { longitude: 114.333649, latitude: 30.537094, circles:[{ longitude: 114.333649, latitude: 30.537094, fillColor:"#8DE25066", radius: 30, }], markers:[{ iconPath:"/images/icon/map1.png", longitude: 114.333649, latitude: 30.537094, width:60, height:60, title: "极客营公司", id:0, label:{ content:"极客营", color:"#ee5e78", borderWidth:1, borderColor:"#ee5e78", borderRadius:5, padding:5, }, callout:{ content:"极客营公司", color:"#ee5e7b", borderWidth: 1, borderColor: "#ee5e78", borderRadius: 5, padding: 5, } }] , }, marker(){ } }) ``` ## index.wxml ``` <map id='map' markers="{{markers}}" longitude="{{longitude}}" latitude="{{latitude}}" scale="25" show-location="{{true}}" bindmarkertap="marker" circles="{{circles}}"></map> ```