我正在论文中开发一个Android谷歌地图,我可以问一下Android中的行车路线吗?
这是我的问题。
“当我点击按钮时,如何在Android谷歌地图中生成随机驾驶路线,它将随机提供从起点到目的地的路径。”
谢谢!。
我通过这个问谷歌地图。
private void parsing(GeoPoint start, GeoPoint end) throws ClientProtocolException, IOException, JSONException, URISyntaxException{
HttpClient httpclient = new DefaultHttpClient();
StringBuilder urlstring = new StringBuilder();
urlstring.append("https://maps.googleapis.com/maps/api/directions/json?origin=")
.append(Double.toString((double)start.getLatitudeE6()/1E6)).append(",").append(Double.toString((double)start.getLongitudeE6()/1E6)).append("&destination=")
.append(Double.toString((double)end.getLatitudeE6()/1E6)).append(",").append(Double.toString((double)end.getLongitudeE6()/1E6))
.append("&sensor=false");
//urlstring.append("http://maps.googleapis.com/maps/api/directions/json?origin=Toronto&destination=Montreal&sensor=true");
url = new URI(urlstring.toString());
HttpPost httppost = new HttpPost(url);
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
InputStream is = null;
is = entity.getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
sb.append(reader.readLine() + "\n");
String line = "0";
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
reader.close();
String result = sb.toString();
JSONObject jsonObject = new JSONObject(result);
JSONArray routeArray = jsonObject.getJSONArray("routes");
JSONObject routes = routeArray.getJSONObject(0);
JSONObject overviewPolylines = routes.getJSONObject("overview_polyline");
String encodedString = overviewPolylines.getString("points");
List<GeoPoint> pointToDraw = decodePoly(encodedString);
//Added line:
mv_mapview.getOverlays().add(new RoutePathOverlay(pointToDraw));
}
点击地图。
class MapOverlay extends Overlay {
@Override
public boolean onTap(final GeoPoint p, MapView mapView) {
// TODO Auto-generated method stub
geop_Tpoint = p;
mcon_mapcontrol = mapView.getController();
mcon_mapcontrol.animateTo(p);
mv_mapview.invalidate();
longitude = (int)(p.getLongitudeE6()*1E6);
latitude = (int)(p.getLatitudeE6()*1E6);
new AlertDialog.Builder(ShowMap.this)
.setTitle("Routes")
.setMessage("Display Routes?")
.setNegativeButton("NO",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int which) {
// TODO Auto-generated method stub
textlocation.setText("Tap in the Map for Destination!");
dialog.dismiss();
}
})
.setPositiveButton("YES",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int which) {
// TODO Auto-generated method stub
try{
textlocation.setText("");
parsing(geop_startpoint,geop_Tpoint);
geocodeExecuter(geop_startpoint,geop_Tpoint);
showButton.setEnabled(true);
}catch(Exception e){
textlocation.setText(""+ e.getMessage());
}
}
}).show();
showButton.setEnabled(true);
return true;
}
起点是通过GPS它会给我我的位置。
答案 0 :(得分:5)
这将有助于您获得从A点到B点的路线。
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?saddr=" + startLatitude + "," + startLongitude + "&daddr=" + destlat + "," + destlon));
startActivity(intent);
答案 1 :(得分:0)
这取决于你如何询问谷歌地图的方向。 如果您使用指定源和目标的链接创建意图,您可以尝试调用以下内容:
https://maps.google.com/maps?saddr=START_POINT&daddr=MIDDLE_POINT+to:DESTINATION_POINT
这也接受GPS坐标,所以你也可以这样打电话:
https://maps.google.com/maps?saddr=START_POINT&daddr=XX.YYYYY,WW.ZZZZZ+to:DESTINATION_POINT
如果修复了开始和目标,您可能会尝试执行以下操作:
这应该在A和B之间产生一个随机点。
如果您将中间点放在玉米田中间或类似的地方,Google地图非常智能,可以选择最接近道路的点来生成路线。
更新: 看完代码后: 我认为实现结果的最快方法是找到A和B的GPS位置,然后在两者之间生成一个随机点并进行2次调用:A-RandomPoint B-RandomPoint。
总距离将是A-R旅行和R-B旅行的总和,当时相同。
关于中间点的计算: 第一:设定界限。 如果你想计算X:取点A的X和点B的X. 此时:minX将是最低的,maxX将是最高的(如果你的点接近greenwitch,你可能想仔细考虑你在做什么)。 现在在最大值和最小值之间生成随机浮点数。这是一项微不足道的任务,并且有很多结果。举个例子:How do I generate random integers within a specific range in Java?
答案 2 :(得分:0)
这是我用Java转换它的方式。
public List<GeoPoint> findCoordinatesInACircle(double lat, double longi,double radius){
double newLat;
double newLong;
List<GeoPoint> searchpoints = new ArrayList<GeoPoint>();
double rLat=(radius/6371)*(180/Math.PI);
double rLon= rLat/Math.cos(longi * (Math.PI/180));
for(int i =0 ; i < 181; i++ ){
double iRad = i*(Math.PI/180);
newLat = lat + (rLat * Math.sin(iRad));
newLong = longi + (rLon * Math.cos(iRad));
GeoPoint onePoint = new GeoPoint((int)(float)(newLat),(int)(float)(newLong));
if(i%pointInterval == 0){
searchpoints.add(onePoint);
}
}
return searchpoints;
}