使用map组件,在地图上用markers标点,markers的iconPath在ios中为啥不显示,安卓中显示正常
res.data.forEach((item, idx)=>{
marker = {
id: item.id, // 标记点 id number
//clusterId:false, // 聚合簇的 id Number 否
joinCluster: false, // 是否参与点聚合 Boolean 否
latitude: item.lat,
longitude: item.lng,
title: item.name, // 标注点名 string 否 点击时显示,callout存在时将被忽略
// zIndex: 0, // 显示层级 number 否
iconPath: imgJian,
alpha:1,
width: 28, // 标注图标宽度 number/string 否 默认为图片实际宽度
height: 42, // 标注图标高度 number/string 否 默认为图片实际高度
// callout: null, // 标记点上方的气泡窗口 Object 否 支持的属性见下表,可识别换行符。
anchor: {
x: 0.5,
y: 0.5
}
};
markers.push(marker);
你好请问这个问题解决了没 我也遇到同样的问题了
https://developers.weixin.qq.com/s/pGI8PBm87UyC
苹果手机应该都不显示
测试机:iPhoneX
微信版本8.0.20
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)