How to open Camera Preview into a given div?

Hi,
is it possible, using the Camera Preview plugin:

// start camera
this.cameraPreview.startCamera(cameraPreviewOpts).then(
  (res) => {
    console.log(res)
  },
  (err) => {
    console.log(err)
  });

to open the camera, not full screen, but into a div of a Ionic4 page?

<div id="camera_preview">
...
</div>

thank you very much

Claudio