Я получаю следующую ошибку:
Uncaught Error: Invalid value for property <address>:
Ниже приведен код, который выполняет геокодирование:
function codeAddress(zipcode){
var address = zipcode;
alert("Address is: " +address);
geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
} else {
alert("Geocode was not successful for the following reason: " + status);
}
});
}
Функция принимает параметр zipcode из следующего кода:
<input type="button" value="Geocode" onclick="codeAddress(<%=resultset.getString(3)%>)">
Пожалуйста, помогите мне в этом.