From f7e5c3cb84a7f29f01216e737da78ae588096cf5 Mon Sep 17 00:00:00 2001 From: mike-000 <49240900+mike-000@users.noreply.github.com> Date: Wed, 26 May 2021 17:19:03 +0100 Subject: [PATCH] Fix broken ImageData links --- src/ol/source/Raster.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/ol/source/Raster.js b/src/ol/source/Raster.js index df100f7216..46b78774c7 100644 --- a/src/ol/source/Raster.js +++ b/src/ol/source/Raster.js @@ -367,9 +367,10 @@ export class Processor extends Disposable { * pixels, where each pixel is an array of four numbers (`[r, g, b, a]`) in the * range of 0 - 255. It should return a single pixel array. * For `'image'` type operations, functions will be called with an array of - * {@link ImageData https://developer.mozilla.org/en-US/docs/Web/API/ImageData} - * and should return a single {@link ImageData - * https://developer.mozilla.org/en-US/docs/Web/API/ImageData}. The operations + * [ImageData](https://developer.mozilla.org/en-US/docs/Web/API/ImageData) + * and should return a single + * [ImageData](https://developer.mozilla.org/en-US/docs/Web/API/ImageData). + * The operations * are called with a second "data" argument, which can be used for storage. The * data object is accessible from raster events, where it can be initialized in * "beforeoperations" and accessed again in "afteroperations".