[騰訊地圖坐標拾取](https://lbs.qq.com/tool/getpoint/)

~~~
//map.wxml
<map id="map" markers="{{markers}}" longitude="{{longitude}}" latitude="{{latitude}}" scale="17" circles="{{circles}}" show-location="{{true}}" bindmarkertap="marker"></map>
~~~
~~~
//map.wxss
#map,page{
height:100%;
width:100%;
}
~~~
~~~
//map.js
Page({
/**
* 頁面的初始數據
*/
data: {
longitude: 114.504270,
latitude: 30.552610,
markers: [{
iconPath: "/images/icon/map.png",
id: 0,
latitude: 30.552610,
longitude: 114.504270,
title:"極客營",
width: 50,
height: 50,
label:{
content:"極客營科技有限公司",
color:"#EE5E7B",
borderWidth:1,
borderColor:"#EE5E78",
borderRadius:5,
padding:5,
},
callout:{
content:"極客營科技有限公司",
color:"#EE5E7B",
borderWidth:1,
borderColor:"#EE5E78",
borderRadius:5,
padding:5,
}
}],
polyline: [{
points: [{
//13棟
longitude: 114.504270,
latitude: 30.552610
}, {
//9棟
longitude: 114.503369,
latitude: 30.552579
}],
color:"#FF0000DD",
width: 2,
dottedLine: true
}],
circles:[{
longitude: 114.504270,
latitude: 30.552610,
fillColor:"#8DE25055",
radius:100
}],
},
})
~~~