[騰訊地圖坐標拾取](https://lbs.qq.com/tool/getpoint/)
```
// pages/map/map.js
Page({
/**
* 頁面的初始數據
*/
data: {
latitude:30.552610,
longitude:114.504270,
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,
},
}],
polyline: [{ //路線
points: [{
//起始地經緯
longitude: 114.504270,
latitude: 30.552610,
}, {
//終點經緯
longitude: 114.503369,
latitude: 30.552597,
}],
color:"#FF0000DD",
width: 2,
dottedLine: true
}],
circles:[{
//地圖圓圈樣式
latitude: 30.552597,
longitude: 114.503369,
fillColor:"#8DE25055",
radius:30
}],
}
})
```
```
// pages/map/map.wxml
<map id="map" longitude="{{longitude}}" latitude="{{latitude}}" circles="{{circles}}" markers="{{markers}}" scale="18"
polyline="{{polyline}}"
></map>
```