absoluteMove method

Future<void> absoluteMove(
  1. String profileToken,
  2. PtzPosition place, [
  3. PtzPosition? speed
])

Operation to move pan,tilt or zoom to a absolute destination.

The speed argument is optional. If an x/y speed value is given it is up to the device to either use the x value as absolute resoluting speed vector or to map x and y to the component speed. If the speed argument is omitted, the default speed set by the PtzConfiguration will be used.

Implementation

Future<void> absoluteMove(String profileToken, PtzPosition place,
    [PtzPosition? speed]) async {
  await Soap.retrieveEnvlope(
      uri,
      onvif.secureRequest(
          SoapRequest.absoluteMove(profileToken, place, speed)));
}