getFeature

getFeature

Function
getFeature(requestOptionsIGetFeatureOptions): Promise<IFeature>

Get a feature by id.

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
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
ParameterTypeNotes
requestOptions
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.

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