[address_autocomplete] – Address Autocomplete Field

[address_autocomplete name="your_address" address_1="" address_2="" city="" region="" state="" zip="" country="" latitude="" longitude="" coordinates=""]

Address autocomplete field can work as an address search field and also can auto-fill other fields with the address details.

Example adding an address search field:
[address_autocomplete name="your_address"]

Example adding an address search field and autofill a text field with the address line 1:
[address_autocomplete name="your_address" address_1="your_text"]
[text name="your_text" label="Address Line 1"]

Attributes:

AttributeExamplesDescription
address_1address_1="text_123"Name of the input that will get auto-filled with the address line 1.
Optional.
address_2address_2="text_123"Name of the input that will get auto-filled with the address line 2.
Optional.
citycity="text_123"Name of the input that will get auto-filled with the city.
Optional.
regionregion="text_123"Name of the input that will get auto-filled with the region.
Optional.
statestate="text_123"Name of the input that will get auto-filled with the state.
Optional.
zipzip="text_123"Name of the input that will get auto-filled with the ZIP code.
Optional.
countrycountry="text_123"Name of the input that will get auto-filled with the country.
Optional.
latitudelatitude="text_123"Name of the input that will get auto-filled with the latitude.
Optional.
longitudelongitude="text_123"Name of the input that will get auto-filled with the longitude.
Optional.
coordinatescoordinates="text_123"Name of the input that will get auto-filled with the coordinates. It's a shortcut of "latitude, longitude".
Optional.

This field also supports common HTML attributes, as well as label & description attributes.