如何在r中给出纬度和经度信息显示谷歌地图方向

时间:2015-10-29 14:00:36

标签: r google-maps ggmap rgooglemaps

我和我一起有几个地方的纬度和逻辑信息。这是一个示例:

lat<-c(17.48693,17.49222,17.51965,17.49359,17.49284,17.47077)
long<-c(78.38945,78.39643,78.37835,78.40079,78.40686,78.35874)

我想以某种顺序绘制这些位置(比如上面向量中的第一个元素的lat-long组合将是起点,我需要以相同的顺序行进到最后一个位置),并在R中使用谷歌地图方向在一些搜索后,我发现有一个谷歌地图api,我可以从中获取指定位置的谷歌地图截图,在它上面我们需要绘制线条来连接它们。但我需要的是谷歌地图驾驶方向连接位置(而不是ggplot线)。 请帮忙。

2 个答案:

答案 0 :(得分:8)

我已经使用有效的API密钥编写了包googleway来访问google maps API。

您可以使用功能google_directions()来获取路线,包括航路点,路线步数,路段,距离,时间等。

例如

library(googleway)

## using a valid Google Maps API key
key <- "your_api_key"

## Using the first and last coordinates as the origin/destination
origin <- c(17.48693, 78.38945)
destination <- c(17.47077, 78.35874)

## and the coordinates in between as waypoints
waypoints <- list(via = c(17.49222, 78.39643),
                  via = c(17.51965, 78.37835),
                  via = c(17.49359, 78.40079),
                  via = c(17.49284, 78.40686))
## use 'stop' in place of 'via' for stopovers

## get the directions from Google Maps API
res <- google_directions(origin = origin,
                         destination = destination,
                         waypoints = waypoints,
                         key = key)  ## include simplify = F to return data as JSON

结果是从Google地图收到的所有数据

## see the structure
# str(res)

您在Google地图上看到的行包含在

res$routes$overview_polyline$points
# [1] "slviBqmm}MSLiA{B^wAj@sB}Ac@...

哪条是编码折线。

要从中获取lat / lon,请使用函数decode_pl()

df_polyline <- decode_pl(res$routes$overview_polyline$points)
head(df_polyline)
#        lat      lon
# 1 17.48698 78.38953
# 2 17.48708 78.38946
# 3 17.48745 78.39008
# 4 17.48729 78.39052
# 5 17.48707 78.39110
# 6 17.48754 78.39128

当然,您可以按照自己的意愿绘制

library(leaflet)

leaflet() %>%
  addTiles() %>%
  addPolylines(data = df_polyline, lat = ~lat, lng = ~lon)

enter image description here

编辑2017-07-21

googleway 2.0开始,您可以在Google地图中绘制折线,使用之前的解码坐标,或直接使用折线

google_map(key = key) %>%
    add_polylines(data = data.frame(polyline = res$routes$overview_polyline$points), 
                                polyline = "polyline")

enter image description here

答案 1 :(得分:2)

这基本上归结为创建route_df,然后将结果绘制为geom_path。例如,对于单个路线,您可以执行以下操作:

library(ggmap)

route_df <- route(from = "Hyderabad, Telangana 500085, India",
                  to = "Kukatpally, Hyderabad, Telangana 500072, India",
                  structure = "route")

my_map <- get_map("Hyderabad, Telangana 500085, India", zoom = 13)

ggmap(my_map) +
  geom_path(aes(x = lon, y = lat), color = "red", size = 1.5,
            data = route_df, lineend = "round")

Map with route

因此,您可以通过生成每个从 - 到路线并rbind将所有结果合并为一个大route_df并绘制最终结果来实现此目的。如果您尝试并显示您遇到困难的地方(代码),其他人可以更轻松地帮助您。您可能希望在显示您尝试过的内容后编辑原始问题或提交新问题。

This SO postthis answerhttp://jsfiddle.net/0sdesy1x/1/应该会有所帮助。