e_map_register | R Documentation |
Register a geojson map.
e_map_register(e, name, json, ...)
e_svg_register(e, name, svg)
e_map_register_p(
name,
json,
async = FALSE,
session = shiny::getDefaultReactiveDomain()
)
e_map_register_ui(name, json, async = FALSE)
e |
An |
name |
Name of map, to use in |
json, svg |
Geojson, or SVG. |
... |
Additional options passed to registerMap. |
async |
Whether to read the file asynchronously. |
session |
A valid Shiny session. |
e_map_register_p
is not truly a proxy as it does not require
a chart to function. While the function e_map_register_ui
is meant to
register the map globally in the Shiny UI, not that then json
must be accessible
from the UI (generally www folder).
## Not run:
json <- jsonlite::read_json("https://echarts.apache.org/examples/data/asset/geo/USA.json")
USArrests |>
tibble::rownames_to_column("states") |>
e_charts(states) |>
e_map_register("USA", json) |>
e_map(Murder, map = "USA") |>
e_visual_map(Murder)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.