Image Loader Worker

The loading of multiple small images (e.g. loadimng tiles of a zoomable map) is a time consuming task that leads to small but noticeable delays in touch interaction if standard DOM events are used. With a worker we can try to do most of the time consuming processing in the background.

Let's look at an example of a image loader worker: