我正在尝试制作一个位于信息窗口内的按钮,打开另一个具有不同内容的信息窗口,我已经将按钮放在了信息窗口内。我只需要让按钮打开另一个信息窗口。
var marker = new google.maps.Marker({
map: map,
position: new google.maps.LatLng(-8.729981,-63.878333),
icon: predio});
var contentimage = '</br> <input type="button" id="btn1" value="Fotos"/></div><</div><div><img src="images/gardenclub.png" width="460" height="240"/>'
var infowindow = new google.maps.InfoWindow({
content:contentimage
})
google.maps.event.addListener(marker,'click',function(){
infowindow.open(map,marker); });
var btn1=document.getElementById('btn1');
google.maps.event.addDomListener(btn1, 'click', function(){
我被困在这里..
感谢帮助