- Home >
- Documentation >
- data types >
- address
address
Automatic address resolution
Most functions automatically solve address throught address parameter instead of using latLng.
For example, the function marker use a latLng to position a new marker, it is possible to use an address instead of the latLng.
The address will be automatically converted in a latLng.
Please notice that the address resolution is asynchronised because of the exchange with the google service.
address
address can be :
- string: the address as string
- GeocoderRequest: a complete google object
$("#test").gmap3({ marker:{ address: "Haltern am See, Weseler Str. 151" }, map:{ options:{ zoom: 14 } } });