Geocoder

Geocoder class

google.maps.Geocoder class

A service for converting between an address and aLatLng.

Access by callingconst {Geocoder} = await google.maps.importLibrary( "geocoding" ).SeeLibraries in the Maps JavaScript API.

Geocoder
Geocoder()
Parameters:None
Creates a new instance of aGeocoderthat sends geocode requests to Google servers.
geocode
geocode(request[, callback])
Parameters:
Geocode a request.

GeocoderRequest interface

google.maps.GeocoderRequest interface

The specification for a geocoding request to be sent to theGeocoder.

addressoptional
Type:stringoptional
Address to geocode. One, and only one, ofaddress,locationandplaceIdmust be supplied.
boundsoptional
LatLngBoundswithin which to search. Optional.
componentRestrictionsoptional
Components are used to restrict results to a specific area. A filter consists of one or more of:route,locality,administrativeArea,postalCode,country.Only the results that match all the filters will be returned. Filter values support the same methods of spelling correction and partial matching as other geocoding requests. Optional.
BetaextraComputationsoptional
A list of extra computations which may be used to complete the request. Note: These extra computations may return extra fields on the response.
fulfillOnZeroResultsoptional
Type:booleanoptional
Fulfill the promise on a ZERO_RESULT status in the response. This may be desired because even with zero geocoding results there may still be additional response level fields returned.
languageoptional
Type:stringoptional
A language identifier for the language in which results should be returned, when possible. See thelist of supported languages.
locationoptional
Type:LatLng|LatLngLiteraloptional
LatLng(orLatLngLiteral) for which to search. The geocoder performs a reverse geocode. SeeReverse Geocodingfor more information. One, and only one, ofaddress,locationandplaceIdmust be supplied.
placeIdoptional
Type:stringoptional
The place ID associated with the location. Place IDs uniquely identify a place in the Google Places database and on Google Maps. Learn more aboutplace IDsin the Places API developer guide. The geocoder performs a reverse geocode. SeeReverse Geocodingfor more information. One, and only one, ofaddress,locationandplaceIdmust be supplied.
regionoptional
Type:stringoptional
Country code used to bias the search, specified as a two-character (non-numeric) Unicode region subtag / CLDR identifier. Optional. SeeGoogle Maps Platform Coverage Detailsfor supported regions.

GeocoderComponentRestrictions interface

google.maps.GeocoderComponentRestrictions interface

GeocoderComponentRestrictionsrepresents a set of filters that resolve to a specific area. For details on how this works, seeGeocoding Component Filtering.

administrativeAreaoptional
Type:stringoptional
Matches all theadministrative_area levels.Optional.
countryoptional
Type:stringoptional
Matches a country name or a two letter ISO 3166-1 country code. Optional.
localityoptional
Type:stringoptional
Matches against bothlocalityandsublocalitytypes. Optional.
postalCodeoptional
Type:stringoptional
Matchespostal_codeandpostal_code_prefix.Optional.
routeoptional
Type:stringoptional
Matches the long or short name of aroute.Optional.

ExtraGeocodeComputation constants

google.maps.ExtraGeocodeComputation constants

Extra computations to perform while completing a geocoding request.

Access by callingconst {ExtraGeocodeComputation} = await google.maps.importLibrary( "geocoding" ).SeeLibraries in the Maps JavaScript API.

ADDRESS_DESCRIPTORS Generate an address descriptor.

GeocoderStatus constants

google.maps.GeocoderStatus constants

The status returned by theGeocoderon the completion of a call togeocode().Specify these by value, or by using the constant's name. For example,'OK'orgoogle.maps.GeocoderStatus.OK.

Access by callingconst {GeocoderStatus} = await google.maps.importLibrary( "geocoding" ).SeeLibraries in the Maps JavaScript API.

ERROR There was a problem contacting the Google servers.
INVALID_REQUEST ThisGeocoderRequestwas invalid.
OK The response contains a validGeocoderResponse.
OVER_QUERY_LIMIT The webpage has gone over the requests limit in too short a period of time.
REQUEST_DENIED The webpage is not allowed to use the geocoder.
UNKNOWN_ERROR A geocoding request could not be processed due to a server error. The request may succeed if you try again.
ZERO_RESULTS No result was found for thisGeocoderRequest.

GeocoderResponse interface

google.maps.GeocoderResponse interface

A Geocoder response returned by theGeocodercontaining the list ofGeocoderResults.

results
The list ofGeocoderResults.
Betaaddress_descriptoroptional
Type:AddressDescriptoroptional
A relational description of a location. Includes a ranked set of nearby landmarks and the areas containing the target location. It is only populated for reverse geocoding requests and only whenExtraGeocodeComputation.ADDRESS_DESCRIPTORSis enabled.
plus_codeoptional
Type:PlacePlusCodeoptional
The plus code associated with the location.

GeocoderResult interface

google.maps.GeocoderResult interface

A single geocoder result retrieved from the geocode server. A geocode request may return multiple result objects. Note that though this result is "JSON-like," it is not strictly JSON, as it indirectly includes aLatLngobject.

address_components
An array ofGeocoderAddressComponents
formatted_address
Type:string
A string containing the human-readable address of this location.
geometry
AGeocoderGeometryobject
place_id
Type:string
The place ID associated with the location. Place IDs uniquely identify a place in the Google Places database and on Google Maps. Learn more aboutPlace IDsin the Places API developer guide.
types
Type:Array<string>
An array of strings denoting the type of the returned geocoded element. For a list of possible strings, refer to theAddress Component Typessection of the Developer's Guide.
Betaaddress_descriptoroptional
Type:AddressDescriptoroptional
A relational description of the location associated with this geocode. Includes a ranked set of nearby landmarks and the areas containing the target location. This will only be populated for forward geocoding and place ID lookup requests, only whenExtraGeocodeComputation.ADDRESS_DESCRIPTORSis enabled, and only for certain localized places.
partial_matchoptional
Type:booleanoptional
Whether the geocoder did not return an exact match for the original request, though it was able to match part of the requested address. If an exact match, the value will beundefined.
plus_codeoptional
Type:PlacePlusCodeoptional
The plus code associated with the location.
postcode_localitiesoptional
Type:Array<string>optional
An array of strings denoting all the localities contained in a postal code. This is only present when the result is a postal code that contains multiple localities.

AddressDescriptor interface

google.maps.AddressDescriptor interface

A relational description of a location. Includes a ranked set of nearby landmarks and the areas containing the target location.

areas
Type:Array<Area>
A ranked list of containing or adjacent areas. The most useful (recognizable and precise) areas are ranked first.
landmarks
A ranked list of nearby landmarks. The most useful (recognizable and nearby) landmarks are ranked first.

GeocoderAddressComponent interface

google.maps.GeocoderAddressComponent interface

A single address component within aGeocoderResult.A full address may consist of multiple address components.

long_name
Type:string
The full text of the address component
short_name
Type:string
The abbreviated, short text of the given address component
types
Type:Array<string>
An array of strings denoting the type of this address component. A list of valid types can be foundhere

GeocoderGeometry interface

google.maps.GeocoderGeometry interface

Geometry information about thisGeocoderResult

location
Type:LatLng
The latitude/longitude coordinates of this result
location_type
The type of location returned inlocation
viewport
The bounds of the recommended viewport for displaying thisGeocoderResult
boundsoptional
Type:LatLngBoundsoptional
The precise bounds of thisGeocoderResult,if applicable

GeocoderLocationType constants

google.maps.GeocoderLocationType constants

Describes the type of location returned from a geocode. Specify these by value, or by using the constant's name. For example,'ROOFTOP'orgoogle.maps.GeocoderLocationType.ROOFTOP.

Access by callingconst {GeocoderLocationType} = await google.maps.importLibrary( "geocoding" ).SeeLibraries in the Maps JavaScript API.

APPROXIMATE The returned result is approximate.
GEOMETRIC_CENTER The returned result is the geometric center of a result such a line (e.g. street) or polygon (region).
RANGE_INTERPOLATED The returned result reflects an approximation (usually on a road) interpolated between two precise points (such as intersections). Interpolated results are generally returned when rooftop geocodes are unavailable for a street address.
ROOFTOP The returned result reflects a precise geocode.

Landmark interface

google.maps.Landmark interface

A place that represents a point of reference for the address.

display_name
Type:string
The name for the landmark.
display_name_language_code
Type:string
The language of the name for the landmark.
place_id
Type:string
The Place ID of the underlying establishment serving as the landmark. Can be used to resolve more information about the landmark through Place Details or Place Id Lookup.
spatial_relationship
Defines the spatial relationship between the target location and the landmark.
straight_line_distance_meters
Type:number
The straight line distance between the target location and the landmark.
types
Type:Array<string>
One or more values indicating the type of the returned result. Please seeTypesfor more detail.
travel_distance_metersoptional
Type:numberoptional
The travel distance along the road network between the target location and the landmark. This can be unpopulated if the landmark is disconnected from the part of the road network the target is closest to OR if the target location was not actually considered to be on the road network.

Area interface

google.maps.Area interface

A place that is a small region, such as a neighborhood, sublocality, or large complex that contains the target location.

containment
Defines the spatial relationship between the target location and the area.
display_name
Type:string
The name for the area.
display_name_language_code
Type:string
The language of the name for the area.
place_id
Type:string
The Place ID of the underlying area. Can be used to resolve more information about the area through Place Details or Place ID Lookup.

Containment constants

google.maps.Containment constants

An enum representing the spatial relationship between the area and the target location.

Access by callingconst {Containment} = await google.maps.importLibrary( "geocoding" ).SeeLibraries in the Maps JavaScript API.

NEAR The target location is outside the area region, but close by.
OUTSKIRTS The target location is within the area region, close to the edge.
WITHIN The target location is within the area region, close to the center.

SpatialRelationship constants

google.maps.SpatialRelationship constants

An enum representing the relationship in space between the landmark and the target.

Access by callingconst {SpatialRelationship} = await google.maps.importLibrary( "geocoding" ).SeeLibraries in the Maps JavaScript API.

ACROSS_THE_ROAD The target is directly opposite the landmark on the other side of the road.
AROUND_THE_CORNER Not on the same route as the landmark but a single turn away.
BEHIND Close to the landmark's structure but further away from its access point.
BESIDE The target is directly adjacent to the landmark.
DOWN_THE_ROAD On the same route as the landmark but not besides or across.
NEAR This is the default relationship when nothing more specific below applies.
WITHIN The landmark has a spatial geometry and the target is within its bounds.