com.supermap.services.providers
Class MongoDBTileProviderSetting
- java.lang.Object
-
- com.supermap.services.components.spi.MapProviderSetting
-
- com.supermap.services.providers.MongoDBTileProviderSetting
-
- All Implemented Interfaces:
- java.io.Serializable
public class MongoDBTileProviderSetting extends MapProviderSetting
MongoDB map tile service provider configuration class.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description java.lang.StringdatabaseMongoDB database name.java.lang.StringmapNameMap name.java.lang.StringpasswordThe password.java.lang.String[]serverAdressesjava.lang.StringtilesetNameThe slice set name.java.lang.StringusernameThe username.-
Fields inherited from class com.supermap.services.components.spi.MapProviderSetting
dataPrjCoordSysType, watermark
-
-
Constructor Summary
Constructors Constructor and Description MongoDBTileProviderSetting()
-
Method Summary
Methods Modifier and Type Method and Description booleanequals(java.lang.Object obj)inthashCode()-
Methods inherited from class com.supermap.services.components.spi.MapProviderSetting
getCacheMode, getCacheVersion, getName, getOutputPath, getOutputSite, getWatermark, setCacheMode, setCacheVersion, setName, setOutputPath, setOutputSite, setWatermark
-
-
-
-
Field Detail
-
serverAdresses
public java.lang.String[] serverAdresses
-
mapName
public java.lang.String mapName
Map name.Optional parameters.
-
tilesetName
public java.lang.String tilesetName
The slice set name.Optional parameters. The names of the maps are the same, but its size, transparency, scale, etc. may be different, so use a slice set name to uniquely identify a slice set.
-
database
public java.lang.String database
MongoDB database name.The default is smtiles
- Since:
- 8.0.0
-
username
public java.lang.String username
The username.- Since:
- 8.0.0
-
password
public java.lang.String password
The password.- Since:
- 8.0.0
-
-