Class Map
-
- All Implemented Interfaces:
public class Map
Map information, used in course setting software with regard to the "real" map.
Java class for Map complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="Map"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Id" type="{http://www.orienteering.org/datastandard/3.0}Id" minOccurs="0"/> <element name="Image" type="{http://www.orienteering.org/datastandard/3.0}Image" minOccurs="0"/> <element name="Scale" type="{http://www.w3.org/2001/XMLSchema}double"/> <element name="MapPositionTopLeft" type="{http://www.orienteering.org/datastandard/3.0}MapPosition"/> <element name="MapPositionBottomRight" type="{http://www.orienteering.org/datastandard/3.0}MapPosition"/> <element name="Extensions" type="{http://www.orienteering.org/datastandard/3.0}Extensions" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Map()
-
Method Summary
Modifier and Type Method Description Id
getId()
Gets the value of the id property. void
setId(Id value)
Sets the value of the id property. Image
getImage()
The map image. void
setImage(Image value)
Sets the value of the image property. double
getScale()
The denominator of the scale of the map. void
setScale(double value)
Sets the value of the scale property. MapPosition
getMapPositionTopLeft()
The position of the map's top left corner given in the map's coordinate system, usually (0, 0). void
setMapPositionTopLeft(MapPosition value)
Sets the value of the mapPositionTopLeft property. MapPosition
getMapPositionBottomRight()
The position of the map's bottom right corner given in the map's coordinate system. void
setMapPositionBottomRight(MapPosition value)
Sets the value of the mapPositionBottomRight property. Extensions
getExtensions()
Container element for custom elements from other schemas. void
setExtensions(Extensions value)
Sets the value of the extensions property. -
-
Method Detail
-
setId
void setId(Id value)
Sets the value of the id property.
- Parameters:
value
- allowed object is Id
-
setImage
void setImage(Image value)
Sets the value of the image property.
- Parameters:
value
- allowed object is Image
-
getScale
double getScale()
The denominator of the scale of the map. 1:15000 should be represented as 15000.
-
setScale
void setScale(double value)
Sets the value of the scale property.
-
getMapPositionTopLeft
MapPosition getMapPositionTopLeft()
The position of the map's top left corner given in the map's coordinate system, usually (0, 0).
- Returns:
possibleobject is MapPosition
-
setMapPositionTopLeft
void setMapPositionTopLeft(MapPosition value)
Sets the value of the mapPositionTopLeft property.
- Parameters:
value
- allowed object is MapPosition
-
getMapPositionBottomRight
MapPosition getMapPositionBottomRight()
The position of the map's bottom right corner given in the map's coordinate system.
- Returns:
possibleobject is MapPosition
-
setMapPositionBottomRight
void setMapPositionBottomRight(MapPosition value)
Sets the value of the mapPositionBottomRight property.
- Parameters:
value
- allowed object is MapPosition
-
getExtensions
Extensions getExtensions()
Container element for custom elements from other schemas.
- Returns:
possibleobject is Extensions
-
setExtensions
void setExtensions(Extensions value)
Sets the value of the extensions property.
- Parameters:
value
- allowed object is Extensions
-
-
-
-