com.supermap.services.providers
Class GeoPackageMapProviderSetting
- java.lang.Object
-
- com.supermap.services.components.spi.MapProviderSetting
-
- com.supermap.services.providers.GeoPackageMapProviderSetting
-
- All Implemented Interfaces:
- java.io.Serializable
public class GeoPackageMapProviderSetting extends MapProviderSetting
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.supermap.services.components.spi.MapProviderSetting
dataPrjCoordSysType, watermark
-
-
Constructor Summary
Constructors Constructor and Description GeoPackageMapProviderSetting()
-
Method Summary
Methods Modifier and Type Method and Description booleanequals(java.lang.Object obj)Determines whether two objects are equal.java.lang.StringgetAxisPositiveDirection()Gets the positive direction of the coordinate axisintgetDefaultMapPrjCoordSys()Gets the default map projectionjava.lang.StringgetFilePath()Gets the location of the file.java.lang.StringgetOriginalPoint()Gets the slice origin pointintgetQueryExpectCount()inthashCode()Gets the hash value of the object instancevoidsetAxisPositiveDirection(java.lang.String axisPositiveDirection)Sets the positive direction of the coordinate axisvoidsetDefaultMapPrjCoordSys(int epsgCode)Sets the default map projection, which is the default projection for the GeoPackage feature, which is not valid for the GesPackage Tiles, Tiles projection is the actual projection of the slice.voidsetFilePath(java.lang.String filePath)Sets the location of the GeoPackage file.voidsetOriginalPoint(java.lang.String originalPoint)Sets the slice origin pointvoidsetQueryExpectCount(int queryExpectCount)-
Methods inherited from class com.supermap.services.components.spi.MapProviderSetting
getCacheMode, getCacheVersion, getName, getOutputPath, getOutputSite, getWatermark, setCacheMode, setCacheVersion, setName, setOutputPath, setOutputSite, setWatermark
-
-
-
-
Method Detail
-
getQueryExpectCount
public int getQueryExpectCount()
-
setQueryExpectCount
public void setQueryExpectCount(int queryExpectCount)
-
getDefaultMapPrjCoordSys
public int getDefaultMapPrjCoordSys()
Gets the default map projection
- Returns:
- projection EpsgCode
-
setDefaultMapPrjCoordSys
public void setDefaultMapPrjCoordSys(int epsgCode)
Sets the default map projection, which is the default projection for the GeoPackage feature, which is not valid for the GesPackage Tiles, Tiles projection is the actual projection of the slice.
- Parameters:
epsgCode- projection EpsgCode
-
getAxisPositiveDirection
public java.lang.String getAxisPositiveDirection()
Gets the positive direction of the coordinate axis
- Returns:
- axis positive direction, RightDown or RightUp. The default is RightDown.
-
setAxisPositiveDirection
public void setAxisPositiveDirection(java.lang.String axisPositiveDirection)
Sets the positive direction of the coordinate axis
- Parameters:
axisPositiveDirection- axis positive direction, RightDown or RightUp. The default is RightDown.
-
getFilePath
public java.lang.String getFilePath()
Gets the location of the file.
- Returns:
- the location of the file.
-
setFilePath
public void setFilePath(java.lang.String filePath)
Sets the location of the GeoPackage file.
- Parameters:
filePath-
-
getOriginalPoint
public java.lang.String getOriginalPoint()
Gets the slice origin point
- Returns:
- slice origin point, in the format {x}, {y}
- Since:
- 8.0.2
-
setOriginalPoint
public void setOriginalPoint(java.lang.String originalPoint)
Sets the slice origin point
- Parameters:
originalPoint- slice origin point, in the format {x}, {y}- Since:
- 8.0.2
-
equals
public boolean equals(java.lang.Object obj)
Determines whether two objects are equal.
- Overrides:
equalsin classjava.lang.Object- Parameters:
obj- The object to be compared.- Returns:
- a value indicating whether the two objects are equal, true that the two objects are equal.
-
hashCode
public int hashCode()
Gets the hash value of the object instance- Overrides:
hashCodein classjava.lang.Object- Returns:
- hash value
-
-