leafletで地図にプロット
library(jsonlite)
library(leaflet)
# https://www.javadrive.jp/google-maps-javascript/data/data/pref.json
j <- fromJSON("pref.json")
l <- leaflet() %>% addTiles() %>%
addPolylines(lng = j$marker$lng, lat = j$marker$lat, color = "#0095d9") %>%
addCircleMarkers(lng = j$marker$lng, lat = j$marker$lat, popup = j$marker$addr, radius = 2, color = "#0f2350")
l
Author And Source
この問題について(leafletで地図にプロット), 我々は、より多くの情報をここで見つけました https://qiita.com/yono2844/items/7b1c8c762e7c6576a4c2著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .