An image source that reads vector data. Internally, this wraps an OpenLayers' VectorSource. This uses OpenLayers' styles and features.

Note: to assign a new style to the source, use setStyle instead of the style property.

Example

// To load a remote GeoJSON file
const source = new VectorSource({
data: 'http://example.com/data.geojson',
format: new GeoJSON(), // Pass the OpenLayers FeatureFormat here
style: new Style(...), // Pass an OpenLayers style here
});

// To load a local GeoJSON
const source = new VectorSource({
data: { "type": "FeatureCollection" ... },
format: new GeoJSON(), // Pass the OpenLayers FeatureFormat here
style: new Style(...), // Pass an OpenLayers style here
});

// To load features directly (no need to pass a format as the features are already decoded.)
const source = new VectorSource({
data: [new Feature(...)], // Pass the OpenLayers features here
style: new Style(...), // Pass an OpenLayers style here
});

Hierarchy (view full)

Constructors

Properties

containsFn: undefined | CustomContainsFn
data: DataSource
dataProjection: undefined | string
datatype: TextureDataType

Gets the datatype of images generated by this source.

flipY: boolean

Gets whether images generated from this source should be flipped vertically.

isImageSource: boolean = true
isMemoryUsage: true = ...
isVectorSource: true = ...
style?: Style | Style[] | StyleFunction

The current style. Note: to set a new style, use setStyle() instead.

synchronous: boolean = false

If true, this source can immediately generate images without any delay.

type: "VectorSource" = ...

Accessors

Methods

  • Adds a listener to an event type.

    Type Parameters

    • T extends "updated"

    Parameters

    Returns void

  • Type Parameters

    • T extends string

    Parameters

    Returns void

  • Returns an adjusted extent, width and height so that request pixels are aligned with source pixels, and requests do not oversample the source.

    Parameters

    • requestExtent: Extent

      The request extent.

    • requestWidth: number

      The width, in pixels, of the request extent.

    • requestHeight: number

      The height, in pixels, of the request extent.

    • margin: number = 0

      The margin, in pixels, around the initial extent.

    Returns null | {
        extent: Extent;
        height: number;
        width: number;
    }

    The adjusted parameters.

  • Gets whether this source contains the specified extent. If a custom contains function is provided, it will be used. Otherwise, intersects is used.

    This method is mainly used to discard non-relevant requests (i.e don't process regions that are not relevant to this source).

    Parameters

    • extent: Extent

      The extent to test.

    Returns boolean

  • Fire an event type.

    Type Parameters

    • T extends "updated"

    Parameters

    Returns void

  • Applies the callback for each feature in this source.

    Parameters

    • callback: ((arg0) => unknown)

      The callback.

    Returns void

  • Checks if listener is added to an event type.

    Type Parameters

    • T extends "updated"

    Parameters

    Returns boolean

  • Type Parameters

    • T extends string

    Parameters

    Returns boolean

  • Initializes the source.

    Parameters

    • opts: {
          targetProjection: string;
      }

      Options.

      • targetProjection: string

    Returns Promise<void>

    A promise that resolves when the source is initialized.

  • Test the intersection between the specified extent and this source's extent. This method may be overriden to perform special logic.

    Parameters

    • extent: Extent

      The extent to test.

    Returns boolean

    true if the extent and this source extent intersects, false otherwise.

  • Loads the features from this source, either from:

    • the URL
    • the data string (for example a GeoJSON string)
    • the features array

    Returns Promise<void>

  • Removes a listener from an event type.

    Type Parameters

    • T extends "updated"

    Parameters

    Returns void

  • Type Parameters

    • T extends string

    Parameters

    Returns void

  • Reprojects a feature from the source projection into the target (instance) projection.

    Parameters

    Returns void

  • Change the style of this source. This triggers an update of the source.

    Parameters

    • style: Style | StyleFunction

      The style, or style function.

    Returns void