使用 ArcGIS SDK for Android 开发的 Android 应用程序中地图背后的网格是什么?
What is the grid behind the map in an Android app developed with the ArcGIS SDK for Android?
我正在使用 Android 的 ArcGIS Runtime SDK 创建一个简单的地图应用程序。我创建了一个 MapView
并向其添加了一个瓦片包 (.tpk) 作为其底图。下图是它在屏幕上的显示方式。谁能告诉我为什么我的地图上方和下方有一个网格以及如何删除它?我以为是 MapView
的网格所以我尝试调用 mapView.getGrid().setVisible(false)
,但网格仍然出现。
使用MapView.setMapBackground(int, int, float, float):
mapView.setMapBackground(Color.GRAY, Color.GRAY, 0, 0);
MapView.getGrid()
无关。如果您调用 mapView.getGrid().setType(GridType.MGRS)
并将网格的可见性保留为默认值 true
,您将在地图顶部看到一个军事网格参考系统 (MGRS) 网格。
我正在使用 Android 的 ArcGIS Runtime SDK 创建一个简单的地图应用程序。我创建了一个 MapView
并向其添加了一个瓦片包 (.tpk) 作为其底图。下图是它在屏幕上的显示方式。谁能告诉我为什么我的地图上方和下方有一个网格以及如何删除它?我以为是 MapView
的网格所以我尝试调用 mapView.getGrid().setVisible(false)
,但网格仍然出现。
使用MapView.setMapBackground(int, int, float, float):
mapView.setMapBackground(Color.GRAY, Color.GRAY, 0, 0);
MapView.getGrid()
无关。如果您调用 mapView.getGrid().setType(GridType.MGRS)
并将网格的可见性保留为默认值 true
,您将在地图顶部看到一个军事网格参考系统 (MGRS) 网格。