GISFaces 0.9.4 has been released and contains the following changes:

  • Add support for map extent event handling via action listener.
  • This allows updated map extent values to be handled and maintained via backing bean.
  • Add new event classes MapSelectionActionEvent and MapExtentActionEvent.
  • Remove event class MapActionEvent.
  • These new events may eventually be exposed via .


public void mapActionListener(ActionEvent event) {
	if (event instanceof MapExtentActionEvent) {
		MapExtentActionEvent e = (MapExtentActionEvent) event;
		this.latitude = e.getLatitude();
		this.longitude = e.getLongitude();
		this.zoom = e.getZoom();
	} else if (event instanceof MapSelectionActionEvent) {
		MapSelectionActionEvent e = (MapSelectionActionEvent) event;
		this.json = e.getJsonAttributes();
	}
}

See the Examples page for code listings and live examples. See the Downloads page for binaries.