Skip to contents

update_params() takes named arguments and updates the query.

Usage

update_params(x, ...)

Arguments

x

a FeatureLayer or Table object

...

key value pairs of query parameters and values.

Value

An object of the same class as x

Examples

if (FALSE) {
furl <- paste0(
  "https://services.arcgis.com/P3ePLMYs2RVChkJx/ArcGIS/rest/services/",
  "USA_Major_Cities_/FeatureServer/0"
)

flayer <- arc_open(furl)
update_params(flayer, outFields = "NAME")
}