我有一個html頁面,顯示從當前位置到某個地址的路線。我可以在Android瀏覽器中只使用JavaScript來啓動一個intent嗎?
我想這樣做,但使用地圖應用程序,而不是在瀏覽器中顯示它。
當我使用:
<script>
document.location = "geo:0,0?q=myaddress";
</script>
這工作正常,但不告訴我的路線。
我從這個閱讀:
String url = "http://maps.google.com/maps?saddr=some+address&daddr=another+Address"
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(url));
我也能這樣做只是使用javascript:Android Google Directions Service usable natively? with wrapper framework? Public transit/biking directions available?
應該使用此代碼是可能的嗎?
我對JavaScript部分持不同意見,因爲如果應用程序未安裝,有時您需要回退,因此用戶應該能夠通過移動版本的站點執行所需的操作。 – 2015-12-11 14:16:35