Table of Contents

Class GeocodeOptionsBase

Namespace
Textkernel.Tx.Models.API.Geocoding
Assembly
Textkernel.Tx.SDK.dll

Options for geocoding a document (specifying some location on Earth)

public class GeocodeOptionsBase : GeocodeCredentials
Inheritance
GeocodeOptionsBase
Derived
Inherited Members

Properties

GeoCoordinates

The geographic coordinates (latitude/longitude) for your postal address. Use this if you already have latitude/longitude coordinates and simply wish to add them to your parsed document. If provided, these values will be inserted into your parsed document and the address included in the parsed document (if present), will not be modified.

public GeoCoordinates GeoCoordinates { get; set; }

Property Value

GeoCoordinates

PostalAddress

The address you wish to geocode. This field is optional. If you specify this value, this address will be used to get the geocode coordinates instead of the address included in the parsed document (if present); however, the address in the parsed document will not be modified.

public Address PostalAddress { get; set; }

Property Value

Address