利用google directions api计算距离

api介绍在http://code.google.com/apis/maps/documentation/directions/

用经纬度查询格式如下
http://maps.googleapis.com/maps/api/directions/xml?origin=32.045333,118.885803&destination=31.229243,121.451111&sensor=false

用地名查询格式如下,目前还不支持中文,只能用拼音。这是查询从南京到上海的距离
http://maps.googleapis.com/maps/api/directions/xml?origin=nanjing&destination=shanghai&sensor=false
[UPDATE]
我土了,中文是可以支持的,用URLEncoder对其做一下编码即可,编码的时候要制定编码方式为UTF-8,以下是经过编码的查询从南京市高淳县到上海市普陀区的例子
http://maps.googleapis.com/maps/api/directions/xml?origin=%E5%8D%97%E4%BA%AC%E5%B8%82%E9%AB%98%E6%B7%B3%E5%8E%BF&destination=%E4%B8%8A%E6%B5%B7%E5%B8%82%E6%99%AE%E9%99%80%E5%8C%BA&sensor=false

还可以指定途中要经过的地点,这里是指定必须经过无锡和苏州,多个地名用|分隔
http://maps.googleapis.com/maps/api/directions/xml?origin=nanjing&destination=shanghai&waypoints=wuxi|suzhou&sensor=false

如果想获得json格式的输出,将xml替换为json

xml格式的返回结果中
/DirectionsResponse/route/leg/duration里面是时间
/DirectionsResponse/route/leg/distance里面是距离

你可能感兴趣的:(xml,json,Google)