Select to view content in your preferred language

Very Old Maps showing in custom iPad App

2645
5
08-14-2013 08:41 AM
by Anonymous User
Not applicable
Original User: visualharbor

Hello,

I am an Account Manager on an iPad app we are creating, and I am here seeking answers for my developers.

The app we are creating relies on the maps to be very accurate. Within our app, using the latest ArcGIS iOS SDK, we are running into an issue with very old map data showing. We need help troubleshooting how to get the maps to be more current. Is it a problem with map layers? Caching?

When we were showing the app prototype to the client, he noticed that this one port in particular is completely outdated. He said the map was from 2008 -- because work didn't begin on building the terminal/infrastructure until 2009.

In our app, the area in question is just dirt. However, when you look up the same area using the ArcGIS Web Map, it is completely different -- showing cranes at the edge of the port/water, a huge parking lot full of cars, and buildings.

The area in question:
APM Terminals
1000 Apm Terminals Blvd, Portsmouth, VA
https://maps.google.com/maps?q=APM+Terminals,+1000+Apm+Terminals+Blvd,+Portsmouth,+VA&hl=en&ll=36.87...

Please review the attached screenshots, and please help me resolve this with my developers. Thank you!

App View using ArcGIS SDK
[ATTACH=CONFIG]26702[/ATTACH]

ArcGIS Web Map (http://www.arcgis.com/home/webmap/viewer.html)
[ATTACH=CONFIG]26703[/ATTACH]
0 Kudos
5 Replies
by Anonymous User
Not applicable
Original User: technobrat

In your ipad app, are you using the same ArcGIS webmap ?
Also, can you share that webmap with me so that we can investigate.

Or are you mashing up individual layers in your app instead of using the webmap?
If you're using layers, can you make sure that they reference the same map mapservices that your webmap is using.
0 Kudos
PaulLohr
Frequent Contributor
You may need to host your own imagery on ArcGIS Server. Or find a company who will do that for you.

It may help if you post the address of the service where that old imagery is coming from.
0 Kudos
by Anonymous User
Not applicable
Original User: visualharbor

These 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.
0 Kudos
CarrieSmaha
New Contributor
Does anyone know why the maps offered here (http://services.arcgisonline.com/ArcGIS/rest/services/ESRI_Imagery_World_2D/MapServer) are so outdated??

The satellite map here (http://www.arcgis.com/home/webmap/viewer.html) is much more current.
0 Kudos
by Anonymous User
Not applicable
Original User: chaudhryz

Does anyone know why the maps offered here (http://services.arcgisonline.com/ArcGIS/rest/services/ESRI_Imagery_World_2D/MapServer) are so outdated??

The satellite map here (http://www.arcgis.com/home/webmap/viewer.html) is much more current.


Because the maps at ArcGIS.com are accessing a different service that has high resolution imagery than the one you mentioned. here is the URL

http://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer

Thanks

Zahid
0 Kudos