org.wicketstuff.openlayers.api.PopupWindowPanel Maven / Gradle / Ivy
package org.wicketstuff.openlayers.api;
import org.apache.wicket.markup.html.panel.Panel;
import org.apache.wicket.Component;
/**
* A popup for your marker, please extend this if you want poups..
* @author Nino Martinez Wael ([email protected])
*
*/
public class PopupWindowPanel extends Panel {
private final static String markupId="content";
public PopupWindowPanel() {
super(markupId);
setOutputMarkupId(true);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy