以下は、公式のAPIに基づいたマップマーカーのコードで 、何らかの理由でマーカーをクリックしても情報ウィンドウが開きません。何か案は?私は何か間違ったことをしていますか?
var marker = new google.maps.Marker({
position: latlng,
map: map,
title: "You are here! (at least within a " + position.coords.accuracy + " meter radius)"
});
var contentString = 'test';
var infoWindow = new google.maps.InfoWindow({
content: contentString
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map, marker);
});