- 地图模块的导航页不显示地址和名称?
在data数据的name和address不能传出来,下面的名字和地址显示不出Page({ data: { longitude: 113.14278, //地图界面中心的经度 latitude: 23.02882, //地图界面中心的纬度 markers: [ //标志点的位置 //位置0 { id: 0, iconPath: "/image/1.png", latitude: 21.859222, longitude: 111.975107, name:'地点名称1', address:'地址的详细说明', width: 28, height: 32, callout:{ content:'lcw' }, }, //位置1 { id: 1, iconPath: "/image/1.png", latitude: 23.051546, longitude: 112.472529, name:'地点名称1', address:'地址的详细说明', width: 28, height: 32, callout:{ content:'hxp' }, }, //位置2 { id: 2, iconPath: "/image/1.png", latitude: 22.26654, longitude: 113.5435, name:'地点名称1', address:'地址的详细说明', width: 28, height: 32, callout:{ content:'hrs' }, }, //位置3 { id: 3, iconPath: "/image/1.png", latitude: 21.37721, longitude: 110.25003, name:'地点名称1', address:'地址的详细说明', width: 28, height: 32, callout:{ content:'zzh' }, }, //位置4 { id: 4, iconPath: "/image/1.png", latitude: 22.547, longitude: 114.085947, name:'地点名称1', address:'地址的详细说明', width: 28, height: 32, callout:{ content:'xpl', }, }, ] }, onLoad(){ let that = this wx.getLocation({ type: 'wgs84', success(res) { console.log(res) that.setData({ lat:res.latitude, lon:res.longitude, }) } }) }, bindmarkertap(e){ console.log(e.markerId) this.data.markers.forEach((item)=>{ if (item.id == e.markerId){ wx.openLocation({ latitude: parseFloat(item.latitude), longitude: parseFloat(item.longitude), name: parseFloat(item.name), address: parseFloat(item.address) }) } }) }, onReady: function () { }, /** * 地图放大缩小事件触发 * @param {*} e */ bindregionchange(e) { console.log('=bindregiοnchange=', e) }, /** * 点击地图事件,有经纬度信息返回 * @param {*} e */ bindtapMap(e) { console.log('=bindtapMap=', e) } })
2021-05-21 - 小程序链接到公众号文章如何跳转?
wxss[图片] 如果放在首页的话可以正常打开,但是在首页点击无反应
2021-05-20 - 地图导航如何显示完整信息?
打开导航这一页下面可以有地址的吗 [图片]
2021-05-20 - 地图插件怎么全屏显示?
[图片]调整了wxss的高度和宽度都没有用,在wxml 里面可以调整高度和宽度但是不能全屏
2021-05-05