我需要在我的android应用程序中建立一个方向 1-我从Google API控制台获取新密钥 2-我进行了结算并获得免费试用 3-我按照谷歌开发人员的指示进行操作,但是我遇到了问题 无效的Api密钥,我注意到我的工作中缺少一部分,这是Google指南中的第二步 步骤2:将API密钥添加到您的应用中 加载Directions API时,将下面代码中的YOUR_API_KEY替换为您从上一步获得的API密钥 https://maps.googleapis.com/maps/api/directions/json?origin=Toronto&destination=Montreal&key=YOUR_API_KEY 但我不知道将这段代码放在哪里? 最后这是我的全部代码:
DateTime now = new DateTime();
try {
DirectionsResult result = DirectionsApi.newRequest(getGeoContext())
.mode(TravelMode.DRIVING).origin(String.valueOf(userLocation))
.destination(String.valueOf(sydney)).departureTime(now)
.await();
addMarkersToMap(result,mMap);
addPolyline(result,mMap);
} catch (ApiException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
private GeoApiContext getGeoContext() {
GeoApiContext geoApiContext = new GeoApiContext();
return geoApiContext.setQueryRateLimit(3)
.setApiKey("@string/google_maps_key")
.setConnectTimeout(1, TimeUnit.SECONDS)
.setReadTimeout(1, TimeUnit.SECONDS)
.setWriteTimeout(1, TimeUnit.SECONDS);
}
private void addMarkersToMap(DirectionsResult results, GoogleMap mMap) {
mMap.addMarker(new MarkerOptions().position(new LatLng(results.routes[0].legs[0].startLocation.lat,results.routes[0].legs[0].startLocation.lng)).title(results.routes[0].legs[0].startAddress));
mMap.addMarker(new MarkerOptions().position(new LatLng(results.routes[0].legs[0].endLocation.lat,results.routes[0].legs[0].endLocation.lng)).title(results.routes[0].legs[0].startAddress)
.snippet(getEndLocationTitle(results)));
}
private void addPolyline(DirectionsResult results, GoogleMap mMap) {
List<LatLng> decodedPath = PolyUtil.decode(results.routes[0].overviewPolyline.getEncodedPath());
mMap.addPolyline(new PolylineOptions().addAll(decodedPath));
}
private String getEndLocationTitle(DirectionsResult results){
return "Time :"+ results.routes[0].legs[0].duration.humanReadable + " Distance :" + results.routes[0].legs[0].distance.humanReadable; }
答案 0 :(得分:0)
您将Google Directions的Javascript API与使用的Android Map SDK搞混了。
在此处签出文档:https://developers.google.com/maps/documentation/android-sdk/signup
在AndroidManifest.xml中,通过将以下元素插入到结束标记之前,将其添加为该元素的子元素:
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="YOUR_API_KEY"/>
答案 1 :(得分:0)
[已解决] 这就是原因
.setApiKey("@string/google_maps_key")
将其作为字符串而不是Google api密钥 所以