navigation.js 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. (function () {
  2. var map_load = "0";
  3. var location_now = 'setting';
  4. var vistor_page = 'profile';
  5. var page = {
  6. init: function ($page, param) {
  7. var originName='我的当前位置';//北四环东路 望和路
  8. var origin = new Array(39.98871,116.43234);//origin[0]为纬度,origin[1]为经度
  9. var destinationName = '故宫博物馆';
  10. var destination=new Array(39.9168,116.3908);//目的地纬度、经度。先纬度后经度
  11. function haveInstalledApp(){//通过包名判断app是否安装
  12. var mapList = document.getElementsByClassName('mapLi');
  13. var baiduPackageName = "com.baidu.BaiduMap";
  14. var gaodePackageName = "com.autonavi.minimap";
  15. var tengxunPackageName = "com.tencent.map";
  16. var gugePackageName = "com.google.android.apps.maps";
  17. appAvailability.check(baiduPackageName,function () {//success callback
  18. mapList.item(0).style.display = 'block';
  19. },function () {//
  20. mapList.item(0).style.display = 'none';
  21. });
  22. appAvailability.check(gaodePackageName,function () {//success callback
  23. mapList.item(1).style.display = 'block';
  24. },function () {//
  25. mapList.item(1).style.display = 'none';
  26. });
  27. appAvailability.check(tengxunPackageName,function () {//success callback
  28. mapList.item(2).style.display = 'block';
  29. },function () {//
  30. mapList.item(2).style.display = 'none';
  31. });
  32. appAvailability.check(gugePackageName,function () {//success callback
  33. mapList.item(3).style.display = 'block';
  34. // mapList.item(4).style.display = 'block';
  35. },function () {
  36. mapList.item(3).style.display = 'none';
  37. // mapList.item(4).style.display = 'none';
  38. });
  39. }
  40. //已安装应用检测
  41. haveInstalledApp();
  42. $page.find('.isValidate').on('tap', function () {
  43. haveInstalledApp();
  44. });
  45. //APP导航
  46. $page.find('.baidu').on('tap', function () {
  47. checkBaidu();
  48. });
  49. $page.find('.gaode').on('tap', function () {
  50. checkGaode();
  51. });
  52. $page.find('.tengxun').on('tap', function () {
  53. checkTengxun();
  54. });
  55. $page.find('.google').on('tap', function () {
  56. checkGuge();
  57. });
  58. //浏览器导航
  59. $page.find('.baidu_browser').on('tap', function () {
  60. goBaiduBrowser();
  61. });
  62. $page.find('.gaode_browser').on('tap', function () {
  63. goGaodeBrowser();
  64. });
  65. $page.find('.tengxun_browser').on('tap', function () {
  66. goTengxunBrowser();
  67. });
  68. $page.find('.google_browser').on('tap', function () {
  69. goGugeBrowser();
  70. });
  71. function checkBaidu(){
  72. var sApp = startApp.set({ /* params */
  73. "action":"ACTION_VIEW",
  74. "category":"CATEGORY_DEFAULT",
  75. "type":"text/css",
  76. "package":"com.baidu.BaiduMap",
  77. "uri":"baidumap://map/direction?origin=name:"+originName+"|latlng:"+origin[0]+","+origin[1]+"&destination=name:"+destinationName+"|latlng:"+destination[0]+","+destination[1]+"&mode=driving",
  78. "flags":["FLAG_ACTIVITY_CLEAR_TOP","FLAG_ACTIVITY_CLEAR_TASK"],
  79. "intentstart":"startActivity"
  80. });
  81. sApp.start(function() { /* success */
  82. //alert("OK");
  83. }, function(error) { /* fail */
  84. alert(error);
  85. });
  86. }
  87. function goBaiduBrowser(){
  88. window.location.href="http://api.map.baidu.com/direction?origin=name:"+originName+"|latlng:"+origin[0]+","+origin[1]+"&destination=name:"+destinationName+"|latlng:"+destination[0]+","+destination[1]+"&mode=driving&region=北京&output=html&src=webapp.baidu.openAPIdemo";
  89. }
  90. function checkGaode(){
  91. var sApp = startApp.set({ /* params */
  92. "action":"ACTION_VIEW",
  93. "category":"CATEGORY_DEFAULT",
  94. "type":"text/css",
  95. "package":"com.autonavi.minimap",
  96. "uri":"amapuri://route/plan/?slat="+origin[0]+"&slon="+origin[1]+"&sname="+originName+"&dlat="+destination[0]+"&dlon="+destination[1]+"&dname="+destinationName+"&dev=0&t=0",
  97. "flags":["FLAG_ACTIVITY_CLEAR_TOP","FLAG_ACTIVITY_CLEAR_TASK"],
  98. "intentstart":"startActivity"
  99. });
  100. sApp.start(function() { /* success */
  101. //alert("OK");
  102. }, function(error) { /* fail */
  103. alert(error);
  104. });
  105. }
  106. function goGaodeBrowser(){
  107. window.location.href="http://uri.amap.com/navigation?from="+origin[1]+","+origin[0]+","+originName+"&to="+destination[1]+","+destination[0]+","+destinationName+"&mode=car&src=mypage&coordinate=gaode&callnative=1";
  108. }
  109. function checkTengxun(){
  110. var sApp = startApp.set({ /* params */
  111. "action":"ACTION_VIEW",
  112. "category":"CATEGORY_DEFAULT",
  113. "type":"text/css",
  114. "package":"com.tencent.map",
  115. "uri":"qqmap://map/routeplan?type=drive&from="+originName+"&fromcoord="+origin[0]+","+origin[1]+"&to="+destinationName+"&tocoord="+destination[0]+","+destination[1]+"&coord_type=1&policy=0",
  116. "flags":["FLAG_ACTIVITY_CLEAR_TOP","FLAG_ACTIVITY_CLEAR_TASK"],
  117. "intentstart":"startActivity"
  118. });
  119. sApp.start(function() { /* success */
  120. //alert("OK");
  121. }, function(error) { /* fail */
  122. alert(error);
  123. });
  124. }
  125. function goTengxunBrowser(){
  126. window.location.href="http://apis.map.qq.com/uri/v1/routeplan?type=drive&from="+originName+"&fromcoord="+origin[0]+","+origin[1]+"&to="+destinationName+"&tocoord="+destination[0]+","+destination[1]+"&policy=1&referer=mapAPP";
  127. }
  128. function checkGuge(){//指定终点经纬度,默认当前位置
  129. var sApp = startApp.set({ /* params */
  130. "action":"ACTION_VIEW",
  131. "category":"CATEGORY_DEFAULT",
  132. "type":"text/css",
  133. "package":"com.google.android.apps.maps",
  134. "uri":"google.navigation:q="+destination[0]+","+destination[1],
  135. "flags":["FLAG_ACTIVITY_CLEAR_TOP","FLAG_ACTIVITY_CLEAR_TASK"],
  136. "intentstart":"startActivity"
  137. });
  138. sApp.start(function() { /* success */
  139. //alert("OK");
  140. }, function(error) { /* fail */
  141. alert(error);
  142. });
  143. }
  144. function checkGuge1(){//指定起点、终点经纬度
  145. var sApp = startApp.set({
  146. "action":"ACTION_VIEW",
  147. "category":"CATEGORY_DEFAULT",
  148. "type":"text/css",
  149. "package":"com.google.android.apps.maps",
  150. "uri":"https://www.google.com/maps/dir/?api=1&destination="+destination[0]+","+destination[1]+"&travelmode=driving",
  151. "flags":["FLAG_ACTIVITY_CLEAR_TOP","FLAG_ACTIVITY_CLEAR_TASK"],
  152. "intentstart":"startActivity"
  153. });
  154. sApp.start(function() {
  155. }, function(error) { /* fail */
  156. alert(error);
  157. });
  158. }
  159. function goGugeBrowser(){//指定起点、终点经纬度
  160. //window.location.href="https://www.google.com/maps/dir/?api=1&origin=Space+Needle+Seattle+WA&destination=Pike+Place+Market+Seattle+WA&travelmode=bicycling";
  161. // window.location.href="https://www.google.com/maps/dir/?api=1&destination=39.9761,116.3282&travelmode=driving";
  162. window.location.href="https://www.google.com/maps/dir/?api=1&origin="+origin[0]+","+origin[1]+"&destination="+destination[0]+","+destination[1]+"&travelmode=driving";
  163. }
  164. },
  165. reload:function(pageinfo){
  166. console.log('testsfadfasd')
  167. }
  168. };
  169. return page;
  170. })();