public interface PlotProvider
Dynamic plotting service provider.
The dynamic plotting service provider is a class of GIS service provider that encapsulate dynamic plotting related GIS functions.
Modifier and Type | Method and Description |
---|---|
java.lang.Boolean |
deleteSMLFile(java.lang.String smlFileName)
According to the situation map file description to delete the specified situation map file information.
|
GeoGraphicObject |
getGraphicObject(GetGraphicObjectParameter getGOParameters)
Obtains graphic object information according to LibID, Code, point string and other related parameters.
|
byte[] |
getSMLFileBinary(java.lang.String smlFileName)
Gets the contents of the binary form of the specified situation map file.
|
java.lang.String |
getSMLFileContent(java.lang.String smlFileName)
According to the situation map file description to obtain the specified situation map file content, in the form of a string to return.
|
java.util.List<SMLInfo> |
getSMLInfos(int start, int count)
Gets the list of situation map information.
|
SymbolLib |
getSymbolLib(int libID)
Obtains the label library information according to the label library ID.
|
int[] |
getSymbolLibIDs()
Returns all label library IDs supported by server.
|
boolean |
saveAsSMLFile(java.lang.String content, java.lang.String smlFileName, java.lang.Boolean isCover)
Stores the situation map file information
|
int[] getSymbolLibIDs()
Returns all label library IDs supported by server.
SymbolLib getSymbolLib(int libID)
Obtains the label library information according to the label library ID.
libID
- Label library ID.GeoGraphicObject getGraphicObject(GetGraphicObjectParameter getGOParameters)
Obtains graphic object information according to LibID, Code, point string and other related parameters.
getGOParameters
- Related parameters.boolean saveAsSMLFile(java.lang.String content, java.lang.String smlFileName, java.lang.Boolean isCover)
Stores the situation map file information
content
- Situation chart content.smlFileName
- Situation map physical file name.isCover
- Whether or not to cover the existing situation map.java.lang.String getSMLFileContent(java.lang.String smlFileName)
According to the situation map file description to obtain the specified situation map file content, in the form of a string to return.
smlFileName
- Situation map physical file name.java.lang.Boolean deleteSMLFile(java.lang.String smlFileName)
According to the situation map file description to delete the specified situation map file information.
smlFileName
- Situation map physical file name.byte[] getSMLFileBinary(java.lang.String smlFileName)
Gets the contents of the binary form of the specified situation map file.
smlFileName
- Situation map physical file name.java.util.List<SMLInfo> getSMLInfos(int start, int count)
Gets the list of situation map information.
start
- Returns the starting index of the situation map file list.count
- Returns the number of the situation map file list.