0
其實我們是用我們的一個應用的谷歌距離矩陣變成一個Android Aplication使用下面的代碼:如何從Android應用程序使用調用谷歌地圖距離矩陣API Android的關鍵
String url = "https://maps.googleapis.com/maps/api/distancematrix/json?"
+ "origins=" + start.latitude + "," + start.longitude
+ "&destinations=" +waypoints+"&sensor=false&mode=driving&key=GOOGLE_key";
HttpClient httpClient = new DefaultHttpClient();
HttpContext localContext = new BasicHttpContext();
HttpGet httpGet = new HttpGet(url);
HttpResponse response = httpClient.execute(httpGet, localContext);
.........
......
...
我們必須將服務器密鑰放在API url的關鍵參數中,而不是android密鑰,但是它會針對特定的ip方向重新分配。
我們想要使用android密鑰調用API,請有人對如何歸檔這個有任何想法嗎?
您可以在'google developer console'中爲您的項目創建'Android key',然後放入'android key'而不是'server key'。有關更多詳細信息,請參閱[這裏](https://developers.google.com/maps/documentation/android/start#get_an_android_api_key)。 – bjiang