Javadocs
After deployment, Javadocs are included under the sdk/javadoc folder. This is a complete reference for the Java packages and classes provided with the Spectrum Global Geocoding SDK. We have also posted them to our Support Site.
A code snippet to get you started:
GeocodingConfiguration configuration = new ConfigurationBuilder() .setConfigurationLocation(Paths.get("/dist/resources/config")) .setNativeBinariesLocation(Paths.get("/dist/resources/bin/linux64")) .setResolveClassPathConfig(false) .build(); GeocodingAPI geocoder = new Geocoder(configuration); Response response = geocoder.geocode(...);