R Leaflet:如何在addTiles函数中绘制具有特定地理位置的地图?

时间:2017-10-14 17:26:14

标签: r ggplot2 leaflet

我尝试使用Leaflet Package中的addTiles函数绘制Delhi位置。以下是代码:

leaflet()%>%
addTiles(map = "Delhi",urlTemplate = "http://www.openstreetmap.org/search?query=delhi#map=11/28.6518/77.2219",attribution = 'Google')

获取此错误:map $ x:$ operator中的错误对原子矢量无效

我搜索了解决方案,但无法找到我特定问题的答案。

1 个答案:

答案 0 :(得分:2)

Run this code

library(leaflet)
leaflet()%>%
  addTiles()%>%
  setView(lng = 77.209021,lat =28.613939,zoom = 10 )

Results

delhi