View Javadoc
1   package fr.ifremer.dali.map;
2   
3   import org.geotools.data.wmts.WebMapTileServer;
4   import org.geotools.data.wmts.model.WMTSCapabilities;
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 WMTSMapConfiguration extends OnlineMapConfiguration {
13  
14      WMTSCapabilities getCapabilities() throws IOException, ServiceException;
15  
16      WebMapTileServer getWebService() throws IOException, ServiceException;
17  
18      @Override
19      default boolean isTransparent() {
20          return true;
21      }
22  }