-
@esri/arcgis-rest-auth -
@esri/arcgis-rest-common-types - IGroup
- IGroupAdd
- GroupMembership
- IArc
- IBezierCurve
- ICircularArc
- IEnvelope
- IExtent
- IFeature
- IFeatureSet
- IField
- IFont
- IGeometry
- IHasZM
- IMarkerSymbol
- IMultipoint
- IOldCircularArc
- IPagingParams
- IPictureFillSymbol
- IPictureMarkerSymbol
- IPictureSourced
- IPoint
- IPolygon
- IPolygonWithCurves
- IPolyline
- IPolylineWithCurves
- ISimpleFillSymbol
- ISimpleLineSymbol
- ISimpleMarkerSymbol
- ISpatialReference
- ISymbol
- ITextSymbol
- IUser
- Color
- ElipticArc
- JsonCurve
- Position
- Position2D
- SimpleFillSymbolStyle
- SimpleLineSymbolStyle
- SimpleMarkerSymbolStyle
- SpatialRelationship
- SymbolType
- esriFieldType
- esriGeometryType
- esriUnits
- IItem
- IItemAdd
- IItemUpdate
- IApplicationProperties
- IArcGisStreamLayer
- IBaseMap
- IBingLayer
- IBookmark
- IChildLayer
- ICsvLayer
- IDefinitionEditor
- IDefinitionInput
- IDefinitionParameter
- IDrawingInfo
- IEditableLayers
- IEditingProperties
- IEnableable
- IExclusionArea
- IFeatureLayer
- IFieldFormat
- IFieldInfo
- IGeoRssLayer
- IImageServiceLayer
- IImageVectorLayer
- IKmlLayer
- ILayer
- ILayerDefinition
- ILocationTracking
- ILocationTrackingInfo
- ILod
- IMapLocation
- IMapRangeInfo
- IMapServiceLayer
- IMediaInfo
- IMediaInfoValue
- IOfflineInfo
- IOpenStreetMapLayer
- IOrderByField
- IPopupElement
- IPopupExpressionInfo
- IPopupInfo
- IPresentation
- IRange
- IReadOnlyLayers
- IRelatedRecordsInfo
- ISearch
- ISlide
- ISupportsTime
- ITable
- ITemplate
- IThematicGroup
- ITileInfo
- ITiledImageServiceLayer
- ITiledMapServiceLayer
- ITimeSlider
- ITimeSliderProperties
- ITypeInfo
- ITypeInfoDomain
- IVectorTileLayer
- IViewingInfo
- IVisibleLayer
- IVisiblePopup
- IWebMapBackground
- IWebMapTileServiceInfo
- IWebTiledLayer
- IWebmap
- IWidget
- FeatureEditTool
-
@esri/arcgis-rest-common -
@esri/arcgis-rest-feature-service-admin -
@esri/arcgis-rest-feature-service - IAddFeaturesRequestOptions
- IAddFeaturesResult
- addFeatures
- IAddAttachmentOptions
- IAddAttachmentResponse
- addAttachment
- IDecodeValuesRequestOptions
- decodeValues
- IDeleteFeaturesParams
- IDeleteFeaturesRequestOptions
- IDeleteFeaturesResult
- deleteFeatures
- IDeleteAttachmentsOptions
- IDeleteAttachmentsResponse
- deleteAttachments
- IAttachmentInfo
- IGetAttachmentsOptions
- IGetAttachmentsResponse
- getAttachments
- getLayer
- IEditFeatureResult
- IEditFeaturesParams
- ISharedQueryParams
- IFeatureRequestOptions
- IQueryFeaturesRequestOptions
- IQueryFeaturesResponse
- IQueryResponse
- IStatisticDefinition
- getFeature
- queryFeatures
- IQueryRelatedRequestOptions
- IQueryRelatedResponse
- IRelatedRecordGroup
- queryRelated
- IUpdateFeaturesRequestOptions
- IUpdateFeaturesResult
- updateFeatures
- IUpdateAttachmentOptions
- IUpdateAttachmentResponse
- updateAttachment
-
@esri/arcgis-rest-geocoder -
@esri/arcgis-rest-groups - IGroupAddRequestOptions
- createGroup
- IGroupContentResult
- IGroupUsersResult
- IPagingParamsRequestOptions
- getGroup
- getGroupContent
- getGroupUsers
- IGroupIdRequestOptions
- serializeGroup
- IGroupNotificationRequestOptions
- NotificationChannelType
- createGroupNotification
- protectGroup
- unprotectGroup
- removeGroup
- IGroupSearchRequest
- IGroupSearchResult
- searchGroups
- IGroupUpdateRequestOptions
- updateGroup
-
@esri/arcgis-rest-items - IItemDataAddRequestOptions
- IItemResourceAddRequestOptions
- addItemData
- addItemJsonData
- addItemRelationship
- addItemResource
- IAddFolderRequestOptions
- IItemAddRequestOptions
- createFolder
- createItem
- createItemInFolder
- IGetRelatedItemsResponse
- IItemGroupResponse
- getItem
- getItemData
- getItemGroups
- getItemResources
- getRelatedItems
- IAddFolderResponse
- IFolderIdRequestOptions
- IItemAddResponse
- IItemCrudRequestOptions
- IItemDataRequestOptions
- IItemIdRequestOptions
- IItemMoveResponse
- IItemRelationshipRequestOptions
- IItemRequestOptions
- IItemResourceRequestOptions
- IItemResourceResponse
- IItemUpdateResponse
- IManageItemRelationshipRequestOptions
- ItemRelationshipType
- determineOwner
- serializeItem
- protectItem
- unprotectItem
- removeFolder
- removeItem
- removeItemRelationship
- removeItemResource
- ISearchRequest
- ISearchRequestOptions
- ISearchResult
- searchItems
- IItemMoveRequestOptions
- IItemUpdateRequestOptions
- moveItem
- updateItem
- updateItemResource
-
@esri/arcgis-rest-request - ArcGISAuthError
- IAuthenticationManager
- IRequestOptions
- NODEJS_DEFAULT_REFERER_HEADER
- checkForErrors
- request
- ArcGISRequestError
- ErrorTypes
- appendCustomParams
- cleanUrl
- encodeFormData
- encodeParam
- encodeQueryString
- IPortal
- getPortal
- getSelf
- getPortalUrl
- IFetchTokenParams
- IGenerateTokenParams
- IParams
- ITokenRequestOptions
- GrantTypes
- HTTPMethods
- ResponseFormats
- processParams
- requiresFormData
- IRetryAuthError
- warn
-
@esri/arcgis-rest-routing -
@esri/arcgis-rest-sharing -
@esri/arcgis-rest-users - IGetUserRequestOptions
- getUser
- IInvitation
- IInvitationRequestOptions
- IInvitationResult
- acceptInvitation
- declineInvitation
- getUserInvitation
- getUserInvitations
- INotification
- INotificationIdRequestOptions
- INotificationResult
- getUserNotifications
- removeNotification
- IUpdateUserRequestOptions
- IUpdateUserResponse
- updateUser
deleteFeatures
import { deleteFeatures } from '@esri/arcgis-rest-feature-service';
//
deleteFeatures({
url: "https://sampleserver6.arcgisonline.com/arcgis/rest/services/ServiceRequest/FeatureServer/0",
objectIds: [1,2,3]
});
Delete features request. See the REST Documentation for more information.
Parameters
Parameter | Type | Default | Notes |
---|---|---|---|
requestOptions Required | IDeleteFeaturesRequestOptions |
Returns
Promise<IDeleteFeaturesResult>
- A Promise that will resolve with the deleteFeatures response.
Function defined in packages/arcgis-rest-feature-service/src/delete.ts:72