Open external navigation app with PhoneGap

心已入冬 提交于 2019-12-04 13:52:01

I solved it but create "href" to Geo Link

work simply with "saddr" and "daddr" values just great!

geo: href doesn't work in phonegap 3x , it only works in phonegap 2x only for showing location and search not for direction. Solution for open google map from phonegap 2x and 3x :

For Navigation - window.open("google.navigation:q=23.3728831,85.3372199&mode=d" , '_system');

For Search - window.open("geo:0,0?q=pizza" , '_system');

Read Here - https://developers.google.com/maps/documentation/android/intents

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!