Package gov.nasa.gsfc.sscweb.schema
Class MapLimits
java.lang.Object
gov.nasa.gsfc.sscweb.schema.MapLimits
Map limit values for an SSC graphing request.
<p>Java class for MapLimits complex type</p>.
<p>The following schema fragment specifies the expected content contained within this class.</p>
<pre>{@code
<complexType name="MapLimits">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="MinLatitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
<element name="MaxLatitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
<element name="MinLongitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
<element name="MaxLongitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
</sequence>
</restriction>
</complexContent>
</complexType>
}</pre>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected floatMaximum Latitude value.protected floatMaximum Longitude value.protected floatMinimum Latitude value.protected floatMinimum Longitude value. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfloatMaximum Latitude value.floatMaximum Longitude value.floatMinimum Latitude value.floatMinimum Longitude value.voidsetMaxLatitude(float value) Sets the value of the maxLatitude property.voidsetMaxLongitude(float value) Sets the value of the maxLongitude property.voidsetMinLatitude(float value) Sets the value of the minLatitude property.voidsetMinLongitude(float value) Sets the value of the minLongitude property.
-
Field Details
-
minLatitude
protected float minLatitudeMinimum Latitude value. -
maxLatitude
protected float maxLatitudeMaximum Latitude value. -
minLongitude
protected float minLongitudeMinimum Longitude value. -
maxLongitude
protected float maxLongitudeMaximum Longitude value.
-
-
Constructor Details
-
MapLimits
public MapLimits()
-
-
Method Details
-
getMinLatitude
public float getMinLatitude()Minimum Latitude value. -
setMinLatitude
public void setMinLatitude(float value) Sets the value of the minLatitude property. -
getMaxLatitude
public float getMaxLatitude()Maximum Latitude value. -
setMaxLatitude
public void setMaxLatitude(float value) Sets the value of the maxLatitude property. -
getMinLongitude
public float getMinLongitude()Minimum Longitude value. -
setMinLongitude
public void setMinLongitude(float value) Sets the value of the minLongitude property. -
getMaxLongitude
public float getMaxLongitude()Maximum Longitude value. -
setMaxLongitude
public void setMaxLongitude(float value) Sets the value of the maxLongitude property.
-