Google Maps Infowindow Position

J'ai un problème avec ce code, lorsque je clique sur un marqueur, je veux l'infowindow pour ouvrir à la position du marqueur.

Quand je clique sur chaque marqueur ils sont tous sur la même position.

code:

App.map = function (data, cb) {
App.getData(App.config.LFMurl(), function (data) {
App.processData(data, function(arr){      
var mapOptions = {
zoom: 12,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions)
if(navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
var pos = new google.maps.LatLng(position.coords.latitude,
position.coords.longitude)
var marker
$.each(arr, function (index, item) {            
marker = new google.maps.Marker({
position: new google.maps.LatLng(item.lat, item.long),
map: map,              
animation: google.maps.Animation.DROP        
})
google.maps.event.addListener(marker, 'click', function(){                            
var infowindow = new google.maps.InfoWindow({                
map: map,
position: new google.maps.LatLng(item.lat, item.long),                                
content: item.title
})
infowindow.open(map, this)
console.log(item.artist)              
})
}) 
map.setCenter(pos)
}, function() {
handleNoGeolocation(true)          
})
} else {      
handleNoGeolocation(false) //Browser som inte stödjer geolocation
}
})
})
}
InformationsquelleAutor anderskristo | 2013-04-30