Google Maps Api:我有类似的对象(确定只是代码的一部分......):
var directionsDisplay = new google.maps.DirectionsRenderer(rendererOptions);
var result = directionsDisplay.getDirections();
我需要知道路线的起始和目的地地址(字符串格式)。
例如,我可以像LatLng一样获得:
result.routes[0].overview_path[0]
答案 0 :(得分:1)
为此,您可能希望使用DirectionsLeg.start_address
和DirectionsLeg.end_address
值。
请参阅https://developers.google.com/maps/documentation/javascript/directions#Legs
对于路线路径第一个分支的起始地址,result.routes[0].legs[0].start_address
为result.routes[0].legs[result.routes[0].legs.length-1].end_address
。
{{1}} 对于路线路径的最后段的结束地址。