我希望能够使用R&#39 {s} leaflet
包从leafletjs复制Interactive Chroropleth Map example,其中包含一个介绍here
然而,即使在最初的几个障碍中我似乎也在挣扎......
以下是我到目前为止所做的事情:
library(dplyr)
library(leaflet)
# Download js file
download.file('http://leafletjs.com/examples/us-states.js',destfile='us-states.js')
# Generate base map (but not sure how to add the js file data)...
m = leaflet() %>% addTiles() %>% setView(-96,37.8,zoom=4)
m