Add/Update Feature Layer Filter in ArcGIS Online with the ArcGIS API For Python
We are going to look at how we update/apply a filter for a layer in a WebMap in ArcGIS Online using the ArcGIS API for Python. The commented codeblock below will achieve this. from arcgis.gis import GIS from arcgis.mapping import WebMap ## access AGOL agol = GIS(“home”) ## access the WebMap Item wm_item = agol.content.get(“WebMap_Item_ID”) …
Add/Update Feature Layer Filter in ArcGIS Online with the ArcGIS API For Python Read More »