1. 程式人生 > >arcgis for ios 讓地圖載入後顯示特定區域

arcgis for ios 讓地圖載入後顯示特定區域

如何讓地圖一開始定位在某個區域,可以使用下面的程式碼:

    AGSSpatialReference *sr = [AGSSpatialReference spatialReferenceWithWKID:4490];
    AGSEnvelope *env = [AGSEnvelope envelopeWithXmin:119.85362348365
                                                ymin:26.398242072050003
                                                xmax:120.48276347535
                                                ymax:28.93150561495
                                    spatialReference:sr];
    [self.mapView zoomToEnvelope:env animated:NO];

確定wkid,xmin,ymin,xmax,ymax就可以定位在某個範圍。