Learn R Programming

echarts4r (version 0.1.1)

e_geo: Geo

Description

Initialise geo.

Usage

e_geo(e, map = "world", ...)

Arguments

e

An echarts4r object as returned by e_charts.

map

Map type.

...

Any other option to pass, check See Also section.

See Also

https://ecomfe.github.io/echarts-doc/public/en/option.html#geo

Examples

Run this code
# NOT RUN {
flights <- read.csv(
  paste0("https://raw.githubusercontent.com/plotly/datasets/",
         "master/2011_february_aa_flight_paths.csv")
)

flights %>% 
  e_charts() %>% 
  e_geo() %>% 
  e_lines(
    start_lon, 
    start_lat, 
    end_lon, 
    end_lat,
    name = "flights",
    lineStyle = list(normal = list(curveness = 0.3))
   )

# }

Run the code above in your browser using DataLab