Table of Contents

Class Location

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

Represents a physical location on Earth (mostly used for addresses)

public class Location
Inheritance
Location
Inherited Members

Properties

CountryCode

The 2-letter ISO 3166 country code

public string CountryCode { get; set; }

Property Value

string

GeoCoordinates

If geocoding has been done, this is the lat/lon for the location

public GeocodedCoordinates GeoCoordinates { get; set; }

Property Value

GeocodedCoordinates

Municipality

The City/Municipality/Town

public string Municipality { get; set; }

Property Value

string

PostalCode

The Postal or Zip code

public string PostalCode { get; set; }

Property Value

string

Regions

The Regions/Districts/States

public List<string> Regions { get; set; }

Property Value

List<string>

StreetAddressLines

Street address lines

public List<string> StreetAddressLines { get; set; }

Property Value

List<string>