Class TiledWmsLayerParam


public final class TiledWmsLayerParam extends WmsLayerParam
The parameters for configuration a Tiled WMS layer.

What is meant by a "tiled wms layer" is a layer based on a WMS layer but instead of a single large image for the layer multiple wms requests are made and the resulting images are combined as tiles.

  • Field Details

    • tileSize

      public int[] tileSize
      A two element array of integers indicating the x and y size of each tile.
    • tileBufferSize

      public int[] tileBufferSize
      A two element array of integers indicating the width and height tile buffer.
  • Constructor Details

    • TiledWmsLayerParam

      public TiledWmsLayerParam()
      Constructor.
    • TiledWmsLayerParam

      public TiledWmsLayerParam(WmsLayerParam params, Dimension tileSize, int tileBufferWidth, int tileBufferHeight)
      Convert WmsLayerParam into it's tiled equivalent.
      Parameters:
      params - the WMS parameters to convert
      tileSize - The size of the tiles
      tileBufferWidth - The width of the the buffer tile for meta tile
      tileBufferHeight - The height of the the buffer tile for meta tile
  • Method Details