在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:googlemaps/google-maps-services-java开源软件地址:https://github.com/googlemaps/google-maps-services-java开源编程语言:Java 100.0%开源软件介绍:Java Client for Google Maps ServicesDescriptionUse Java? Want to geocode something? Looking for directions? Maybe matrices of directions? This library brings the Google Maps API Web Services to your server-side Java application. The Java Client for Google Maps Services is a Java Client library for the following Google Maps APIs:
Keep in mind that the same terms and conditions apply to usage of the APIs when they're accessed through this library. Requirements
API keysEach Google Maps Web Service request requires an API key. API keys are generated in the 'Credentials' page of the 'APIs & Services' tab of Google Cloud console. For even more information on getting started with Google Maps Platform and generating an API key, see Get Started with Google Maps Platform in our docs. API Key SecurityThe Java Client for Google Maps Services is designed for use in both server and Android applications. In either case, it is important to add API key restrictions to improve the security of your API key. Additional security measures, such as hiding your key from version control, should also be put in place to further improve the security of your API key. You can refer to API Security Best Practices to learn more about this topic. NOTE: If you are using this library on Android, ensure that your application is using at least version 0.19.0 of this library so that API key restrictions can be enforced. InstallationYou can add the library to your project via Maven or Gradle. Note: Since 0.1.18 there is now a dependency on SLF4J. You need to add
one of the adapter dependencies that makes sense for your logging setup. In the configuration
samples below we are integrating
slf4j-nop,
but there are others like
slf4j-log4j12
and slf4j-jdk14
that will make more sense in other configurations. This will stop a warning message being emitted
when you start using Maven<dependency>
<groupId>com.google.maps</groupId>
<artifactId>google-maps-services</artifactId>
<version>(insert latest version)</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.25</version>
</dependency> Gradlerepositories {
mavenCentral()
}
dependencies {
implementation 'com.google.maps:google-maps-services:(insert latest version)'
implementation 'org.slf4j:slf4j-simple:1.7.25'
} You can find the latest version at the top of this README or by searching Maven Central. Developer DocumentationView the javadoc. Additional documentation for the included web services is available at https://developers.google.com/maps/.
UsageThis example uses the Geocoding API with an API key: GeoApiContext context = new GeoApiContext.Builder()
.apiKey("AIza...")
.build();
GeocodingResult[] results = GeocodingApi.geocode(context,
"1600 Amphitheatre Parkway Mountain View, CA 94043").await();
Gson gson = new GsonBuilder().setPrettyPrinting().create();
System.out.println(gson.toJson(results[0].addressComponents));
// Invoke .shutdown() after your application is done making requests
context.shutdown(); Note: The At the end of the execution, call the For more usage examples, check out the tests. FeaturesGoogle App Engine SupportTo use Google App Engine with this client library add the latest App Engine dependency
to your dependencies {
implementation 'com.google.appengine:appengine-api-1.0-sdk:<latest version>'
} You can then use this client library on Google App Engine with the following code change: new GeoApiContext.Builder(new GaeRequestHandler.Builder())
.apiKey("AIza...")
.build(); The Rate LimitingNever sleep between requests again! By default, requests are sent at the expected rate limits for
each web service, typically 50 queries per second for free users. If you want to speed up or slow
down requests, you can do that too, using Retry on FailureAutomatically retry when intermittent failures occur. That is, when any of the retriable 5xx errors are returned from the API. To alter or disable automatic retries, see these methods in
POJOsNative objects for each of the API responses. Asynchronous or synchronous -- you chooseAll requests support synchronous or asynchronous calling style. GeocodingApiRequest req = GeocodingApi.newRequest(context).address("Sydney");
// Synchronous
try {
req.await();
// Handle successful request.
} catch (Exception e) {
// Handle error
}
req.awaitIgnoreError(); // No checked exception.
// Async
req.setCallback(new PendingResult.Callback<GeocodingResult[]>() {
@Override
public void onResult(GeocodingResult[] result) {
// Handle successful request.
}
@Override
public void onFailure(Throwable e) {
// Handle error.
}
}); Building the ProjectNote: You will need an API key or Client ID to run the tests.
SupportThis library is community supported. We're comfortable enough with the stability and features of the library that we want you to build real production applications on it. We will try to support, through Stack Overflow, the public and protected surface of the library and maintain backwards compatibility in the future; however, while the library is in version 0.x, we reserve the right to make backwards-incompatible changes. If we do remove some functionality (typically because better functionality exists or if the feature proved infeasible), our intention is to deprecate and give developers a year to update their code. If you find a bug, or have a feature suggestion, please log an issue. If you'd like to contribute, please read How to Contribute. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论