我在 android 模拟器中遇到问题,我的 svg/icon 图层显示为黑色。这有时会影响高速公路/道路标记以及我的地图标记。该插件当前使用默认标记,但我也提供了自己的 png 文件,它们都遇到了这个问题。
有时放大会修复它(如下图中的标记之一所示)
我还没有在任何其他设备上对此进行测试,并且只使用了来自 android studio 的 android 模拟器。
一些额外的细节
我正在使用 Angular(和 TS)运行 nativescript,我已经注释掉了任何添加标记等的无关代码,并且在高速公路编号标记上仍然存在问题(下面的示例)。这是我的模板:
<StackLayout class="page">
<ContentView height="100%" width="100%">
<Mapbox
accessToken="token"
mapStyle="streets"
[latitude]=defaultLocation.latitude
[longitude]=defaultLocation.longitude
hideCompass="true"
zoomLevel="8"
showUserLocation="false"
disableZoom="false"
disableRotation="false"
disableScroll="false"
disableTilt="false"
(mapReady)="onMapReady($event)">
</Mapbox>
</ContentView>
</StackLayout>
似乎我可以使用以下代码调用 removeMarkers 和 addMarkers 来触发它:
updateUserMarker(loc) {
console.log("updating user location marker with loc: ", loc)
this.map.removeMarkers([this.userMarker.id]);
this.userMarker.lat = loc.latitude;
this.userMarker.lng = loc.longitude;
this.map.addMarkers([this.userMarker]);
}