我想通过Google地图确定2点之间的距离。 这两点由其地址给出。我可以使用任何API用于此目的吗?
例如,我将2个地址发送到http://example.com/address1/address2之类的URI,它将返回一个类似
的JSON{
'from' :address1,
'to' :address2,
'distanceByBus':100,
'straight' :50
}
答案 0 :(得分:1)
有 - Google Distance Matrix API
Google Maps Distance Matrix API是一项服务,根据建议的起点和终点之间的路线,为起点和终点矩阵提供行程距离和时间。
https://maps.googleapis.com/maps/api/distancematrix/json?units=imperial&origins=Washington,DC&destinations=New+York+City,NY&key=YOUR_API_KEY
{
"destination_addresses" : [ "New York, NY, USA" ],
"origin_addresses" : [ "Washington, DC, USA" ],
"rows" : [
{
"elements" : [
{
"distance" : {
"text" : "225 mi",
"value" : 361715
},
"duration" : {
"text" : "3 hours 49 mins",
"value" : 13725
},
"status" : "OK"
}
]
}
],
"status" : "OK"
}