It will not enhance. The plate zooms until one pixel of
the source covers one pixel of your screen, and stops. Asking for more is
refused and says what was asked, rather than quietly granting less.
Every way of changing the view goes through one clamp: wheel, drag,
pinch, keys and fitting a box, because a limit that lives on the zoom path and
not the fit path is how OpenSeadragon grants 20x through fitBounds.
Pan past an edge and the part of the view that no
sensor produced is hatched and counted, not filled. Detections are
refused, not dropped, when they cannot belong to this frame: one that
runs outside it, or one made 800ms earlier, whose box would sit where the
figure used to be. The picture is generated by the build, so there is no
licence to track and the pixel ceiling is exact: 1280 by 800.
import 'overscan'
import 'overscan/overscan.css'
<ov-plate
id="plate"
src="plates/city.png"
frame-time="5000"
style="--ov-plate-height:440px"
></ov-plate>import { OvPlate } from 'overscan/react'
<OvPlate
id="plate"
src="plates/city.png"
frame-time="5000"
style="--ov-plate-height:440px"
/>import { OvPlate } from 'overscan/vue'
<OvPlate
id="plate"
src="plates/city.png"
frame-time="5000"
style="--ov-plate-height:440px"
/>import OvPlate from 'overscan/svelte/OvPlate.svelte'
<OvPlate
id="plate"
src="plates/city.png"
frame-time="5000"
style="--ov-plate-height:440px"
/>import 'overscan'
import 'overscan/overscan.css'
<ov-plate
class="themed"
src="plates/city.png"
frame-time="5000"
style="--ov-plate-height:200px"
></ov-plate>import { OvPlate } from 'overscan/react'
<OvPlate
class="themed"
src="plates/city.png"
frame-time="5000"
style="--ov-plate-height:200px"
/>import { OvPlate } from 'overscan/vue'
<OvPlate
class="themed"
src="plates/city.png"
frame-time="5000"
style="--ov-plate-height:200px"
/>import OvPlate from 'overscan/svelte/OvPlate.svelte'
<OvPlate
class="themed"
src="plates/city.png"
frame-time="5000"
style="--ov-plate-height:200px"
/>