Created
July 29, 2018 09:45
-
-
Save yutannihilation/79b8e9df80325fb35109c5297fc9bec3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(leaflet) | |
| # 先にbasemapをつくっておく | |
| basemap <- leaflet() %>% | |
| addTiles("http://cyberjapandata.gsi.go.jp/xyz/std/{z}/{x}/{y}.png", | |
| attribution = "<a href='http://maps.gsi.go.jp/development/ichiran.html' target='_blank'>地理院タイル</a>") | |
| library(mapview) | |
| # つくったbasemapをmap引数に指定する | |
| mapview(franconia, map = basemap) |
Author
yutannihilation
commented
Jul 29, 2018

Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment