Functions
-
import {createLoader} from 'ol/source/mapserver';Creates a loader for MapServer images generated using the CGI interface, which predates OGC services. It is strongly recommended to configure MapServer to use WMS, and use the WMS createLoader.
Name Type Description urlstring The MapServer url.
crossOriginnull | string | undefined The
crossOriginattribute for loaded images. Note that you must provide acrossOriginvalue if you want to access pixel data with the Canvas renderer. See https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image for more detail. the image from the remote server.rationumber (defaults to 1) Ratio.
1means image requests are the size of the map viewport,2means twice the width and height of the map viewport, and so on. Must be1or higher.paramsObject | undefined Additional query parameters.
loadfunction | undefined Function to perform loading of the image. Receives the created
HTMLImageElementand the desiredsrcas argument and returns a promise resolving to the loaded or decoded image. Default isdecode.Returns:
MapServer image.
Type Definitions
-
LoaderOptions{Object}
-
Properties:
Name Type Description urlstring The MapServer url.
crossOriginnull | string | undefined The
crossOriginattribute for loaded images. Note that you must provide acrossOriginvalue if you want to access pixel data with the Canvas renderer. See https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image for more detail. the image from the remote server.rationumber
(defaults to 1)Ratio.
1means image requests are the size of the map viewport,2means twice the width and height of the map viewport, and so on. Must be1or higher.paramsObject | undefined Additional query parameters.
loadfunction | undefined Function to perform loading of the image. Receives the created
HTMLImageElementand the desiredsrcas argument and returns a promise resolving to the loaded or decoded image. Default isdecode.