Class WMSQueryParameter
- java.lang.Object
-
- com.supermap.services.components.spi.ogc.WMSMapParameter
-
- com.supermap.services.components.spi.ogc.WMSQueryParameter
-
- All Implemented Interfaces:
- java.io.Serializable
public class WMSQueryParameter extends WMSMapParameter
WMS query parameters.
In the WMS specification, when you request GetFeatureInfo operation, you need to set the query parameters. The WMS query parameters are required when calling the
# getFeatureInfo (String, WMSQueryParameter)method of theWMSinterface provided by SuperMap iServer.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description java.util.Map<?,?>customParameters${services_components_spi_ogc_WMSQueryParameter_attribute_customParameters_Title}intfeatureCount${services_components_spi_ogc_WMSQueryParameter_attribute_featureCount_Title}java.lang.StringinfoFormat${services_components_spi_ogc_WMSQueryParameter_attribute_info_format_Title}java.lang.String[]queryLayers${services_components_spi_ogc_WMSQueryParameter_attribute_query_layers_Title}intxX of the feature in pixel.intyY of the feature in pixel.-
Fields inherited from class com.supermap.services.components.spi.ogc.WMSMapParameter
bgcolor, bounds, center, crs, entireBounds, exceptions, format, height, layers, mapName, sldBody, srs, styles, transparent, width
-
-
Constructor Summary
Constructors Constructor and Description WMSQueryParameter()ConstructorWMSQueryParameter(java.util.Map<java.lang.String,java.lang.String> paramMap)Constructs a WMSQueryParameter from a Map mapping.WMSQueryParameter(WMSQueryParameter wmsqueryParameter)Constructor
-
Method Summary
Methods Modifier and Type Method and Description booleanequals(java.lang.Object obj)inthashCode()-
Methods inherited from class com.supermap.services.components.spi.ogc.WMSMapParameter
splitString
-
-
-
-
Field Detail
-
queryLayers
public java.lang.String[] queryLayers
${services_components_spi_ogc_WMSQueryParameter_attribute_query_layers_Title}
${services_components_spi_ogc_WMSQueryParameter_attribute_query_layers_Description}
-
infoFormat
public java.lang.String infoFormat
${services_components_spi_ogc_WMSQueryParameter_attribute_info_format_Title}
${services_components_spi_ogc_WMSQueryParameter_attribute_info_format_Description}
-
featureCount
public int featureCount
${services_components_spi_ogc_WMSQueryParameter_attribute_featureCount_Title}
${services_components_spi_ogc_WMSQueryParameter_attribute_featureCount_Description}
-
x
public int x
X of the feature in pixel.
The leftmost is 0, the right increases.
-
y
public int y
Y of the feature in pixel.
The top is 0, increasing downward.
-
customParameters
public java.util.Map<?,?> customParameters
${services_components_spi_ogc_WMSQueryParameter_attribute_customParameters_Title}
${services_components_spi_ogc_WMSQueryParameter_attribute_customParameters_Description}
-
-
Constructor Detail
-
WMSQueryParameter
public WMSQueryParameter(java.util.Map<java.lang.String,java.lang.String> paramMap)
Constructs a WMSQueryParameter from a Map mapping. The Map mapping stores WMS service constant information.- Parameters:
paramMap- Map mapping, storing WMS service constant information.- See Also:
Constants
-
WMSQueryParameter
public WMSQueryParameter(WMSQueryParameter wmsqueryParameter)
Constructor- Parameters:
wmsqueryParameter-
-
WMSQueryParameter
public WMSQueryParameter()
Constructor
-
-
Method Detail
-
hashCode
public int hashCode()
- Overrides:
hashCodein classWMSMapParameter
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classWMSMapParameter
-
-