我在sapui5應用程序中使用框架openui5-googlemaps來使用谷歌地圖。我有一個lat/lng位置數組。我想在這個數組中從一個位置到另一個位置繪製一條線。從SAPUI5中的緯度/經度列表中繪製路線
我發現方向的例子:
<gmaps:directions>
<gmaps:Directions startAddress="{mapModel>/start}" endAddress="mapModel>/end}" unitSystem="1" waypoints="{mapModel>/stops}">
<gmaps:waypoints>
<gmaps:Waypoint location="{mapModel>/name}"></gmaps:Waypoint>
</gmaps:waypoints>
</gmaps:Directions>
</gmaps:directions>
在此解決方案的問題是,我不希望在每個位置的標記。 (我的位置有幾米的距離。) 此外,此解決方案繪製基於街道的線條。無論街道如何,我都需要解決方案。
聽起來像是你要使用的[折線類]的(https://github.com/jasper07/openui5-googlemaps/blob/master/src/Polyline.js),而不是方向之一 – duncan
你有一個使用的例子嗎? 我有我的問題讓它以正確的方式運行。 –
不,他們不打擾在他們的樣本中給出一個例子。我會說[John Patterson](https://github.com/jasper07)請求更新示例 – duncan