如何从 Android 上的 Mapbox mapView 移除白色网格?
How to remove white grid from Mapbox mapView on Android?
有没有办法 remove/disable 白色网格覆盖我的 Android Mapbox mapView?我无法在 Mapbox API 文档中找到答案。感谢您的帮助。
XML 的视图:
<com.mapbox.mapboxsdk.views.MapView
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="400dp"
mapbox:mapid="@string/map_id"
mapbox:accessToken="@string/mapbox_token"/>
mapView.getMapOverlay().setDrawLoadingTile(false);
应该有帮助。参见 TilesOverlay class。
有没有办法 remove/disable 白色网格覆盖我的 Android Mapbox mapView?我无法在 Mapbox API 文档中找到答案。感谢您的帮助。
XML 的视图:
<com.mapbox.mapboxsdk.views.MapView
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="400dp"
mapbox:mapid="@string/map_id"
mapbox:accessToken="@string/mapbox_token"/>
mapView.getMapOverlay().setDrawLoadingTile(false);
应该有帮助。参见 TilesOverlay class。