现在我正在使用google maps v3,当我尝试在两个位置之间获取路线时,我正在显示航点和内容,如下所示
开始:切斯特菲尔德机场路& McBride and Son Center Drive,Chesterfield,MO 63005,USA
1.1 mi - about 2 mins
1. Head west on Chesterfield Airport Rd toward RHL Dr
2. Turn right onto Long Rd Crossing DrDestination will be on the right
目的地:707 Long Road Crossing Drive,Chesterfield,MO 63005,USA
一切都很好,现在我想缩小目的地前:公司名称中的文字 所以,我找不到办法处理这个,如果有人知道或做过这种类型的东西让我知道...或任何工作周围PLZ .............
答案 0 :(得分:2)
在您调用API的函数中添加以下代码行,并将字符串传递给显示地址。
g_oDirections.route(oRequest, function (response, status) {
if (status == google.maps.DirectionsStatus.OK) {
response.routes[0].legs[0].end_address = "Your display text";
}
}