index.js代码如图所示
Page({
data: {
longitude: 0,
latitude: 0,
controls: [],
},
onLoad: function() {
var that = this;//获取当前页面的属性
wx.getLocation({
success: function(res) {
var longitude = res.longitude;
var latitude = res.latitude;
that.setData({
longitude: longitude,
latitude: latitude
})
},
})
that.setData({
controls: [
{
id: 1,
iconPath: "/index/car.png",
position: {
width: 100,
height: 27,
left: 100,
top: 100
},
},
]
})
}
})
index.wxml代码
<map
longitude="{{longitude}}"
latitude="{{latitude}}"
controls="{{controls}}"
style='height:100%; width:100%'
>
</map>
显示效果还有car样式
这是牛客的一个项目开发的课程 我跟着在做 图片放文件夹还是里面都试过(不过应该不是放的位置的问题)
看着setdata里也没有问题 但是不知道为什么就是不显示这个图片
求助一下大神们 !!!