时间:2021-05-18
微信小程序 地图map实例详解
wxml:
class="button" bindtap="getlocation" style="margin-top:30px" markers="{{markers}}">定位 longitude="{{longitude}}" latitude="{{latitude}}" markers="{{markers}}" covers="{{covers}}" style="width: 100%; height: 300px;margin-top:30px">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.latitudevar longitude = res.longitudevar speed = res.speedvar accuracy = res.accuracyconsole.log("latitude:" + latitude)console.log("longitude:" + longitude)console.log("speed:" + speed)console.log("accuracy:" + accuracy)wx.openLocation({latitude: latitude,longitude: longitude,scale: 28})}})}})效果图:
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
微信小程序地图(map)实例这里是小编对微信小程序地图(mapAPI)做的资料整理,获取当前的地址,应该如何实现的实例,大家可以看下。今天做到地图定位的模块.模
微信小程序开发MAP(地图)实例详解在创建MAP(地图)前,请各位小伙伴们认真的去了解微信小程序开发的说明。https://mp.weixin.qq.com/d
微信小程序地图map微信小程序map地图属性名类型默认值说明longitudeNumber中心经度latitudeNumber中心纬度scaleNumber1缩
本文实例讲述了微信小程序使用map组件实现获取定位城市天气或者指定城市天气数据功能。分享给大家供大家参考,具体如下:效果图实现原理采用高德地图微信小程序开发AP
微信小程序wxapp地图map:map属性名类型默认值说明longitudeNumber中心经度latitudeNumber中心纬度scaleNumber1缩放