A model that can provide access to raster images. To visualize such a model in a RasterImageLayer.

There are two implementations: WMSImageModel.

Note that this is an "abstract" model and should never be instantiated directly. Only its subtypes can be directly instantiated.

RasterImageModel is not supported in hardware-accelerated map.

Since

2013.1

Hierarchy

Implements

Constructors

Accessors

  • get bounds(): Bounds
  • The Bounds by which the geometry of this Bounded object is bounded or null if the bounds is not defined.

    Returns Bounds

Methods

  • Signals that the underlying data for the tiled images has changed. If this model is added to a map using a RasterImageLayer, calling this method will thus trigger a refresh of the visualization.

    Returns void

Events

"Invalidated" event

  • on("Invalidated", callback: ((...args) => void), context?: any) : Handle
  • An event indicating that this Controller is invalidated. Invalidated means that data has changed and the visualization needs to be refreshed. This event fires when #invalidate is called.

    Parameters

    • event: "Invalidated"
    • callback: ((...args) => void)
        • (...args): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    • Optional context: any

    Returns Handle