我正在尝试为地图中的用户位置标记添加自定义图标。但是该图标显示为黑白。
LocationComponentOptions customLocationComponentOptions = LocationComponentOptions.builder(this)
.foregroundDrawable(R.drawable.android)
.build();
// Get an instance of the component
LocationComponent locationComponent = mapboxMap.getLocationComponent();
// Activate with options
locationComponent.activateLocationComponent(
LocationComponentActivationOptions.builder(this, loadedMapStyle)
.locationComponentOptions(customLocationComponentOptions)
.build());
// Enable to make component visible
locationComponent.setLocationComponentEnabled(true);
// Set the component's camera mode
locationComponent.setCameraMode(CameraMode.TRACKING);
// Set the component's render mode
locationComponent.setRenderMode(RenderMode.COMPASS);
我尝试了this question中选择的答案,但是没有用。我尝试使用jpg而不是png,再次没有任何改变。
如果我在实际设备上运行它,则可以正常工作。所以我想问题出在模拟器上。
答案 0 :(得分:0)
正确,这仅是模拟器的问题。查看此解决方法-https://github.com/mapbox/mapbox-gl-native/issues/10829#issuecomment-441021598。