腾讯地图坐标拾取
**index.wxml**
```
<map id="map" markers="{{markers}}" longitude="{{longitude}}" latitude="{{latitude}}" scale="25" circles="{{circles}}" show-location="{{true}}" bindmarkertap="marker"></map>
```
**index.js**
```
Page({
data: {
latitude:30.537094,
longitude:114.333649,
circles:[{
latitude: 30.537094,
longitude: 114.333649,
fillColor:"#8DE25055",
radius:30
}],
markers: [{
iconPath: "/images/icon/map.png",
latitude: 30.537094,
longitude: 114.333649,
width: 30,
height: 30,
title:"湖北大学知行学院",
id:0,
label:{
content:"湖北大学知行学院",
color:"#EE5E7B",
borderWidth:1,
borderColor:"#EE5E78",
borderRadius:5,
padding:5,
},
callout:{
content:"湖北大学知行学院",
color:"#EE5E7B",
borderWidth:1,
borderColor:"#EE5E78",
borderRadius:5,
padding:5,
}
}],
},
marker(){
}
})
```