私はこれで苦労しています。これは私が働いているコードです:
http://jsfiddle.net/arunpjohny/Jfdbz/
$(function () {
var lastQuery = null,
lastResult = null, // new!
autocomplete,
processLocation = function (input, lat, long, callback) { // accept a callback argument
var query = $.trim(input.val()),
geocoder;
// if query is empty or the same as last time...
if (!query || query === lastQuery) {
if (callback) {
callback(lastResult); // send the same result as before
}
return; // and stop here
}
lastQuery = query; // store for next time
geocoder = new google.maps.Geocoder();
geocoder.geocode({address: query}, function (results, status) {
if (status === google.maps.GeocoderStatus.OK) {
lat.val(results[0].geometry.location.lat());
long.val(results[0].geometry.location.lng());
lastResult = true; // success!
} else {
alert("Sorry - We couldn't find this location. Please try an alternative");
lastResult = false; // failure!
}
if (callback) {
callback(lastResult); // send the result back
}
});
},
ctryiso = $("#ctry").val(),
options = {
types: ["geocode"]
};
if (ctryiso !== '') {
options.componentRestrictions= { 'country': ctryiso };
}
autocomplete = new google.maps.places.Autocomplete($("#loc")[0], options);
google.maps.event.addListener(autocomplete, 'place_changed', processLocation);
$('#search').click(function (e) {
var form = $(this).closest('form'),
input = $("#loc"),
lat = $("#lat"),
lng = $("#lng");
e.preventDefault(); // stop the submission
processLocation(input, lat, lng, function (success) {
if (success) { // if the geocoding succeeded, submit the form
form.submit();
}
});
});
$('#geosearch').click(function (e) {
var form = $(this).closest('form'),
input = $("#geoloc"),
lat = $("#geolat"),
lng = $("#geolng");
e.preventDefault(); // stop the submission
processLocation(input, lat, lng);
});
});
自動提案リンクをクリックすると、最初と 2 番目の例の結果がジオコーディングされます。ただし、ドロップダウンから autosuggest オプションをクリックすると、39 行目に次のエラーが表示されます。
キャッチされていない TypeError: 未定義のメソッド 'val' を呼び出せません
ここで私が間違っている場所を特定するのを手伝ってくれる人はいますか?
編集:複製するには、次のことを行います。
- Chrome で JavaScript コンソールを開く
- 一番上の行の場所ボックスに数文字を入力します
- ドロップダウンから提案された場所をクリックします
どうやら私の編集者によると、39行目は次のように言っています。
if (ctryiso !== '') {