ALKMaps.Address

Intances of this class represent address.

Possible use case

address = new ALKMaps.Address ({
    streetAddress: "1 Kenilworth Court",
    city: "Cincinnati",
    state: "OH",
    zip: "45246",
    country: "United States"
});
Summary
ALKMaps.AddressIntances of this class represent address.
Properties
streetAddress{String} Gets or sets the house number and/or street name.
city{String} Gets or sets the city.
state
zip{String} Gets or sets the zip or postal code.
country{String} Gets or sets the country.
Constructor
ALKMaps.AddressConstruct a new address object.

Properties

streetAddress

{String} Gets or sets the house number and/or street name.

city

{String} Gets or sets the city.

state

{String} Gets or sets the state abbreviation when inside of North America or Oceania (except WorldWide data), otherwise contains the country abbreviation.  NJfor New Jersey within North America; FR for France in the EU region

zip

{String} Gets or sets the zip or postal code.

country

{String} Gets or sets the country.  Supply EM for Mexico when using the NA region.

Constructor

ALKMaps.Address

Construct a new address object.

Parameters (single argument)

params{Object} {streetAddress: “”, city: “”, state: “”, zip: “”, country: “”}
Close