Add, update, and delete data in a hosted feature layer.
Prerequisites
An ArcGIS Location Platform, ArcGIS Online, or ArcGIS Enterprise account.
Steps
Create a private feature layer
For this tutorial, you will use the Santa Monica Parcels dataset to create a private hosted feature layer in your portal.
-
In your web browser, go to the Santa Monica Parcels item.
-
Click the Download button to download the zip file locally. Do not unzip this file.
-
Import the shapefile into ArcGIS.
-
In your web browser, go to ArcGIS.com and sign in with your ArcGIS Location Platform account.
-
In the top navigation bar, click Content.
-
Click New item. To upload the Santa Monica Parcels shapefile, you can either:
- Drag and drop the file.
- Or, click Your device and navigate to the file path.
-
Select Add Santa Monica Parcels.zip to publish the file as a hosted feature layer.
-
In Fields, leave all fields at their default settings and click Next.
-
In Location settings, leave the default settings and click Next.
-
Set the following information in the item details pane:
- Title:
Santa Monica Parcels - Tags:
Santa MonicaParcels. - Summary:
Parcels in the Santa Monica Mountains.
- Title:
-
Click Next to create the new feature layer and feature service.
-
In the feature service item page, make sure the Share setting is set to Owner.
-
Scroll down to the URL section and copy the URL into a safe location. You will use this in a later step. The URL will look something like:
https.://services3.arcgis.com/ G Vgb Jbqm8h XASV Yi/arcgis/rest/services/ Santa _Monica _Parcels/ Feature Server
-
-
In the feature layer item page, go to Settings.
-
Under Feature layer (hosted), check the Enable editing box.
-
Save your changes.
Get the starter app
Select a type of authentication and follow the steps to create a new app.
Choose API key authentication if you:
- Want the easiest way to get started.
- Want to build public applications that access ArcGIS Location Services and secure items.
- Have an ArcGIS Location Platform or ArcGIS Online account.
Choose user authentication if you:
- Want to build private applications.
- Require application users to sign in with their own ArcGIS account and access resources their behalf.
- Have an ArcGIS Online account.
To learn more about both types of authentication, go to Authentication.
Set up authentication
Set developer credentials
Use the API key or OAuth developer credentials so your application can access ArcGIS services.
Make the request
Copy and paste the code below, following the steps to make a request to the feature service.
-
Reference the
arcgis-rest-requestandarcgis-rest-feature-servicelibraries either through CDN, ES Modules, or Node JS. -
Update the
<preelement id to> result-add. Add two more<preelements called> result-updateandresult-delete. -
Paste the feature layer URL you copied earlier to the
featurevariable and appendLayer Url /0at the end of the URL. -
Define the parameters needed for the request.
-
Make a request to the feature service and handle the results.
<script>
// when including ArcGIS REST JS all exports are available from the same arcgisRest global
/* Use for API key authentication */
const accessToken = "YOUR_ACCESS_TOKEN";
const authentication = arcgisRest.ApiKeyManager.fromKey(accessToken);
// or
/* Use for user authentication */
// const authentication = await arcgisRest.ArcGISIdentityManager.beginOAuth2({
// clientId: "YOUR_CLIENT_ID", // Your client ID from OAuth credentials
// redirectUri: "YOUR_REDIRECT_URI", // The redirect URL registered in your OAuth credentials
// portal: "https://www.arcgis.com/sharing/rest" // Your portal URL
// })
// Replace the following with your own layer URL
const featureServiceLayerUrl = "https://services3.arcgis.com/GVgbJbqm8hXASVYi/arcgis/rest/services/parcelsss/FeatureServer/0"; // Your feature layer URL should go here
const featureToAdd = {
attributes: {
situshouse: "123",
situsfract: "A",
situsdirec: "N",
situsunit: "Apt 4B",
situsstree: "Main St",
situsaddre: "123 Main St",
situscity: "California",
center_lat: 34.002,
center_lon: -118.809,
Shape__Area: 1000.5,
Shape__Len: 500.3
},
geometry: {
rings: [
[
[-118.809, 34.002],
[-118.809, 34.004],
[-118.807, 34.004],
[-118.807, 34.002],
[-118.809, 34.002]
]
],
spatialReference: {
wkid: 102100
}
}
};
// begin by adding a new feature to the feature service layer,
// then update its attributes,
// and finally delete it from the layer
arcgisRest
.addFeatures({
url: featureServiceLayerUrl,
features: [featureToAdd],
authentication
})
.then(handleAdded);
function handleAdded(response) {
console.log(response);
document.getElementById("result-add").textContent = JSON.stringify(response, null, 2);
if (!response.addResults[0].success) {
// stop early if adding a new feature was not successful
return;
}
// perform an update to feature attributes using the objectId of the newly added feature
const featureToUpdate = {
attributes: {
FID: response.addResults[0].objectId,
name: "new name",
rating: "3"
}
};
arcgisRest
.updateFeatures({
url: featureServiceLayerUrl,
features: [featureToUpdate],
authentication
})
.then(handleUpdated);
}
function handleUpdated(response) {
console.log(response);
document.getElementById("result-update").textContent = JSON.stringify(response, null, 2);
if (!response.updateResults[0].success) {
// stop early if updating the feature was not successful
return;
}
// delete the feature using the objectId of the updated feature
// NOTE: it is the same objectId provided in the response of `arcgisRest.addFeatures`
const featureToDelete = [response.updateResults[0].objectId];
arcgisRest
.deleteFeatures({
url: featureServiceLayerUrl,
objectIds: [featureToDelete],
authentication
})
.then(handleDeleted);
}
function handleDeleted(response) {
console.log(response);
document.getElementById("result-delete").textContent = JSON.stringify(response, null, 2);
}
</script>
Run the app
Run the app.
The result should look similar to this.What's next?
Learn how to use additional location services in these tutorials:
Query a feature layer (spatial)
Access and query a hosted feature layer with a geometry and spatial operator.
Query a feature layer (SQL)
Access and query a hosted feature layer with a SQL where clause.
Find service areas
Create a service area that can be reached from a location within a drive time with the route service.