If I enter into the field for example "New York". It returns to me in the results some kind of incomprehensible place found in Italy ("Via Pisa, 250, 20099 Sesto San Giovanni MI, Italy"). In this case, I need what would the result be 0. Someone knows how to fix?

var geocoder = new window.google.maps.Geocoder(); geocoder.geocode({ address: 'New Your', componentRestrictions: { country: "IT" }, (results, status) => { if (status === 'OK') { return results; else { return false; } }); 

    0