Class: StaticVector

ol.source.StaticVector

new ol.source.StaticVector(options) experimental

Name Type Description
options

Options.

Name Type Description
arrayBuffer ArrayBuffer | undefined optional

Array buffer.

attributions Array.<ol.Attribution> | undefined optional

Attributions.

doc Document | undefined optional

Document.

extent ol.Extent | undefined optional

Extent.

format ol.format.Feature

Format.

logo string | undefined optional

Logo.

node Node | undefined optional

Node.

object Object | undefined optional

Object.

projection ol.proj.ProjectionLike

Projection.

text string | undefined optional

Text.

url string | undefined optional

URL.

urls Array.<string> | undefined optional

URLs.

Fires:

Subclasses

Extends

Methods

addFeature(feature) inherited experimental

Name Type Description
feature ol.Feature

Feature.

addFeatures(features) inherited experimental

Name Type Description
features Array.<ol.Feature>

Features.

dispatchChangeEvent() inherited experimental

Dispatches a change event.

Fires:
  • change experimental

forEachFeature(f, opt_this){S|undefined} inherited experimental

Name Type Description
f function

Callback.

this T optional

The object to use as this in f.

forEachFeatureInExtent(extent, f, opt_this){S|undefined} inherited experimental

Name Type Description
extent ol.Extent

Extent.

f function

Callback.

this T optional

The object to use as this in f.

getClosestFeatureToCoordinate(coordinate){ol.Feature} inherited experimental

Name Type Description
coordinate ol.Coordinate

Coordinate.

Returns:
Closest feature.
Returns:
Extent.

getFeatureById(id){ol.Feature} inherited experimental

Get a feature by its identifier (the value returned by feature.getId()). Note that the index treats string and numeric identifiers as the same. So source.getFeatureById(2) will return a feature with id '2' or 2.

Name Type Description
id string | number

Feature identifier.

Returns:
The feature (or null if not found).

getFeatures(){Array.<ol.Feature>} inherited experimental

Returns:
Features.

getFeaturesAtCoordinate(coordinate){Array.<ol.Feature>} inherited experimental

Name Type Description
coordinate ol.Coordinate

Coordinate.

Returns:
Features.
Returns:
State.

on(type, listener, opt_this){goog.events.Key} inherited experimental

Listen for a certain type of event.

Name Type Description
type string | Array.<string>

The event type or array of event types.

listener function

The listener function.

this Object optional

The object to use as this in listener.

Returns:
Unique key for the listener.

once(type, listener, opt_this){goog.events.Key} inherited experimental

Listen once for a certain type of event.

Name Type Description
type string | Array.<string>

The event type or array of event types.

listener function

The listener function.

this Object optional

The object to use as this in listener.

Returns:
Unique key for the listener.

readFeatures(source){Array.<ol.Feature>} inherited experimental

Name Type Description
source ArrayBuffer | Document | Node | Object | string

Source.

Returns:
Features.

removeFeature(feature) inherited experimental

Name Type Description
feature ol.Feature

Feature.

un(type, listener, opt_this) inherited experimental

Unlisten for a certain type of event.

Name Type Description
type string | Array.<string>

The event type or array of event types.

listener function

The listener function.

this Object optional

The object to use as this in listener.

unByKey(key) inherited experimental

Removes an event listener using the key returned by on() or once().

Name Type Description
key goog.events.Key

Key.