Delete Layer from an Existing Map
Arguments
- map_id
character, map identifier from url, from
https://felt.com/map/Readable-Name-map_id
- layer_id
character, layer identifier from url, from
felt_get_map()
- clean
logical, whether to turn the API response into a tibble::tibble
Examples
if (FALSE) { # has_felt_key()
# split the URL for length reasons
url <- paste0(
'https://www.rocklandgis.com/portal/sharing/rest/',
'content/items/73fc78cb0fb04580b4788937fe5ee697/data'
)
layer <- felt_add_map_layers_url(
map_id = 'Rockland-2024-Districts-TBI8sDkmQjuK2GX9CSiHiUA',
url = url,
name = 'URL Parks test')
layer
# and delete the new layer
felt_delete_map_layer(map_id = 'TBI8sDkmQjuK2GX9CSiHiUA', layer_id = layer$layer_id)
}