Original User: visualharborThese are the two services:#define kRoadService [NSURL URLWithString:@"http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D�?�"]
#define kSatelliteService [NSURL URLWithString:@"http://services.arcgisonline.com/ArcGIS/rest/services/ESRI_Imagery_World_2D�?�"]
And then I create Map Service layers for them like so:self.roadLayer=[AGSTiledMapServiceLayer tiledMapServiceLayerWithURL:kRoadService];
self.roadLayer.delegate=self;
self.satLayer=[AGSTiledMapServiceLayer tiledMapServiceLayerWithURL:kSatelliteService];
self.satLayer.delegate=self;
[self.mapView addMapLayer:self.satLayer withName:@"SatelliteTile"];
I add and remove them from the Mapview when the buttons are toggled.We are using layers, and not a webmap.