码迷,mamicode.com
首页 > 其他好文 > 详细

小程序地图map

时间:2017-06-02 11:35:39      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:git   logs   map   marker   pat   应用   name   img   image   

wxml:

<button class="button" bindtap="getlocation" style="margin-top:30px" markers="{{markers}}">定位</button>
<map longitude="{{longitude}}" latitude="{{latitude}}" markers="{{markers}}" covers="{{covers}}" style="width: 100%; height: 300px;margin-top:30px"></map>

js:

//获取应用实例
var app = getApp()
Page({
data: {
latitude: 0,//纬度
longitude: 0,//经度
speed: 0,//速度
accuracy: 16,//位置精准度
markers: [],
covers: [],
},
onLoad: function () {
},
getlocation: function () {
var markers = [{
latitude: 28.211400,
longitude: 112.914250,
name: ‘喜地大厦‘,
desc: ‘我的位置‘
}]
var covers = [{
latitude: 28.211400,
longitude: 112.914250,
iconPath: ‘/image/ic_position.png‘,
rotate: 0
}]
this.setData({
longitude: 112.914250,
latitude: 28.211400,
markers: markers,
covers: covers,
})
wx.getLocation({
type: ‘gcj02‘,
success: function (res) {
var latitude = res.latitude
var longitude = res.longitude
var speed = res.speed
var accuracy = res.accuracy
console.log("latitude:" + latitude)
console.log("longitude:" + longitude)
console.log("speed:" + speed)
console.log("accuracy:" + accuracy)
wx.openLocation({
latitude: latitude,
longitude: longitude,
scale: 28
})
}
})
}
})

 

效果图: 技术分享技术分享

 

小程序地图map

标签:git   logs   map   marker   pat   应用   name   img   image   

原文地址:http://www.cnblogs.com/zpflxd1611/p/6932084.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!