Arcgis:以某个角度缩放它

时间:2013-11-11 02:29:34

标签: android arcgis

我如何在某个角度为arcg的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);


}

1 个答案:

答案 0 :(得分:0)

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

Point zoomtopoint = getCenter();
mMapView.zoomTo(zoomtopoint, 1.0);