|
|
@ -170,6 +170,12 @@ public class IvsControlController { |
|
|
return this.hlsPlaybackComponent.post(IvsConst.URI_PTZ_CONTROL, request); |
|
|
return this.hlsPlaybackComponent.post(IvsConst.URI_PTZ_CONTROL, request); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@PostMapping({"position3d"}) |
|
|
|
|
|
public ResponseEntity<JSONObject> position3d(@RequestBody JSONObject request) { |
|
|
|
|
|
log.debug("[IVS] position3d page param:{}", request); |
|
|
|
|
|
return this.hlsPlaybackComponent.post(IvsConst.URI_POSITION_3D, request); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@GetMapping({"presetList/{deviceCode}/{domainCode}"}) |
|
|
@GetMapping({"presetList/{deviceCode}/{domainCode}"}) |
|
|
public ResponseEntity<JSONObject> presetListPage(@PathVariable String deviceCode, @PathVariable String domainCode) { |
|
|
public ResponseEntity<JSONObject> presetListPage(@PathVariable String deviceCode, @PathVariable String domainCode) { |
|
|
log.debug("[IVS] preset list page deviceCode:{}, domainCode:{}", deviceCode, domainCode); |
|
|
log.debug("[IVS] preset list page deviceCode:{}, domainCode:{}", deviceCode, domainCode); |
|
|
|