Javadocs

After deployment, Javadocs are included in the Geocoding REST API under the sdk/javadoc folder. This is a complete reference for the Java packages and classes provided with the Spectrum Global Geocoding SDK.

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(...);