@RestController @RequestMapping(value="/appcatalog") public class AppCatalogManageController extends Object
| Constructor and Description |
|---|
AppCatalogManageController() |
| Modifier and Type | Method and Description |
|---|---|
com.geoway.adf.dms.common.web.Response<String> |
addCompositeNode(String appCatalogId,
String fatherId,
String nodeName,
Integer nodeType,
String nodePhase,
Boolean showTimeLine,
org.springframework.web.multipart.MultipartFile picture) |
com.geoway.adf.dms.common.web.Response<List<String>> |
addDatasetNode(AppCatalogDatasetsCreateDTO createDTO) |
com.geoway.adf.dms.common.web.Response<String> |
addFolderNode(String appCatalogId,
String fatherId,
String nodeName,
String describe,
org.springframework.web.multipart.MultipartFile picture) |
com.geoway.adf.dms.common.web.Response |
addFromResCatalog(AppCatalogAddDTO addDTO) |
com.geoway.adf.dms.common.web.Response<String> |
addOrUpdateCatalog(AppCatalogDTO appCatalog) |
com.geoway.adf.dms.common.web.Response |
chooseVectorRenderStyle(String nodeId,
String styleId) |
com.geoway.adf.dms.common.web.Response |
copyAppCatalog(AppCatalogNodeCopyDTO copyDTO) |
com.geoway.adf.dms.common.web.Response |
copyAppCatalog(String id) |
com.geoway.adf.dms.common.web.Response |
deleteAppCatalog(String id) |
com.geoway.adf.dms.common.web.Response |
deleteNodes(String nodeIds) |
com.geoway.adf.dms.common.web.Response |
editCompositeNode(String nodeId,
String nodeName,
String extension,
String nodePhase,
Boolean showTimeLine,
org.springframework.web.multipart.MultipartFile picture,
Boolean deletePicture,
String serviceId,
String styleId,
Boolean autoload,
Integer minLevel,
Integer maxLevel,
Boolean serviceVague,
Double xmin,
Double ymin,
Double xmax,
Double ymax) |
com.geoway.adf.dms.common.web.Response |
editDatasetNode(String nodeId,
String nodeName,
String describe,
String extension,
Boolean autoload,
Boolean canChoose,
Boolean canQuery,
Integer minLevel,
Integer maxLevel,
Boolean serviceVague,
Double xmin,
Double ymin,
Double xmax,
Double ymax,
org.springframework.web.multipart.MultipartFile picture,
Boolean deletePicture) |
com.geoway.adf.dms.common.web.Response |
editFolderNode(String nodeId,
String nodeName,
String describe,
String extension,
org.springframework.web.multipart.MultipartFile picture,
Boolean deletePicture) |
com.geoway.adf.dms.common.web.Response |
editGeoDatasetNode(String nodeId,
String nodeName,
String describe,
Boolean autoload,
Boolean canChoose,
Boolean canQuery,
String extension,
Integer minLevel,
Integer maxLevel,
Boolean serviceVague,
Double xmin,
Double ymin,
Double xmax,
Double ymax,
org.springframework.web.multipart.MultipartFile picture,
Boolean deletePicture,
String defineQueryString,
String styleId,
Boolean showAggregation,
String aggregationSetting) |
com.geoway.adf.dms.common.web.Response |
editNodeStartPosition(StartLocationEditDTO startLocation) |
com.geoway.adf.dms.common.web.Response |
editRelateTimingNode(String nodeId) |
com.geoway.adf.dms.common.web.Response |
editStartPosition(StartLocationEditDTO startLocation) |
com.geoway.adf.dms.common.web.Response |
editVectorTileServiceDatasetNode(String nodeId,
String nodeName,
String describe,
String styleId,
Boolean autoload,
Boolean canChoose,
Boolean canQuery,
String extension,
Integer minLevel,
Integer maxLevel,
Boolean serviceVague,
Double xmin,
Double ymin,
Double xmax,
Double ymax,
org.springframework.web.multipart.MultipartFile picture,
Boolean deletePicture) |
com.geoway.adf.dms.common.web.Response<List<AppCatalogNodeDTO>> |
getLayerNodeList(String appCatalogId,
String keyword) |
com.geoway.adf.dms.common.web.Response<VectorRenderStyleDTO> |
getVectorRenderStyle(String nodeId) |
com.geoway.adf.dms.common.web.Response |
moveCatalog(AppCatalogMoveDTO moveDTO) |
com.geoway.adf.dms.common.web.Response |
moveCatalogNode(MoveCatalogNodeDTO moveCatalogNodeDTO) |
com.geoway.adf.dms.common.web.Response |
updateLayerNodeList(LayerNodeListEditDTO layerNodeList) |
com.geoway.adf.dms.common.web.Response<List<AppCatalogNodeDTO>> |
updateLayerNodeList(String appCatalogId) |
@PostMapping(value="/addorupdate") public com.geoway.adf.dms.common.web.Response<String> addOrUpdateCatalog(@RequestBody AppCatalogDTO appCatalog)
@PutMapping(value="/move/catalog")
public com.geoway.adf.dms.common.web.Response moveCatalog(@RequestBody
AppCatalogMoveDTO moveDTO)
@DeleteMapping(value="/{id}")
public com.geoway.adf.dms.common.web.Response deleteAppCatalog(@PathVariable
String id)
@PostMapping(value="/copy")
public com.geoway.adf.dms.common.web.Response copyAppCatalog(@RequestParam
String id)
@DeleteMapping(value="/nodes")
public com.geoway.adf.dms.common.web.Response deleteNodes(@RequestParam
String nodeIds)
@PutMapping(value="/move/node")
public com.geoway.adf.dms.common.web.Response moveCatalogNode(@RequestBody
MoveCatalogNodeDTO moveCatalogNodeDTO)
@PostMapping(value="/res/folder")
public com.geoway.adf.dms.common.web.Response addFromResCatalog(@RequestBody
AppCatalogAddDTO addDTO)
@UploadFileCheck(supportedSuffixes={".png",".jpg",".svg"}) @PostMapping(value="/folder") public com.geoway.adf.dms.common.web.Response<String> addFolderNode(@RequestParam String appCatalogId, @RequestParam String fatherId, @RequestParam String nodeName, @RequestParam(required=false) String describe, @RequestPart(required=false) org.springframework.web.multipart.MultipartFile picture)
@UploadFileCheck(supportedSuffixes={".png",".jpg",".svg"}) @PutMapping(value="/folder") public com.geoway.adf.dms.common.web.Response editFolderNode(@RequestParam String nodeId, @RequestParam String nodeName, @RequestParam(required=false) String describe, @RequestParam(required=false) String extension, @RequestPart(required=false) org.springframework.web.multipart.MultipartFile picture, @RequestParam(required=false,defaultValue="false") Boolean deletePicture)
@UploadFileCheck(supportedSuffixes={".png",".jpg",".svg"}) @PostMapping(value="/composite") public com.geoway.adf.dms.common.web.Response<String> addCompositeNode(@RequestParam String appCatalogId, @RequestParam String fatherId, @RequestParam String nodeName, @RequestParam Integer nodeType, @RequestParam(required=false) String nodePhase, @RequestParam(required=false,defaultValue="false") Boolean showTimeLine, @RequestPart(required=false) org.springframework.web.multipart.MultipartFile picture)
@UploadFileCheck(supportedSuffixes={".png",".jpg",".svg"}) @PutMapping(value="/composite") public com.geoway.adf.dms.common.web.Response editCompositeNode(@RequestParam String nodeId, @RequestParam String nodeName, @RequestParam(required=false) String extension, @RequestParam(required=false) String nodePhase, @RequestParam(required=false) Boolean showTimeLine, @RequestPart(required=false) org.springframework.web.multipart.MultipartFile picture, @RequestParam(required=false,defaultValue="false") Boolean deletePicture, @RequestParam(required=false) String serviceId, @RequestParam(required=false) String styleId, @RequestParam(required=false) Boolean autoload, @RequestParam(required=false) Integer minLevel, @RequestParam(required=false) Integer maxLevel, @RequestParam(required=false) Boolean serviceVague, @RequestParam(required=false) Double xmin, @RequestParam(required=false) Double ymin, @RequestParam(required=false) Double xmax, @RequestParam(required=false) Double ymax)
@PostMapping(value="/dataset") public com.geoway.adf.dms.common.web.Response<List<String>> addDatasetNode(@RequestBody AppCatalogDatasetsCreateDTO createDTO)
@UploadFileCheck(supportedSuffixes={".png",".jpg",".svg"}) @PutMapping(value="/vector/dataset") public com.geoway.adf.dms.common.web.Response editGeoDatasetNode(@RequestParam String nodeId, @RequestParam String nodeName, @RequestParam(required=false) String describe, @RequestParam(required=false) Boolean autoload, @RequestParam(required=false) Boolean canChoose, @RequestParam(required=false) Boolean canQuery, @RequestParam(required=false) String extension, @RequestParam(required=false) Integer minLevel, @RequestParam(required=false) Integer maxLevel, @RequestParam(required=false) Boolean serviceVague, @RequestParam(required=false) Double xmin, @RequestParam(required=false) Double ymin, @RequestParam(required=false) Double xmax, @RequestParam(required=false) Double ymax, @RequestPart(required=false) org.springframework.web.multipart.MultipartFile picture, @RequestParam(required=false,defaultValue="false") Boolean deletePicture, @RequestParam(required=false) String defineQueryString, @RequestParam(required=false) String styleId, @RequestParam(required=false,defaultValue="false") Boolean showAggregation, @RequestParam(required=false) String aggregationSetting)
@UploadFileCheck(supportedSuffixes={".png",".jpg",".svg"}) @PutMapping(value="vector/service/dataset") public com.geoway.adf.dms.common.web.Response editVectorTileServiceDatasetNode(@RequestParam String nodeId, @RequestParam String nodeName, @RequestParam(required=false) String describe, @RequestParam(required=false) String styleId, @RequestParam(required=false) Boolean autoload, @RequestParam(required=false) Boolean canChoose, @RequestParam(required=false) Boolean canQuery, @RequestParam(required=false) String extension, @RequestParam(required=false) Integer minLevel, @RequestParam(required=false) Integer maxLevel, @RequestParam(required=false) Boolean serviceVague, @RequestParam(required=false) Double xmin, @RequestParam(required=false) Double ymin, @RequestParam(required=false) Double xmax, @RequestParam(required=false) Double ymax, @RequestPart(required=false) org.springframework.web.multipart.MultipartFile picture, @RequestParam(required=false,defaultValue="false") Boolean deletePicture)
@UploadFileCheck(supportedSuffixes={".png",".jpg",".svg"}) @PutMapping(value="/dataset") public com.geoway.adf.dms.common.web.Response editDatasetNode(@RequestParam String nodeId, @RequestParam String nodeName, @RequestParam(required=false) String describe, @RequestParam(required=false) String extension, @RequestParam(required=false) Boolean autoload, @RequestParam(required=false) Boolean canChoose, @RequestParam(required=false) Boolean canQuery, @RequestParam(required=false) Integer minLevel, @RequestParam(required=false) Integer maxLevel, @RequestParam(required=false) Boolean serviceVague, @RequestParam(required=false) Double xmin, @RequestParam(required=false) Double ymin, @RequestParam(required=false) Double xmax, @RequestParam(required=false) Double ymax, @RequestPart(required=false) org.springframework.web.multipart.MultipartFile picture, @RequestParam(required=false,defaultValue="false") Boolean deletePicture)
@PutMapping(value="/timing/default")
public com.geoway.adf.dms.common.web.Response editRelateTimingNode(@RequestParam
String nodeId)
@PostMapping(value="/node/copy")
public com.geoway.adf.dms.common.web.Response copyAppCatalog(@RequestBody
AppCatalogNodeCopyDTO copyDTO)
@PutMapping(value="/start/position")
public com.geoway.adf.dms.common.web.Response editStartPosition(@RequestBody
StartLocationEditDTO startLocation)
@PutMapping(value="/node/start/position")
public com.geoway.adf.dms.common.web.Response editNodeStartPosition(@RequestBody
StartLocationEditDTO startLocation)
@GetMapping(value="/vector/style") public com.geoway.adf.dms.common.web.Response<VectorRenderStyleDTO> getVectorRenderStyle(@RequestParam String nodeId)
@PutMapping(value="/vector/style")
public com.geoway.adf.dms.common.web.Response chooseVectorRenderStyle(@RequestParam
String nodeId,
@RequestParam
String styleId)
@GetMapping(value="/layer/list") public com.geoway.adf.dms.common.web.Response<List<AppCatalogNodeDTO>> getLayerNodeList(@RequestParam String appCatalogId, @RequestParam(required=false) String keyword)
@PutMapping(value="/layer/list")
public com.geoway.adf.dms.common.web.Response updateLayerNodeList(@RequestBody
LayerNodeListEditDTO layerNodeList)
@PostMapping(value="/layer/list/sort") public com.geoway.adf.dms.common.web.Response<List<AppCatalogNodeDTO>> updateLayerNodeList(@RequestParam String appCatalogId)
Copyright © 2025. All rights reserved.