Vector Tile Service

URL:
https://<root>/<serviceName>/VectorTileServer
Methods:
GET
Operations:
Export Tiles
Child Resources:
Vector Tile, Vector Tilemap, Vector Tile Font, Vector Tile Sprite, Vector Tile Resource Info, Vector Tile Style
Version Introduced:
10.4

Description

The vector tile service resource represents a vector service published with ArcGIS Server. The resource provides information about the service such as the tile information, spatial reference, and initial and full extents.

Request parameters

ParameterDetails

f

Description: The response format. The default response format is html .

Values: html | json

Example usage

Note: This is an example URL only and is not an active link to an existing service.

https://services.myserver.com/arcgis/rest/services/Hosted/World/VectorTileServer

JSON Response syntax

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
    "currentVersion": <currentVersion>,
    "name": "<mapName>",
    "capabilities": "TilesOnly",
    "type": "<indexedVector>",
    "tileMap": "tilemap",
    "defaultStyles": "resources/styles",
    "tiles": [
        "tile/{z}/{y}/{x}.pbf"
    ],
    "exportTilesAllowed": <true|false>,
    "maxExportTilesCount": <export tiles limit>,
    "initialExtent": <envelope>,
    "fullExtent": <envelope>,
    "minScale": <minimum map scale>,
    "maxScale": <maximum map scale>,
    "tileInfo": {
        "rows": <row size>,
        "cols": <column size>,
        "dpi": <dpi>,
        "format": "<pbf>",
        "origin": {<point>},
        "spatialReference": {<spatialReference>},
        "lods": [
           {"level" : <level1>, "resolution" : <resolution1>, "scale" : <scale1> },
           {"level" : <level2>, "resolution" : <resolution2>, "scale" : <scale2> }
        ]
    },
    "resourceInfo": {
        "styleVersion": <styleVersion>,
        "tileCompression": "<gzip>",
        "cacheInfo": {
            "storageInfo": {
                "packetSize": <packetSize>,
                "storageFormat": "<compactV2>"
            }
        }
    }
}

JSON Response example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
    "currentVersion": 10.4,
    "name": "Map",
    "capabilities": "TilesOnly",
    "type": "indexedVector",
    "tileMap": "tilemap",
    "defaultStyles": "resources/styles",
    "tiles": [
        "tile/{z}/{y}/{x}.pbf"
    ],
    "exportTilesAllowed": true,
    "maxExportTilesCount": 10000,
    "initialExtent": {
        "xmin": -20037507.842788246,
        "ymin": -20037508.342787,
        "xmax": 20037507.842788246,
        "ymax": 20037508.342787,
        "spatialReference": {
            "wkid": 102100,
            "latestWkid": 3857
        }
    },
    "fullExtent": {
        "xmin": -20037507.842788246,
        "ymin": -20037508.342787,
        "xmax": 20037507.842788246,
        "ymax": 20037508.342787,
        "spatialReference": {
            "wkid": 102100,
            "latestWkid": 3857
        }
    },
    "minScale": 295828763.7957775,
    "maxScale": 564.248588,
    "tileInfo": {
        "rows": 512,
        "cols": 512,
        "dpi": 96,
        "format": "pbf",
        "origin": {
            "x": -20037508.342787,
            "y": 20037508.342787
        },
        "spatialReference": {
            "wkid": 102100,
            "latestWkid": 3857
        },
        "lods": [
            {
                "level": 0,
                "resolution": 78271.516964,
                "scale": 295828763.7957775
            },
            {
                "level": 1,
                "resolution": 39135.75848199995,
                "scale": 147914381.8978885
            },
            {
                "level": 2,
                "resolution": 19567.87924100005,
                "scale": 73957190.9489445
            },
            {
                "level": 3,
                "resolution": 9783.93962049995,
                "scale": 36978595.474472
            },
            {
                "level": 4,
                "resolution": 4891.96981024998,
                "scale": 18489297.737236
            },
            {
                "level": 5,
                "resolution": 2445.98490512499,
                "scale": 9244648.868618
            },
            {
                "level": 6,
                "resolution": 1222.992452562495,
                "scale": 4622324.434309
            },
            {
                "level": 7,
                "resolution": 611.496226281245,
                "scale": 2311162.2171545
            },
            {
                "level": 8,
                "resolution": 305.74811314069,
                "scale": 1155581.1085775
            },
            {
                "level": 9,
                "resolution": 152.874056570279,
                "scale": 577790.5542885
            },
            {
                "level": 10,
                "resolution": 76.4370282852055,
                "scale": 288895.2771445
            },
            {
                "level": 11,
                "resolution": 38.2185141425366,
                "scale": 144447.638572
            },
            {
                "level": 12,
                "resolution": 19.1092570712683,
                "scale": 72223.819286
            },
            {
                "level": 13,
                "resolution": 9.55462853563415,
                "scale": 36111.909643
            },
            {
                "level": 14,
                "resolution": 4.777314267817075,
                "scale": 18055.9548215
            },
            {
                "level": 15,
                "resolution": 2.388657133974685,
                "scale": 9027.977411
            },
            {
                "level": 16,
                "resolution": 1.19432856698734,
                "scale": 4513.9887055
            },
            {
                "level": 17,
                "resolution": 0.597164283427525,
                "scale": 2256.9943525
            },
            {
                "level": 18,
                "resolution": 0.2985821417799085,
                "scale": 1128.4971765
            },
            {
                "level": 19,
                "resolution": 0.1492910708238085,
                "scale": 564.248588
            }
        ]
    },
    "resourceInfo": {
        "styleVersion": 8,
        "tileCompression": "gzip",
        "cacheInfo": {
            "storageInfo": {
                "packetSize": 128,
                "storageFormat": "compactV2"
            }
        }
    }
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.

You can no longer sign into this site. Go to your ArcGIS portal or the ArcGIS Location Platform dashboard to perform management tasks.

Your ArcGIS portal

Create, manage, and access API keys and OAuth 2.0 developer credentials, hosted layers, and data services.

Your ArcGIS Location Platform dashboard

Manage billing, monitor service usage, and access additional resources.

Learn more about these changes in the What's new in Esri Developers June 2024 blog post.

Close