Package com.luciad.wms.client.model
Class TLcdWMSGetMapContext
java.lang.Object
com.luciad.wms.client.model.TLcdWMSGetMapContext
A context object that is used to specify WMS GetMap settings. This object can be passed to the
ALcdWMSProxy.createImageInputStream(TLcdWMSGetMapContext)
method.
Lower level API is available as well, see TLcdWMSGetMapRequest
. In most cases, this low level API
should not be needed.
- Since:
- 2016.1
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns this object as aBuilder
.Returns the background color to use for the map.int
Returns the height of the returned image by the GetMap request.int
Returns the width of the returned image by the GetMap request.Returns the area of interest, specified in the map reference.Returns the reference in which the map content should be returned.Returns the map rotation to be applied by the WMS server.static TLcdWMSGetMapContext.Builder
Returns a new builder for a GetMap Context.
-
Method Details
-
getImageWidth
public int getImageWidth()Returns the width of the returned image by the GetMap request.- Returns:
- the width of the returned image by the GetMap request.
-
getImageHeight
public int getImageHeight()Returns the height of the returned image by the GetMap request.- Returns:
- the height of the returned image by the GetMap request.
-
getMapReference
Returns the reference in which the map content should be returned.- Returns:
- the reference in which the map content should be returned.
-
getMapBounds
Returns the area of interest, specified in the map reference.- Returns:
- the area of interest, specified in the map reference.
-
getMapRotation
Returns the map rotation to be applied by the WMS server. Anull
value indicates that the rotation is handled by the WMS client, after the map is retrieved from the WMS server.- Returns:
- the rotation to be applied by the WMS server.
- Since:
- 2022.0
-
getBackgroundColor
Returns the background color to use for the map.- Returns:
- the background color to use for the map.
-
newBuilder
Returns a new builder for a GetMap Context.- Returns:
- a new builder
-
asBuilder
Returns this object as aBuilder
.- Returns:
- this object as a
Builder
.
-