use of ol.control.FullScreen in project gwt-ol3 by TDesjardins.
the class DemoUtils method addDefaultControls.
/**
* Creates some default controls.
*
* @param controls
*/
public static void addDefaultControls(final Collection<Control> controls) {
controls.push(new FullScreen());
controls.push(new ZoomSlider());
MousePosition mousePosition = new MousePosition();
mousePosition.setCoordinateFormat(Coordinate.createStringXY(5));
controls.push(mousePosition);
controls.push(new ZoomToExtent());
}
Aggregations