我是Android开发的初学者,我尝试开发一个Android应用程序,其中我想要GEOFence的路径。假设我使用谷歌方向api和创建路径A到B. 我将该路径分配给驱动程序以遵循该路径。如果驱动程序不遵循该路径,则会收到警报消息并向他显示正确的路径。我没有得到任何正确的示例或想法我怎么做。请帮我解决问题一些好例子的问题 这是我用于为Google Directions api创建从源到目标的折线的代码。
MainActivity.XML
public String getDirectionsUrl(LatLng origin, LatLng dest) {
// Origin of route
String str_origin = "origin=" + origin.latitude + "," + origin.longitude;
// Destination of route
String str_dest = "destination=" + dest.latitude + "," + dest.longitude;
// Sensor enabled
String sensor = "sensor=false";
// Building the parameters to the web service
String parameters =str_origin+"&"+"waypoints=optimize:true|"+"&"+"alternatives=true"+"&"+str_dest+" &"+sensor+"&"+"mode=Driving"+"&"+"key=AIzaSyBM9huE4dOMUE_tBHNaibKd_8nOexVCnag";
// Output format
String output = "json";
// Building the url to the web service
String url = "https://maps.googleapis.com/maps/api/directions/" + output + "?" + parameters;
return url;
}