Salesforce Lightning Web Component

Salesforce

How to search Address from Google using LWC in Salesforce and save it to the record?

HTML: <template> <div class="slds-box slds-theme--default"> <lightning-record-edit-form record-id={recordId} object-api-name={objectAPIName} onsuccess={handleSuccess} onsubmit={handleSubmit}> <lightning-messages> </lightning-messages> <lightning-input-address address-label="Address" street-label="Street" city-label="City" country-label="Country" province-label="State/ Province" postal-code-label="Zip/ Postal Code" onchange={addressInputChange} show-address-lookup> </lightning-input-address> <lightning-button class="slds-m-top_small" type="submit" label="Update Address"> ....