我需要打開谷歌地圖,當我點擊一個按鈕,並顯示從源位置和目標位置的方向。通過搜索很多,我想出了一個InAppBrowser的方式,但它不工作。 這裏是我找到的代碼: this.geolocation.getCurrentPosition().then((data) => {
let lat = data.coords.latitude;
let lng = data.coor
所以我打算在我的應用程序中使用谷歌方向API來計劃我的城市中的運輸路線。 https請求會返回ZERO_RESULTS,即使Google地圖支持城市中的交通模式。 The Directions API request And the same route planned with Google Maps 是否有任何其他方式來解決這樣或那樣的,我可以用任何其他的API?