微信小程序地图(二) 跑步路线展示
生活随笔
收集整理的這篇文章主要介紹了
微信小程序地图(二) 跑步路线展示
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
剛開始研究小程序的地圖:簡單的跑步路線展示
wxml :
<map id="map" longitude="{{longitude}}" latitude="{{latitude}}" scale="18" polyline="{{polyline}}"show-location style="width: 100%; height: 300px;"></map> <button bindtap="start">開始</button> <button bindtap="end">結束</button>js:
var point = []; var that2;function drawline() {that2.setData({polyline : [{points : point,color : '#99FF00',width : 4,dottedLine : false}]}); }//獲取經緯度 function getlocation() {var lat, lng;wx.getLocation({type : 'gcj02',success : function (res) {lat = res.latitude;lng = res.longitude;point.push({latitude: lat, longitude : lng});console.log(point);}}); }Page({data : {polyline : [],},onLoad : function () {that2 = this;wx.getLocation({type: 'gcj02',success : function (res) {that2.setData({longitude : res.longitude,latitude : res.latitude,});}});},start : function () {this.timer = setInterval(repeat, 1000);function repeat() {console.log('re');getlocation();drawline();}},end : function () {console.log('end');clearInterval(this.timer);} });總結
以上是生活随笔為你收集整理的微信小程序地图(二) 跑步路线展示的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ubuntu编辑只读文件
- 下一篇: Zotero中文文献管理