自定义标记图标没有显示在android上



我有这个代码:

this.service.getListe(data).forEach((data: any) => {
const marker: Marker = this.map.addMarkerSync(data);
marker.on(GoogleMapsEvent.MARKER_CLICK).subscribe((params) => {
this.click(params);
});
});

现在getListe()看起来像:

getListe(merchants: any) {
const Liste: BaseArrayClass<any> = new BaseArrayClass<any>();
merchants.map(item => {
Liste.push({
title: item.name,
animation: 'DROP',
position: {
lat: item.lat,
lng: item.long
},
icon: 'http://icons.iconarchive.com/icons/iconarchive/red-orb-alphabet/24/Number-1-icon.png',
disableAutoPan: true
});
});
return Markers;
}

我试过并喜欢这样:

icon: {
url: 'http://icons.iconarchive.com/icons/iconarchive/red-orb-alphabet/24/Number-1-icon.png'
}

但同样的行为,问题是在模拟器和真实设备上,图标没有改变。在浏览器模式下,我在BaseArrayClass中为标记指定了正确的图标,但在模拟器上,我有默认的图标。你知道吗?

尝试使用https协议查找一些图标。

谷歌可能不允许不安全的URL。

相关内容

  • 没有找到相关文章

最新更新