| as.json {geojsonio} | R Documentation |
Convert inputs to JSON
as.json(x, ...)
x |
Input |
... |
Further args passed on to |
when the output of topojson_list() is given to
this function we use a special internal fxn astjl() to
parse the object - see that fxn and let us know if any
problems you run in to
## Not run: (res <- geojson_list(us_cities[1:2, ], lat = "lat", lon = "long")) as.json(res) as.json(res, pretty = TRUE) vec <- c(-99.74, 32.45) as.json(geojson_list(vec)) as.json(geojson_list(vec), pretty = TRUE) ## End(Not run)