- URL:
- https://<dynamic-layer-url>/<featureId>
- Methods:
GET
- Child Resources:
- HTML Popup, Attachment Infos
- Required Capability:
- Data
- Version Introduced:
- 10.1
Description
The resource is supported from 10.1 onwards.
The feature resource represents a single feature in a dynamic layer in a map service. The feature has 1 child resource:
- Attachment Infos: Returns information about attachments associated with this feature. This resource is available only if the layer has advertised that it has attachments.
Request Parameters
Parameter | Details |
---|---|
| Description: The response format. The default response format is html. Values: html | json |
| Description: Dynamic layer/table source definition. Syntax:
Example:
|
| Description: If |
| Description: If |
Example Usage
Example 1: Feature resource for feature in a dynamic layer (feature with objectId 1 from mapLayer with id 3):
JSON Response Syntax
{ "feature" : <feature> }
JSON Response Example
{
"feature" :
{
"attributes" : {
"OBJECTID" : 7,
"BTID" : 1,
"NAME" : "NOTNAMED",
"LAT" : 28,
"LONG" : -94.8,
"WIND_KTS" : 80,
"PRESSURE" : 0,
"CAT" : "H1",
"BASIN" : "North Atlantic",
"TRACK_DATE" : -3740169600000,
"Shape_Length" : 0.600000000000023
}
,
"geometry" :
{
"paths" :
[
[
[-94.7999999999999, 28.0000000000001],
[-95.3999999999999, 28.0000000000001]
]
]
}
}
}