在谷歌地图方向app中,用户只能看到源到目的地实时路线图。是否可以使用android显示源到目的地的实时方向?我是android的新手,我需要一些链接才能继续。我试过谷歌地图方向api但失败了
答案 0 :(得分:0)
是的,这可以通过使用Google Map(Direction)APi for android来实现。 首先请关注以下链接:
之后,当您可以从Google Direction Api获得两点(来源和目的地)时的响应。 以下是用于获取Poly Lines的代码段:
public static ArrayList<LatLng> decodePoly(String encoded) {
ArrayList<LatLng> poly = new ArrayList<LatLng>();
try {
int index = 0, len = encoded.length();
int lat = 0, lng = 0;
while (index < len) {
int b, shift = 0, result = 0;
do {
b = encoded.charAt(index++) - 63;
result |= (b & 0x1f) << shift;
shift += 5;
} while (b >= 0x20);
int dlat = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
lat += dlat;
shift = 0;
result = 0;
do {
b = encoded.charAt(index++) - 63;
result |= (b & 0x1f) << shift;
shift += 5;
} while (b >= 0x20);
int dlng = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
lng += dlng;
LatLng p = new LatLng((((double) lat / 1E5)), (((double) lng / 1E5)));
poly.add(p);
}
} catch (Exception e) {
//Just toUser avoid crash
LogUtils.LOGE("Exception", "In Valid POINTS", e);
}
return poly;
}