如何组合地方自动完成和可拖动的方向

时间:2018-02-05 03:10:10

标签: google-maps

这些是我想要组合在一起的2个样本:

https://developers.google.com/maps/documentation/javascript/examples/places-autocomplete-directions

https://developers.google.com/maps/documentation/javascript/examples/directions-draggable

我还在学习,我不知道如何将这两个样本结合起来。 我打算做的是在显示文字方向的同时放置原始位置和目的地位置。

请我在我们的学校项目中做这些。这对我来说真的很重要

1 个答案:

答案 0 :(得分:0)

您需要将可拖动选项添加到DirectionsRenderer中的标记和右侧面板,如下所示:

this.directionsDisplay = new google.maps.DirectionsRenderer({ draggable: true, map: map, panel: document.getElementById('right-panel') });

以下是both samples combined

的示例