0

我如何在 android 的某个角度放大 arcgis 地图?对不起,我对它很陌生..谢谢

这是我的代码。我也尝试在缩放到分辨率下实现它,但它不起作用。

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);


    // Retrieve the map and initial extent from XML layout
    mMapView = (MapView)findViewById(R.id.map);

    /* create a @ArcGISTiledMapServiceLayer */
    tileLayer = new ArcGISTiledMapServiceLayer(

            "http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer");

            // Add tiled layer to MapView
            mMapView.addLayer(tileLayer);


}
4

1 回答 1

0

你能在安卓模拟器或设备上看到你的平铺层吗?如果是,那么到目前为止你做得很好。只需在下面添加这些行mMapView.addLayer(tileLayer);即可实现zoomTo

Point zoomtopoint = getCenter();
mMapView.zoomTo(zoomtopoint, 1.0);
于 2013-11-13T10:18:18.643 回答