File tree Expand file tree Collapse file tree 3 files changed +46
-0
lines changed Expand file tree Collapse file tree 3 files changed +46
-0
lines changed Original file line number Diff line number Diff line change @@ -137,6 +137,18 @@ Links to a [TileJSON](https://github.com/mapbox/tilejson-spec) document.
137137| href | string | ** REQUIRED** . Link to the valid TileJSON document. |
138138| type | string | Recommended to be set to ` application/json ` . |
139139
140+ ### FeatureServer
141+
142+ Links to a [ ArcGIS FeatureServer] ( https://developers.arcgis.com/rest/services-reference/enterprise/query-feature-service-layer/ ) service.
143+
144+ | Field Name | Type | Description |
145+ | --------------- | -------------------- | ----------- |
146+ | rel | string | ** REQUIRED** . Must be set to ` featureserver ` . |
147+ | href | string | ** REQUIRED** . Link to a FeatureServer service. Usually has the following form ` https://<root>/<serviceName>/FeatureServer ` |
148+ | type | string | Recommended to be set to ` application/json ` |
149+ | featureserver: layers | Map<string, string> | Layers |
150+
151+
140152### General
141153
142154The following field applies to multiple types of web mapping services:
Original file line number Diff line number Diff line change 9595 "pmtiles:layers" : [
9696 " streets"
9797 ]
98+ },
99+ {
100+ "href" : " https://service.arcgis.com/arcgis/rest/datast/FeatureServer" ,
101+ "rel" : " featureserver" ,
102+ "title" : " ArcGIS FeatureServer" ,
103+ "type" : " application/json" ,
104+ "featureserver:layers" : {
105+ "0" : " streets"
106+ }
98107 }
99108 ]
100109}
Original file line number Diff line number Diff line change 165165 }
166166 }
167167 }
168+ },
169+ {
170+ "$comment" : " Defines FeatureServer links" ,
171+ "if" : {
172+ "properties" : {
173+ "rel" : {
174+ "const" : " featureserver"
175+ }
176+ }
177+ },
178+ "then" : {
179+ "properties" : {
180+ "pmtiles:layers" : {
181+ "type" : " object" ,
182+ "items" : {
183+ "type" : " string" ,
184+ "minItems" : 1 ,
185+ "items" : {
186+ "type" : " string" ,
187+ "minLength" : 1
188+ }
189+ }
190+ }
191+ }
192+ }
168193 }
169194 ]
170195 }
You can’t perform that action at this time.
0 commit comments