1👍
✅
Turns out you can NOT rename the address form components. (I had renamed ‘locality
‘ to be ‘city
‘ and ‘administrative_area_level_1
‘ to be ‘state
.’) I’m so new to this; I had no idea! I just thought that the variable names in the javascript had to match your input id’s in your HTML. Turns out the address form components have to stay:
street_number: 'short_name',
route: 'long_name',
locality: 'long_name',
administrative_area_level_1: 'short_name',
country: 'long_name',
postal_code: 'short_name'
Source:stackexchange.com