https://static-map-tiles-api.arcgis.com/arcgis/rest/services/static-basemap-tiles-service/v1/arcgis/navigation/static
Returns metadata for ArcGIS Navigation static basemap tiles.
Query parameters
Name | Type | Required | Default value | Description |
---|---|---|---|---|
f | string | json | The requested response format - either | |
token | string |
| The authentication token used to access the static basemap tiles service. |
f
The requested response format - either json
or pjson
(pretty json).
- Default
- json
Enumerated values
token
The authentication token used to access the static basemap tiles service.
The token
parameter can be:
- an API key
- a short-lived token
API keys and short-lived tokens must be created from an ArcGIS Location
Platform account, with the premium:user:staticbasemaptiles
privilege.
See ArcGIS security documentation for more information on authentication.
This parameter is required unless you supply an access token in the request header with one of the following keys using the "Bearer" scheme:
Authorization: Bearer <YOUR_TOKEN>
X-Esri-Authorization: Bearer <YOUR_TOKEN>
Response status
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Metadata response. | MetaData |
400 | Bad Request | Invalid query parameters. | Error |
401 | Unauthorized | Authentication Error. The API key or token is missing, invalid or expired. | Error |
403 | Forbidden | The required parameter 'token' is valid, but does not have permission to access the service. | Error |
404 | Not Found | The requested resource was not found. | Error |
5XX | **Server Error** | An error occurred on the server. | Error |
Examples
Request
# You can also use wget
curl -X GET https://static-map-tiles-api.arcgis.com/arcgis/rest/services/static-basemap-tiles-service/v1/arcgis/navigation/static \
-H 'Authorization: Bearer <YOUR_TOKEN>'
Response
{
"serviceDescription": "string",
"mapName": "ArcGIS Streets",
"description": "This layer provides a detailed basemap for the world symbolized with a classic Esri street map style.",
"copyrightText": "Sources: Esri, TomTom, Garmin, FAO, NOAA, USGS, © OpenStreetMap contributors, and the GIS User Community",
"supportsDynamicLayers": false,
"spatialReference": {
"wkid": 102100,
"latestWkid": 3857
},
"singleFusedMapCache": true,
"tileInfo": {
"rows": 512,
"cols": 512,
"dpi": 96,
"compressionQuality": 75,
"format": "PNG",
"lods": [
{
"level": 6,
"resolution": 1222.992452562495,
"scale": 4622324.434309
}
],
"origin": {
"m": 0,
"spatialReference": {
"wkid": 102100,
"latestWkid": 3857
},
"x": 0,
"y": 0,
"z": 0
},
"spatialReference": {
"wkid": 102100,
"latestWkid": 3857
}
},
"initialExtent": {
"spatialReference": {
"wkid": 102100,
"latestWkid": 3857
},
"xmax": 20037507.22959434,
"xmin": -20037507.22959434,
"ymax": 19971868.880408563,
"ymin": -19971868.880408563
},
"fullExtent": {
"spatialReference": {
"wkid": 102100,
"latestWkid": 3857
},
"xmax": 20037507.22959434,
"xmin": -20037507.22959434,
"ymax": 19971868.880408563,
"ymin": -19971868.880408563
},
"minScale": 0,
"maxScale": 0,
"units": "esriMeters",
"supportedImageFormatTypes": "PNG",
"documentInfo": {
"Title": "ArcGIS Streets",
"Author": "Esri",
"Comments": "string",
"Subject": "imagery, satellite, aerial",
"Category": "imageryBaseMapsEarthCover (Imagery, basemaps, and land cover)",
"AntialiasingMode": "None",
"TextAntialiasingMode": "None",
"Keywords": "World,Global,United States"
},
"capabilities": "Map",
"exportTilesAllowed": false,
"maxRecordCount": 100,
"maxImageHeight": 512,
"maxImageWidth": 512
}