Created
June 2, 2017 14:49
-
-
Save gregmacfarlane/3c77b6f7748d8f140defa26e5b10f403 to your computer and use it in GitHub Desktop.
Demo shiny Rmd with topojson file
This file contains 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
--- | |
title: "Test RMD" | |
output: html_document | |
runtime: shiny | |
--- | |
```{r setup, include=FALSE} | |
knitr::opts_chunk$set(echo = TRUE) | |
library(tidyverse) | |
library(leaflet) | |
library(shiny) | |
library(geojsonio) | |
library(sp) | |
``` | |
## GeoJSON | |
```{r geo} | |
us <- geojsonio::geojson_read("http://eric.clst.org/wupl/Stuff/gz_2010_us_040_00_500k.json", what = "sp") | |
leaflet(us) %>% addTiles() %>% addPolygons() | |
``` | |
## TopoJSON | |
```{r topo} | |
eu <- geojsonio::geojson_read("https://raw.githubusercontent.com/Leaflet/Leaflet.VectorGrid/master/docs/eu-countries.topo.json", what = "sp") | |
leaflet(eu) %>% addTiles() %>% addPolygons() | |
``` | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment