com.supermap.services.providers
Class UGCMapSetting
- java.lang.Object
-
- com.supermap.services.providers.UGCMapSetting
-
- All Implemented Interfaces:
- java.io.Serializable
public class UGCMapSetting extends java.lang.Object implements java.io.SerializableSuperMap map settings class.
Used to set up SuperMap maps.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description UGCMapSetting()
-
Method Summary
Methods Modifier and Type Method and Description StylegetLineStyle()Gets line style.java.lang.StringgetMapName()Gets the map name.StylegetPointStyle()Gets point style.StylegetRegionStyle()Gets polygon style.voidsetLineStyle(Style lineStyle)Sets the line style.voidsetMapName(java.lang.String mapName)Set the map name.voidsetPointStyle(Style pointStyle)Sets point style.voidsetRegionStyle(Style regionStyle)Sets the surface style.
-
-
-
Method Detail
-
setMapName
public void setMapName(java.lang.String mapName)
Set the map name.
- Parameters:
mapName- map name.
-
getMapName
public java.lang.String getMapName()
Gets the map name.
- Returns:
- map name.
-
setPointStyle
public void setPointStyle(Style pointStyle)
Sets point style.
- Parameters:
pointStyle- point style.
-
getPointStyle
public Style getPointStyle()
Gets point style.
- Returns:
- point style.
-
setLineStyle
public void setLineStyle(Style lineStyle)
Sets the line style.
- Parameters:
lineStyle- line style.
-
getLineStyle
public Style getLineStyle()
Gets line style.
- Returns:
- line style.
-
setRegionStyle
public void setRegionStyle(Style regionStyle)
Sets the surface style.
- Parameters:
regionStyle- polygon style.
-
getRegionStyle
public Style getRegionStyle()
Gets polygon style.
- Returns:
- polygon style.
-
-