我正在尝试通过位于另一个信息窗口中的按钮打开一个信息窗口。
我制作了按钮,但我需要帮助来创建触发器或事件来做到这一点。
按钮:
<input name="enviar" type="submit" id="form1" value="Reservar"/>
通过单击标记打开信息窗口的代码,我需要通过单击按钮打开它。请帮忙。
var form = new google.maps.Marker({
map: map,
position: myLatLng,
draggable: true,
icon: icon
});
google.maps.event.addListener(form, 'click', showform);
infoWindow = new google.maps.InfoWindow();
function showform(event) {
var contentString = '<div style="width:160px;height:140px;"> <b>LOTE 1</b> <img src="img/terreno1.png" width="113" height="72" /> <br>450m²<br> <p style="color:#F00;"> Indisponível </p></div>';
infoWindow.setContent(contentString);
infoWindow.setPosition(event.latLng);
infoWindow.open(map);
}