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:
| Attribute | Examples | Description |
| address_1 | address_1="text_123" | Name of the input that will get auto-filled with the address line 1. Optional. |
| address_2 | address_2="text_123" | Name of the input that will get auto-filled with the address line 2. Optional. |
| city | city="text_123" | Name of the input that will get auto-filled with the city. Optional. |
| region | region="text_123" | Name of the input that will get auto-filled with the region. Optional. |
| state | state="text_123" | Name of the input that will get auto-filled with the state. Optional. |
| zip | zip="text_123" | Name of the input that will get auto-filled with the ZIP code. Optional. |
| country | country="text_123" | Name of the input that will get auto-filled with the country. Optional. |
| latitude | latitude="text_123" | Name of the input that will get auto-filled with the latitude. Optional. |
| longitude | longitude="text_123" | Name of the input that will get auto-filled with the longitude. Optional. |
| coordinates | coordinates="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.