-1
GWTマップv2 InfoWindow
はInfoWindowContent
でした。 GWTマップv3 InfoWindow
にはInfoWindowContent
がありません。私はこのコードを発見したが、クリックハンドラが動作していません。GWTマップv3クリックハンドラがInfoWindowで動作しません
InfoWindow info = new InfoWindow();
VerticalPanel verticalPanel = new VerticalPanel();
Label addressLabel = new Label("Address: " + address);
Label coordinatesLabel = new Label("Position: " + gLatLng.toUrlValue());
verticalPanel.add(addressLabel);
verticalPanel.add(coordinatesLabel);
HorizontalPanel horizontalPanel = new HorizontalPanel();
Button newAsociation = new Button("Add house");
Button deleteMarker = new Button("Delete");
newAsociation.addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
System.out.println("Add house");
}
});
horizontalPanel.add(newAsociation);
horizontalPanel.add(deleteMarker);
verticalPanel.add(horizontalPanel);
info.setContent(verticalPanel.getElement().toString());
info.open(mapWidget.getMap(), marker);
私はそれをどのように修正すればよいですか?
どのgwtマップライブラリを使用していますか? –