Requires authentication.
Value
Returns a data frame with the closed map notes (same format as osm_get_notes()
with format = "R"
).
See also
Other edit notes' functions:
osm_create_comment_note()
,
osm_create_note()
,
osm_delete_note()
Examples
if (FALSE) { # \dontrun{
set_osmapi_connection("testing") # use the testing server
note <- osm_create_note(lat = 41.38373, lon = 2.18233, text = "Testing osmapiR")
closed_note <- osm_close_note(note$id)
closed_note
reopened_note <- osm_reopen_note(note$id)
reopened_note
closed_note <- osm_close_note(note$id) # leave it closed
} # }