使用map组件,在地图上用markers标点,markers的iconPath在ios中为啥不显示?
使用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);