Javadocs - geo_addressing_sdk - 5.0

Geo Addressing SDK Developer Guide

Product type
Software
Portfolio
Locate
Product family
Geo Addressing
Product
Geo Addressing SDK
Version
5.0
Language
English
Product name
Geo Addressing SDK
Title
Geo Addressing SDK Developer Guide
Copyright
2023
First publish date
2007
Last updated
2024-10-17
Published on
2024-10-17T16:12:58.390251

After deployment, Javadocs are included under the sdk/javadoc folder. This is a complete reference for the Java packages and classes provided with the Geo Addressing 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(...);