2017-06-23 44 views
2

簡介:傳單地圖圖塊在R中的reveal.js演示文稿中不可見?

我試圖嵌入單張地圖到RMarkdown文件中的revealjs演示。我的下面的例子非常接近,但它是(1)缺少tile,(2)彈出窗口不顯示,(3)圖例和字體太大了!

我並不太在意代碼塊如何看待這一刻。我打算爲我的最終產品使用results = "hide"幻燈片選項。

在此先感謝!

重複的例子:

--- 
title: "My Presentation" 
author: Me 
date: 2017-06-23 
output: 
    revealjs::revealjs_presentation: 
     theme: black 

--- 

## Loading in necessary packages: 
```{r} 
library(dplyr) 
library(sp) 
library(rgdal) 
library(rgeos) 
library(RColorBrewer) 
library(classInt) 
library(leaflet) 
library(htmlwidgets) 
``` 

## Defining our data: 
```{r} 
lat <- c(45.51158000, 45.50431159, 45.496539) 
lon <- c(-122.548056, -122.54775, -122.54788) 
no2 <- c(17.37, 25.61, 24.69) 

dta <- data.frame(lat, lon, no2) 
colnames(dta) <- c("lat","lon","no2") 
``` 

## Create layer of spatial points: 
```{r} 
points <- SpatialPointsDataFrame(data.frame(x=dta$lon, y=dta$lat), data = data.frame(dta$no2)) 

plotclr <- (brewer.pal(7, "RdYlGn")) 
class <- classIntervals(dta$no2, n = 7, style = "fixed", fixedBreaks = c(0,5,10,15,20,25,30)) 
colcode <- findColours(class, rev(plotclr)) 
plot(points, col=colcode, pch=19) 

pop1<-paste0("<b>NO2:</b> ", dta$no2, " ppb", 
     "<br /> <b>Lat:</b> ", dta$lat, 
     "<br /> <b>Lon:</b> ", dta$lon) 
``` 

## Creating the leaflet map: 
```{r} 
no2_map <-leaflet()%>% 
    addTiles('http://{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png') %>% 
    addCircleMarkers(data=points, color = "black", radius = dta$no2, fillColor = colcode, fillOpacity=0.7, weight=1, popup=pop1) %>% 
    addLegend(position = "bottomright", colors = rev(plotclr), labels = rev(c("30","25","20","15","10","5","0")), opacity = 0.9, title = "NO2 (ppb)") 
``` 

--- 
```{r} 
no2_map 

saveWidget(no2_map, file="map.html") 

``` 

回答

0

不幸的是,reveal.js和單張不玩很好地結合在一起,並與您的地圖幻燈片可能會丟失層。這是由於Leaflet無法辨別作爲地圖容器的DOM元素的大小,因爲reveal.js將所有元素的大小調整爲dinamically。

最簡單的解決方法是隻需刷新頁面,當您在帶有Leaflet地圖的幻燈片中。您也可以嘗試延期撥打電話map.invalidateSize()(使用平頭Javascript中的setTimeout()

+0

我已經在[here](http://www.jacksonvoelkel.com/presentations/sar/GIA.html# /部分-65)。但在Javascript中沒有經驗。如果沒有明確的方法讓地圖看起來很正確,那麼我可以放棄這種方法來更容易一些。 – spacedSparking