public interface Plot
Dynamically plotting the service component interface.
Dynamically plotting service component is a class of GIS service components that encapsulate GIS functions related to dynamic plotting.
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() throws PlotException
Returns all label library IDs supported by server.
PlotException
- Dynamically plotting service component exception information.SymbolLib getSymbolLib(int libID) throws PlotException
Obtains the label library information according to the label library ID.
libID
- Label library ID.PlotException
- Dynamically plotting service component exception information.GeoGraphicObject getGraphicObject(GetGraphicObjectParameter getGOParameters) throws PlotException
Obtains graphic object information according to LibID, Code, point string and other related parameters.
getGOParameters
- Related parameters.PlotException
- Dynamically plotting service component exception information.boolean saveAsSMLFile(java.lang.String content, java.lang.String smlFileName, java.lang.Boolean isCover) throws PlotException
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.PlotException
- Dynamically plotting service component exception information.java.lang.String getSMLFileContent(java.lang.String smlFileName) throws PlotException
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.PlotException
- Dynamically plotting service component exception information.java.lang.Boolean deleteSMLFile(java.lang.String smlFileName) throws PlotException
According to the situation map file description to delete the specified situation map file information.
smlFileName
- Situation map physical file name.PlotException
- Dynamically plotting service component exception information.byte[] getSMLFileBinary(java.lang.String smlFileName) throws PlotException
Gets the contents of the binary form of the specified situation map file.
smlFileName
- Situation map physical file name.PlotException
- Dynamically plotting service component exception information.java.util.List<SMLInfo> getSMLInfos(int start, int count) throws PlotException
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.PlotException
- Dynamically plotting service component exception information.