Test Map
Feb-2024
Address Selection
*/
{
const place = autocomplete.getPlace();
if (!place.geometry) {
// User entered the name of a Place that was not suggested and
// pressed the Enter key, or the Place Details request failed.
window.alert(`No details available for input: '${place.name}'`);
return;
}
renderAddress(place, map, marker);
fillInAddress(place);
});
}
//-->
Checkout
Address Selection