我正在玩閃亮應用中的傳單,我希望獲得關於我點擊的標記的信息。在這一點上,我用標記有一個很好的地圖,但是如何返回關於我點擊的標記的信息?我如何閱讀傳單中閃亮的標記數據
我server.R
library(shiny)
library(leaflet)
library(rgdal)
setwd("~/github/shiny_stuff/banyuls_map/")
####load data converted in geojson
capteurs<-readOGR("./data/capteurs.geojson", "OGRGeoJSON")
shinyServer(function(input, output, session) {
map <- createLeafletMap(session, "map")
session$onFlushed(once=TRUE, function() {
map$addMarker([email protected][,2],
[email protected][,1]
)
})
})
我ui.R
library(shiny)
library(leaflet)
shinyUI(fluidPage(
titlePanel("title panel"),
leafletMap(
"map", "100%", 400,
initialTileLayer = "//{s}.tiles.mapbox.com/v3/jcheng.map-5ebohr46/{z}/{x}/{y}.png",
initialTileLayerAttribution = HTML('Maps by <a href="http://www.mapbox.com/">Mapbox</a>'),
options=list(
center = c(42.4797, 3.1181),
zoom = 12
)
),
))
嗨@bquast謝謝你,它的工作惠特製造商?因爲我已經嘗試過了,而且我無法看到任何彈出窗口? – delaye 2014-09-30 08:10:45