Limitations and License of Offline map Services

562
1
02-06-2017 03:46 AM
PradeepS
New Contributor
I am a developer, as a part of my current task, I am using your ESRI services. As per http://sampleserver6.arcgisonline.com/arcgis/rest/services/World_Street_Map/MapServerI am able to zoom up to 10 level (Level of Details) and download offline maps  
as per https://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer, I am able to zoom upto level 24 (Level of Details) and no export/ download tiles facility is available (through coding).
Since, I require downloading offline maps (through coding), the above said limitation is interrupting my work.
Hence, let me know whether any license is required.
0 Kudos
1 Reply
AnttiKajanus1
Occasional Contributor III

In general the service that you are using has to have exportTiles operation enabled. This is controlled through service management functionality either in ArcGIS Online or in Server. The default basemap service doesn't expose this functionality but there are service that support the operation.

For example World Street Map (for export). These (for export) services aren't meant to use as a basemap but they are used to provide exportTiles functionality for the normal basemaps which should be used when using the online based services. You can find other basemaps also from ArcGIS Online.

Another thing that you might be hitting is that there is a limit how many tiles the services will return at maximum which defaults to 100 000 tiles. If the area that you are requesting offline is too large the operation will fail.

If you cannot control the tiles returned, you might want to request the tiles in several parts so instead of requesting one huge area, you can split it into 4 or so section and request them separately.

Hope this helps.