问题
如何使用添加多个标记rMaps
?
数据
coords <- structure(list(stop_id = 19841:19843, stop_name = c("Flagstaff Railway Station (Melbourne City)",
"Melbourne Central Railway Station (Melbourne City)", "Parliament Railway Station (Melbourne City)"
), stop_lat = c(-37.8119813073807, -37.8099387667386, -37.8110540555305
), stop_lon = c(144.955653760429, 144.962593535096, 144.972910916416
)), .Names = c("stop_id", "stop_name", "stop_lat", "stop_lon"
), sorted = "stop_id", row.names = 17:19, class = c("data.table",
"data.frame"))
例子
根据 Ramnath 的 github 页面上的示例,使用library(rMaps)
我可以创建地图并添加单个标记:
library(rMaps)
l <- Leaflet$new()
l$setView(c(-37.8602828, 145.079616), zoom=11)
l$tileLayer(provider = "Acetate.terrain")
## add one marker:
l$marker(LatLng = c(-37.81198,144.9557))
但我不知道如何从coords
数据框中添加多个标记,而不l$marker
为每个标记写一行。
我试过使用GeoJSON
,但我是新手,所以还没有完全理解它,一定是做错了什么。
# library(rgdal)
# coords.sp <- SpatialPointsDataFrame(coords[,.(stop_lon, stop_lat)], coords[,.(stop_id, stop_name)])
# writeOGR(obj=coords.sp, dsn='coords.geojson', layer='OGRGeoJSON', driver='GeoJSON')
# gj <- readOGR("./coords.geojson", layer="OGRGeoJSON")
# l$geoJson(gj)
# l$geoJson("./coords.geojson")
JSON/GeoJSON
如果这是要走的路,我很乐意使用。
期望的输出
我希望结果与我曾经library(leaflet)
显示多个标记一样
library(leaflet)
leaflet() %>%
addProviderTiles("Acetate.terrain") %>%
setView(lat = -37.8602828, lng = 145.079616, zoom=11) %>%
addMarkers(data=coords, lat=~stop_lat, lng=~stop_lon)
地理JSON
这是从writeOGR
命令生成的 GeoJSON 代码,我已经在 GeoJSONLint进行了验证
{
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "id": 1, "properties": { "stop_id": 19841, "stop_name": "Flagstaff Railway Station (Melbourne City)" }, "geometry": { "type": "Point", "coordinates": [ 144.955653760428987, -37.811981307380698 ] } },
{ "type": "Feature", "id": 2, "properties": { "stop_id": 19842, "stop_name": "Melbourne Central Railway Station (Melbourne City)" }, "geometry": { "type": "Point", "coordinates": [ 144.962593535096005, -37.809938766738597 ] } },
{ "type": "Feature", "id": 3, "properties": { "stop_id": 19843, "stop_name": "Parliament Railway Station (Melbourne City)" }, "geometry": { "type": "Point", "coordinates": [ 144.972910916415998, -37.811054055530498 ] } }
]}