View Javadoc
1   package fr.ifremer.dali.map;
2   
3   import org.geotools.data.ows.WMSCapabilities;
4   import org.geotools.data.wms.WebMapServer;
5   import org.geotools.ows.ServiceException;
6   
7   import java.io.IOException;
8   
9   /**
10   * @author peck7 on 13/06/2019.
11   */
12  public interface WMSMapConfiguration extends OnlineMapConfiguration {
13  
14      WMSCapabilities getCapabilities() throws IOException, ServiceException;
15  
16      WebMapServer getWebService() throws IOException, ServiceException;
17  
18      @Override
19      default boolean isTransparent() {
20          return false; // pas testé
21      }
22  }