com.supermap.services.components.spi
Class MapProviderSetting
- java.lang.Object
-
- com.supermap.services.components.spi.MapProviderSetting
-
- All Implemented Interfaces:
- java.io.Serializable
- Direct Known Subclasses:
- AbstractRestMapProviderSetting, AggregationMapProviderSetting, ArcGISCacheMapProviderSetting, ArcGISRestMapProviderSetting, BaiduMapProviderSetting, BingMapsMapProviderSetting, CloudMapProviderSetting, FastDFSTileProviderSetting, GDPMapProviderSetting, GeoPackageMapProviderSetting, GoogleMapsMapProviderSetting, MongoDBTileProviderSetting, MVTTileProviderSetting, OpenStreetMapProviderSetting, OTSTileProviderSetting, RestMapProviderSetting, SMTilesMapProviderSetting, TiandituMapProviderSetting, TilesetMapProviderSetting, TPKMapProviderSetting, UGCMapProviderSetting, UGCV5TileProviderSetting, WMSMapProviderSetting, WMTSMapProviderSetting, ZXYTilesMapProviderSetting
public class MapProviderSetting extends java.lang.Object implements java.io.Serializablemap service provider settings class.
It is used to set the general information for map sesrvice providers.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description PrjCoordSysTypedataPrjCoordSysTypeWaterMarkSettingwatermark
-
Constructor Summary
Constructors Constructor and Description MapProviderSetting()
-
Method Summary
Methods Modifier and Type Method and Description java.lang.StringgetCacheMode()Gets the cache mode.java.lang.StringgetCacheVersion()Gets the cache version.java.lang.StringgetName()Gets the of the setting object.java.lang.StringgetOutputPath()Gets the output path for exporting map images.java.lang.StringgetOutputSite()Gets the site for publishing map images.WaterMarkSettinggetWatermark()Gets the water mark settings class.voidsetCacheMode(java.lang.String cacheMode)Sets the cache mode.voidsetCacheVersion(java.lang.String cacheVersion)Sets the cache version.voidsetName(java.lang.String name)Sets the name of the setting object.voidsetOutputPath(java.lang.String outputPath)Sets the output path for exporting map images.voidsetOutputSite(java.lang.String outputSite)Sets the site for publishing map images.voidsetWatermark(WaterMarkSetting watermark)Sets the water mark settings class.
-
-
-
Field Detail
-
dataPrjCoordSysType
public PrjCoordSysType dataPrjCoordSysType
-
watermark
public WaterMarkSetting watermark
-
-
Method Detail
-
getWatermark
public WaterMarkSetting getWatermark()
Gets the water mark settings class.
- Parameters:
name- The water mark settings class.
-
setWatermark
public void setWatermark(WaterMarkSetting watermark)
Sets the water mark settings class.
- Parameters:
- -
-
setName
public void setName(java.lang.String name)
Sets the name of the setting object.
- Parameters:
name- The name of the setting object.
-
getName
public java.lang.String getName()
Gets the of the setting object.
- Returns:
- The name of the setting object.
-
setCacheMode
public void setCacheMode(java.lang.String cacheMode)
Sets the cache mode.
- Parameters:
cacheMode- The cache mode.
-
getCacheMode
public java.lang.String getCacheMode()
Gets the cache mode.
- Returns:
- The cache mode.
-
setCacheVersion
public void setCacheVersion(java.lang.String cacheVersion)
Sets the cache version.
- Parameters:
cacheVersion- The cache version.
-
getCacheVersion
public java.lang.String getCacheVersion()
Gets the cache version.
- Returns:
- The cache version.
-
setOutputPath
public void setOutputPath(java.lang.String outputPath)
Sets the output path for exporting map images.
- Parameters:
outputPath- The output path for exporting map images.
-
getOutputPath
public java.lang.String getOutputPath()
Gets the output path for exporting map images.
- Returns:
- The output path for exporting map images.
-
setOutputSite
public void setOutputSite(java.lang.String outputSite)
Sets the site for publishing map images.
- Parameters:
outputSite- The site for publishing map images.
-
getOutputSite
public java.lang.String getOutputSite()
Gets the site for publishing map images.
- Returns:
- The site for publishing map images.
-
-