| options | Object | This is an object literal that specifies the Address options. It can have the following properties.
 
 id {String} Optional. The id field is used to uniquelydistinguish an address in a batch geocoding request. It is optional
 when geocoding a single address.
 
country {String}. specify the 2-letter country ISO code; thedefault value for “country” is always “US”
 
name {String} Place name.
street {String} Street address.
intersectingStreet {String} Intersecting street names.
subArea {String} Name of a sub-area within a city; big European cities may be divided into multiple smaller districts.
city {String} City name.
region {String} Region(state/province) name.
postalCode {String} Postal code.
postalAddonCode {String} Postal add-on code.
 for example an option object:
 {
 id:"1",
 street:"1 Oracle Drive",
 city:"Nashua",
 region:"NH",
 postalCode:"03062",
 country:"US"
 }
 |