ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[腾讯坐标拾取器](https://lbs.qq.com/tool/getpoint/) ongitude:经度 latitude:纬度 ``` <map id="map" markers="{{markers}}" longitude="{{longitude}}" latitude="{{latitude}}" scale="25" circles="{{circles}}" show-location="{{true}}" bindmarkertap="marker"></map> ``` circles:覆盖的圆形范围 label:显示的文字 callout: 点击弹出的文字 ``` 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(){ } }) ```