マップ上に表示するためにGoogleマップのジオコードアドレスを使用しています。私は各アドレスをループし、jquery経由でコールバックを介して応答を処理しています。コールバックからオブジェクトを特定する
どのようにコールバックからのアイテムを特定できますか?
var geocoder = new google.maps.Geocoder();
geocoder.geocode({ 'address': addr }, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
var marker = new google.maps.Marker({ position: results[0].geometry.location, map: map, title: "Yo Homie" });
// I need to find the item to setup the infowindow
bounds.extend(results[0].geometry.location);
map.fitBounds(bounds);
}
else {
// eat it like a mexican jumping bean
}
});