Google autocomplete doesn’t show results

I’m having this issue with a google places input. Results seem to be coming back from Google but not producing the dropdown

<input id="text4" name="text4" type="text" class="form-control" is="dmx-google-autocomplete" types="address" country="GB">

image

Nothing produced:
image

Did anyone get it working?

Yes, I have this working. Maybe duplicate element id values are confusing things? Dev console errors?

Thanks Ken. I completely randomised the ID to rule out a clash and it still doesn’t work - no errors in Console either :man_shrugging:

I had the same issue. However, my form was in a modal, so I needed to change the z-index of the pac-container and it worked.

.pac-container {
    z-index: 2000 !important;
}