Google Direction API使用10位数字来响应waypoint_order

时间:2019-06-20 16:51:19

标签: google-maps-api-3 google-api directions

我们使用Google Direction API(库)。我们这样称呼它:

var directionsService =  new window.google.maps.DirectionsService();
directionsService.route(request, function (result, status) {  }

大多数响应是这样的:

waypoint_order: Array(23)
0: 3
1: 9
...
21: 6
22: 15
length: 23

但是有时我们会收到此响应,这会导致错误:

waypoint_order: Array(23)
0: 4294967295
1: 4294967295
...
22: 4294967295
length: 23

这是哪里来的?

1 个答案:

答案 0 :(得分:0)

此问题已于6月20日(欧洲夜间)修复,如Google的公开问题跟踪器中所述:https://issuetracker.google.com/issues/135627404

如果您仍然遇到错误,则可以在上面的问题链接上发表评论,以供工程师进一步研究。