View Javadoc
1   package fr.ifremer.dali.map;
2   
3   import org.geotools.tile.TileService;
4   
5   /**
6    * @author peck7 on 13/06/2019.
7    */
8   public interface OSMBasedMapConfiguration extends OnlineMapConfiguration {
9   
10      TileService getTileService();
11  
12      @Override
13      default boolean isTransparent() {
14          return false;
15      }
16  }