| org.geotools.data.wms.request.GetFeatureInfoRequest
All known Subclasses: org.geotools.data.wms.request.AbstractGetFeatureInfoRequest,
GetFeatureInfoRequest | public interface GetFeatureInfoRequest extends Request(Code) | | Information required for a GetFeatureInfo request.
Q: queryableLayers is a Set - is this true? Or is order important Q:
infoFormats - what does this do? Do these match up with querableLayers? Or
is it a list of formats our client is willing to understand?
author: Richard Gould, Refractions Research |
FEATURE_COUNT | final public static String FEATURE_COUNT(Code) | | Represents the FEATURE_COUNT parameter
|
INFO_FORMAT | final public static String INFO_FORMAT(Code) | | Represents the INFO_FORMAT parameter
|
QUERY_LAYERS | final public static String QUERY_LAYERS(Code) | | Represents the QUERY_LAYERS parameter
|
QUERY_X | final public static String QUERY_X(Code) | | Represents the X parameter
|
QUERY_Y | final public static String QUERY_Y(Code) | | Represents the Y parameter
|
addQueryLayer | public void addQueryLayer(Layer layer)(Code) | | Add a Layer to the set of layers to be queried in the request.
This Layer must have queryable set to true.
Parameters: layer - a queryable Layer |
setFeatureCount | public void setFeatureCount(String featureCount)(Code) | | Parameters: featureCount - the maximum number of features to return in the response |
setFeatureCount | public void setFeatureCount(int featureCount)(Code) | | Parameters: featureCount - the maximum number of features to return in the response |
setInfoFormat | public void setInfoFormat(String infoFormat)(Code) | | Sets the INFO_FORMAT parameter, which specifies the format of the
GetFeatureInfoResponse. Valid values are available in getInfoFormats()
Parameters: infoFormat - a value from getInfoFormats() |
setQueryLayers | public void setQueryLayers(Set layers)(Code) | | An unordered set of type Layer. These are the layers that the
GetFeatureInfo request will be performed on.
Parameters: layers - A Set of type Layer, each to be queried |
setQueryPoint | public void setQueryPoint(int x, int y)(Code) | | The point on the image (in pixels) to be queried. The image is
represented by the GetMapRequest passed into the constructor.
Parameters: x - the x point, in pixels Parameters: y - the y point, in pixels |
|
|