我使用Google地图javascript API v3,phonegap 2.6.0,Jquery mobile 1.2.0创建了一个应用程序。在这个应用程序中,我使用Google方向服务显示医院列表及其在用户当前位置和医院之间的期望距离和持续时间(也尝试使用距离矩阵服务)。此应用程序在2.2&姜鸟(三星2.3.6)。但是,当我试图在Android冰淇淋sandwhich&果冻豆(Nexus 7,Micromax 4.1,Lg Optimus 4.0,HTC欲望4.0.3),它不起作用。当我调试我的应用程序时,我会在弹出Google方向服务对象之前显示警告声明,但是在没有弹出Google方向服务警报之后。所以我的问题是谷歌方向服务或距离矩阵服务是否正常工作在果冻豆&三明治版。我只是使用带有距离&的jquery移动列表视图来显示记录。持续时间。
请给我正确的指导,以便我的应用程序适用于更高版本。
这是我的代码..
alert('start route'); <----pop up
var directionsService = new google.maps.DirectionsService();
var request = {
origin : new google.maps.LatLng(cLat, cLng),
destination : new google.maps.LatLng(destination_lat, destination_long),
travelMode : google.maps.DirectionsTravelMode.DRIVING
};
alert('end route'); <----Not pop up
或
alert('start route');<----pop up
var Service = new google.maps.DistanceMatrixService();
var request = {
origin : new google.maps.LatLng(cLat, cLng),
destination : new google.maps.LatLng(destination_lat, destination_long),
travelMode : google.maps.DirectionsTravelMode.DRIVING
};`enter code here`
alert('end route');<----Not pop up
此致 阿玛尔帕特尔