geoportal-data-viewer-app/src/main/java/org/gcube/portlets/user/geoportaldataviewer/client/gis/OpenLayerOSM.java

305 lines
12 KiB
Java
Raw Normal View History

2020-10-26 11:01:07 +01:00
package org.gcube.portlets.user.geoportaldataviewer.client.gis;
2020-10-27 16:04:34 +01:00
import java.net.MalformedURLException;
2020-10-26 11:01:07 +01:00
import org.gcube.portlets.user.geoportaldataviewer.client.GeoportalDataViewerConstants;
2020-10-23 18:18:06 +02:00
2020-10-27 10:19:32 +01:00
import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.Element;
import com.google.gwt.user.client.Event;
2020-10-26 17:40:38 +01:00
import ol.Collection;
2020-10-23 18:18:06 +02:00
import ol.Coordinate;
import ol.Map;
2020-10-26 17:40:38 +01:00
import ol.MapBrowserEvent;
2020-10-23 18:18:06 +02:00
import ol.MapOptions;
import ol.OLFactory;
2020-10-26 17:40:38 +01:00
import ol.Overlay;
import ol.OverlayOptions;
2020-10-23 18:18:06 +02:00
import ol.View;
import ol.ViewOptions;
import ol.control.Attribution;
2020-10-26 17:40:38 +01:00
import ol.event.EventListener;
import ol.interaction.Draw;
import ol.interaction.DrawOptions;
import ol.interaction.Extent;
import ol.interaction.ExtentOptions;
import ol.interaction.Interaction;
2020-10-23 18:18:06 +02:00
import ol.interaction.KeyboardPan;
import ol.interaction.KeyboardZoom;
import ol.layer.Image;
import ol.layer.LayerOptions;
import ol.layer.Tile;
import ol.proj.Projection;
import ol.proj.ProjectionOptions;
import ol.source.ImageWms;
import ol.source.ImageWmsOptions;
import ol.source.ImageWmsParams;
import ol.source.Osm;
2020-10-26 17:40:38 +01:00
import ol.source.Vector;
2020-10-23 18:18:06 +02:00
import ol.source.XyzOptions;
2020-10-27 16:04:34 +01:00
// TODO: Auto-generated Javadoc
2020-10-23 18:18:06 +02:00
/**
2020-10-27 16:04:34 +01:00
* The Class OpenLayerOSM.
2020-10-23 18:18:06 +02:00
*
2020-10-27 16:04:34 +01:00
* @author Francesco Mangiacrapa at ISTI-CNR (francesco.mangiacrapa@isti.cnr.it)
*
* Oct 27, 2020
2020-10-23 18:18:06 +02:00
*/
2020-10-27 16:04:34 +01:00
public class OpenLayerOSM {
2020-10-23 18:18:06 +02:00
2020-10-27 16:04:34 +01:00
/** The map. */
2020-10-23 18:18:06 +02:00
private Map map;
2020-10-27 16:04:34 +01:00
/** The view. */
2020-10-23 18:18:06 +02:00
private View view;
2020-10-27 16:04:34 +01:00
/** The view options. */
2020-10-23 18:18:06 +02:00
private ViewOptions viewOptions = OLFactory.createOptions();
2020-10-27 16:04:34 +01:00
/** The projection options. */
2020-10-23 18:18:06 +02:00
private ProjectionOptions projectionOptions = OLFactory.createOptions();
2020-10-26 17:40:38 +01:00
2020-10-27 16:04:34 +01:00
/** The point draw. */
2020-10-26 17:40:38 +01:00
private Draw pointDraw;
2020-10-27 16:04:34 +01:00
/** The popup overlay. */
2020-10-27 10:19:32 +01:00
private Overlay popupOverlay;
2020-10-23 18:18:06 +02:00
2020-10-27 16:04:34 +01:00
/**
* Instantiates a new open layer OSM.
*
* @param divTargetId the div target id
*/
2020-10-23 18:18:06 +02:00
/* (non-Javadoc)
* @see de.desjardins.ol3.demo.client.example.Example#show()
*/
2020-10-27 16:04:34 +01:00
public OpenLayerOSM(String divTargetId) {
2020-10-23 18:18:06 +02:00
// create a OSM-layer
XyzOptions osmSourceOptions = OLFactory.createOptions();
Osm osmSource = new Osm(osmSourceOptions);
LayerOptions osmLayerOptions = OLFactory.createOptions();
osmLayerOptions.setSource(osmSource);
Tile osmLayer = new Tile(osmLayerOptions);
// create a projection
projectionOptions.setCode(GeoportalDataViewerConstants.EPSG_3857);
projectionOptions.setUnits("m");
Projection projection = new Projection(projectionOptions);
viewOptions.setProjection(projection);
2020-10-26 11:01:07 +01:00
viewOptions.setMaxZoom(19);
//viewOptions.setExtent(new Extent(-180, -90, 180, 90));
2020-10-23 18:18:06 +02:00
// create a view
view = new View(viewOptions);
2020-10-26 11:01:07 +01:00
//EPSG_4326_TO_ITALY
Coordinate centerCoordinate = OLFactory.createCoordinate(12.45, 42.98);
2020-10-23 18:18:06 +02:00
Coordinate transformedCenterCoordinate = Projection.transform(centerCoordinate, GeoportalDataViewerConstants.EPSG_4326, GeoportalDataViewerConstants.EPSG_3857);
2020-10-26 11:01:07 +01:00
view.setCenter(transformedCenterCoordinate);
view.setZoom(5);
2020-10-23 18:18:06 +02:00
// create the map
MapOptions mapOptions = OLFactory.createOptions();
mapOptions.setTarget(divTargetId);
mapOptions.setView(view);
map = new Map(mapOptions);
map.addLayer(osmLayer);
//map.addLayer(tileDebugLayer);
// add some controls
map.addControl(OLFactory.createScaleLine());
DemoUtils.addDefaultControls(map.getControls());
Attribution attribution = new Attribution();
attribution.setCollapsed(true);
2020-10-26 17:40:38 +01:00
map.addClickListener(new EventListener<MapBrowserEvent>() {
@Override
public void onEvent(MapBrowserEvent event) {
// TODO Auto-generated method stub
2020-10-27 10:19:32 +01:00
Coordinate coordinate = event.getCoordinate();
if(popupOverlay==null) {
Element elPopup = DOM.getElementById("popup");
popupOverlay = addOverlay(elPopup);
addPopupCloserHandelr(popupOverlay);
}
Element popContent = DOM.getElementById("popup-content");
popContent.setInnerHTML("<p>You clicked here:</p><code>" + coordinate + "</code>");;
popupOverlay.setPosition(coordinate);
2020-10-26 17:40:38 +01:00
}
});
2020-10-23 18:18:06 +02:00
map.addControl(attribution);
// add some interactions
map.addInteraction(new KeyboardPan());
map.addInteraction(new KeyboardZoom());
}
2020-10-27 16:04:34 +01:00
/**
* Adds the popup closer handelr.
*
* @param popupOverlay the popup overlay
*/
2020-10-27 10:19:32 +01:00
private void addPopupCloserHandelr(Overlay popupOverlay) {
Element elPopupCloser = DOM.getElementById("popup-closer");
Event.sinkEvents(elPopupCloser, Event.ONCLICK);
Event.setEventListener(elPopupCloser, new com.google.gwt.user.client.EventListener() {
@Override
public void onBrowserEvent(Event event) {
if (Event.ONCLICK == event.getTypeInt()) {
popupOverlay.setPosition(null);
}
}
});
}
2020-10-27 16:04:34 +01:00
/**
* Handler popu closer.
*
* @param divId the div id
* @param overlayId the overlay id
*/
2020-10-27 10:19:32 +01:00
public static native void handlerPopuCloser(String divId, String overlayId) /*-{
var closer = $doc.getElementById(divId);
var overlay = $doc.getElementById(overlayId);
closer.onclick = function() {
overlay.setPosition(undefined);
closer.blur();
return false;
};
}-*/;
2020-10-27 16:04:34 +01:00
/**
* Adds the WMS layer.
* @throws MalformedURLException
*/
public void addWMSLayer(String mapServerHost, String layerName) {
2020-10-23 18:18:06 +02:00
ImageWmsParams imageWMSParams = OLFactory.createOptions();
2020-10-27 16:04:34 +01:00
imageWMSParams.setLayers(layerName);
2020-10-23 18:18:06 +02:00
ImageWmsOptions imageWMSOptions = OLFactory.createOptions();
2020-10-27 16:04:34 +01:00
imageWMSOptions.setUrl(mapServerHost);
2020-10-23 18:18:06 +02:00
imageWMSOptions.setParams(imageWMSParams);
//imageWMSOptions.setRatio(1.5f);
ImageWms imageWMSSource = new ImageWms(imageWMSOptions);
LayerOptions layerOptions = OLFactory.createOptions();
layerOptions.setSource(imageWMSSource);
Image wmsLayer = new Image(layerOptions);
map.addLayer(wmsLayer);
//https://data.d4science.org/gis-viewer-app/?wmsrequest=https://data.d4science.org/gis-viewer-app/?wmsrequest=https%3A%2F%2Fgeona-proto.d4science.org%2Fgeoserver%2Fconcessioni_conf%2Fwms%3Fservice%3DWMS%26version%3D1.1.0%26request%3DGetMap%26layers%3Dconcessioni_conf%3Acentroids_concessioni%26styles%3D%26bbox%3D8.476%2C39.179%2C17.391%2C45.772%26width%3D768%26height%3D567%26srs%3DEPSG%3A4326%26format%3Dapplication%2Fopenlayers&zoom=6&centermap=12.45%2C42.98https://data.d4science.org/gis-viewer-app/?wmsrequest=https%3A%2F%2Fgeona-proto.d4science.org%2Fgeoserver%2Fconcessioni_conf%2Fwms%3Fservice%3DWMS%26version%3D1.1.0%26request%3DGetMap%26layers%3Dconcessioni_conf%3Acentroids_concessioni%26styles%3D%26bbox%3D8.476%2C39.179%2C17.391%2C45.772%26width%3D768%26height%3D567%26srs%3DEPSG%3A4326%26format%3Dapplication%2Fopenlayers&zoom=6&centermap=12.45%2C42.98https://data.d4science.org/gis-viewer-app/?wmsrequest=https%3A%2F%2Fgeona-proto.d4science.org%2Fgeoserver%2Fconcessioni_conf%2Fwms%3Fservice%3DWMS%26version%3D1.1.0%26request%3DGetMap%26layers%3Dconcessioni_conf%3Acentroids_concessioni%26styles%3D%26bbox%3D8.476%2C39.179%2C17.391%2C45.772%26width%3D768%26height%3D567%26srs%3DEPSG%3A4326%26format%3Dapplication%2Fopenlayers&zoom=6&centermap=12.45%2C42.98https://data.d4science.org/gis-viewer-app/?wmsrequest=https%3A%2F%2Fgeona-proto.d4science.org%2Fgeoserver%2Fconcessioni_conf%2Fwms%3Fservice%3DWMS%26version%3D1.1.0%26request%3DGetMap%26layers%3Dconcessioni_conf%3Acentroids_concessioni%26styles%3D%26bbox%3D8.476%2C39.179%2C17.391%2C45.772%26width%3D768%26height%3D567%26srs%3DEPSG%3A4326%26format%3Dapplication%2Fopenlayers&zoom=6&centermap=12.45%2C42.98https://data.d4science.org/gis-viewer-app/?wmsrequest=https%3A%2F%2Fgeona-proto.d4science.org%2Fgeoserver%2Fconcessioni_conf%2Fwms%3Fservice%3DWMS%26version%3D1.1.0%26request%3DGetMap%26layers%3Dconcessioni_conf%3Acentroids_concessioni%26styles%3D%26bbox%3D8.476%2C39.179%2C17.391%2C45.772%26width%3D768%26height%3D567%26srs%3DEPSG%3A4326%26format%3Dapplication%2Fopenlayers&zoom=6&centermap=12.45%2C42.98https://data.d4science.org/gis-viewer-app/?wmsrequest=https%3A%2F%2Fgeona-proto.d4science.org%2Fgeoserver%2Fconcessioni_conf%2Fwms%3Fservice%3DWMS%26version%3D1.1.0%26request%3DGetMap%26layers%3Dconcessioni_conf%3Acentroids_concessioni%26styles%3D%26bbox%3D8.476%2C39.179%2C17.391%2C45.772%26width%3D768%26height%3D567%26srs%3DEPSG%3A4326%26format%3Dapplication%2Fopenlayers&zoom=6&centermap=12.45%2C42.98https://data.d4science.org/gis-viewer-app/?wmsrequest=https%3A%2F%2Fgeona-proto.d4science.org%2Fgeoserver%2Fconcessioni_conf%2Fwms%3Fservice%3DWMS%26version%3D1.1.0%26request%3DGetMap%26layers%3Dconcessioni_conf%3Acentroids_concessioni%26styles%3D%26bbox%3D8.476%2C39.179%2C17.391%2C45.772%26width%3D768%26height%3D567%26srs%3DEPSG%3A4326%26format%3Dapplication%2Fopenlayers&zoom=6&centermap=12.45%2C42.98https://data.d4science.org/gis-viewer-app/?wmsrequest=https%3A%2F%2Fgeona-proto.d4science.org%2Fgeoserver%2Fconcessioni_conf%2Fwms%3Fservice%3DWMS%26version%3D1.1.0%26request%3DGetMap%26layers%3Dconcessioni_conf%3Acentroids_concessioni%26styles%3D%26bbox%3D8.476%2C39.179%2C17.391%2C45.772%26width%3D768%26height%3D567%26srs%3DEPSG%3A4326%26format%3Dapplication%2Fopenlayers&zoom=6&centermap=12.45%2C42.98https://data.d4science.org/gis-viewer-app/?wmsrequest=https%3A%2F%2Fgeona-proto.d4science.org%2Fgeoserver%2Fconcessioni_conf%2Fwms%3Fservice%3DWMS%26version%3D1.1.0%26request%3DGetMap%26layers%3Dconcessioni_conf%3Acentroids_concessioni%26styles%3D%26bbox%3D8.476%2C39.179%2C17.391%2C45.772%26width%3D768%26height%3D567%26srs%3DEPSG%3A4326%26format%3Dapplication%2Fopenlayers&zoom=6&centermap=12.45%2C42.98https://data.d4science.org/gis-viewer-app/?wmsrequest=https%3A%2F%2Fgeona-proto.d4science.org%2Fgeoserver%2Fconcessioni_conf%2Fwms%3Fservice%3DWMS%26version%3D1.1.0%26request%3DGetMap%26layers%3Dconcessioni_conf%3Acentroids_concessioni%26styles%3D%26bbox%3D8.476%2C39.179%2C17.391%2C45.772%26width%3D768%26height%3D567%26srs%3DEPSG%3A4326%26format%3Dapplication%2Fopenlayers&zoom=6&centermap=
}
2020-10-26 17:40:38 +01:00
2020-10-27 16:04:34 +01:00
/**
* Adds the point vector source.
*
* @return the draw
*/
2020-10-26 17:40:38 +01:00
public Draw addPointVectorSource() {
if(pointDraw==null)
initPointInteraction();
map.addInteraction(pointDraw);
return pointDraw;
}
2020-10-27 16:04:34 +01:00
/**
* Inits the point interaction.
*/
2020-10-26 17:40:38 +01:00
private void initPointInteraction() {
Vector vectorSource = new Vector();
DrawOptions drawOptions = new DrawOptions();
drawOptions.setSource(vectorSource);
drawOptions.setType("Point");
drawOptions.setMaxPoints(1);
drawOptions.setMinPoints(1);
drawOptions.setWrapX(false);
pointDraw = new Draw(drawOptions);
}
2020-10-27 16:04:34 +01:00
/**
* Removes the interaction.
*
* @param interaction the interaction
*/
2020-10-26 17:40:38 +01:00
public void removeInteraction(Interaction interaction) {
map.removeInteraction(interaction);
}
2020-10-27 16:04:34 +01:00
/**
* Removes the interactions.
*/
2020-10-26 17:40:38 +01:00
public void removeInteractions() {
Collection<Interaction> interactions = map.getInteractions();
if(interactions!=null) {
Interaction[] inters = map.getInteractions().getArray();
for (int i = 0; i < inters.length; i++) {
Interaction inter = inters[i];
map.removeInteraction(inter);
}
}
}
2020-10-27 16:04:34 +01:00
/**
* Adds the extent interaction.
*
* @return the extent
*/
2020-10-26 17:40:38 +01:00
public Extent addExtentInteraction() {
ExtentOptions extentOptions = new ExtentOptions();
extentOptions.setWrapX(false);
//StyleOptions styleOptions = new StyleOptions();
//styleOptions.setStroke(stroke);
//styleOptions.set
//extentOptions.setBoxStyle(new ol.style.Style(styleOptions));
Extent extent = new Extent(extentOptions);
map.addInteraction(extent);
return extent;
}
2020-10-27 16:04:34 +01:00
/**
* Adds the overlay.
*
* @param element the element
* @return the overlay
*/
2020-10-27 10:19:32 +01:00
private Overlay addOverlay(Element element) {
2020-10-26 17:40:38 +01:00
/**
* Create an overlay to anchor the popup to the map.
*/
OverlayOptions overlayOptions = new OverlayOptions();
overlayOptions.setAutoPan(true);
Overlay overlay = new Overlay(overlayOptions);
2020-10-27 10:19:32 +01:00
overlay.setElement(element);
2020-10-26 17:40:38 +01:00
map.addOverlay(overlay);
2020-10-27 10:19:32 +01:00
return overlay;
2020-10-26 17:40:38 +01:00
}
2020-10-23 18:18:06 +02:00
}