getFeature
FunctiongetFeature(requestOptions: IGetFeatureOptions): Promise<IFeature>Get a feature by id.
import { getFeature } from '@esri/arcgis-rest-feature-service';
const url = "https://services.arcgis.com/V6ZHFr6zdgNZuVG0/arcgis/rest/services/Landscape_Trees/FeatureServer/0";
getFeature({
url,
id: 42
}).then(feature => {
console.log(feature.attributes.FID); // 42
});Parameters
| Parameter | Type | Notes |
|---|---|---|
request | IGetFeatureOptions | Options for the request |
Returns
Promise<IFeature>A Promise that will resolve with the feature or the response itself if rawResponse: true was passed in.