Learn R Programming

arcgislayers (version 0.4.0)

update_params: Modify query parameters

Description

update_params() takes named arguments and updates the query.

Usage

update_params(x, ...)

Value

An object of the same class as x

Arguments

x

a FeatureLayer or Table object

...

key value pairs of query parameters and values.

Examples

Run this code
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")
}

Run the code above in your browser using DataLab