Class: StaticVector

ol.source.StaticVector

Abstract base class; normally only used for creating subclasses and not instantiated in apps. Base class for vector sources in one of the supported formats, where the data is read from a file or other static source.

new ol.source.StaticVector(options) experimental

Name Type Description
options

Options.

Name Type Description
arrayBuffer ArrayBuffer | undefined experimental

Array buffer.

attributions Array.<ol.Attribution> | undefined experimental

Attributions.

doc Document | undefined experimental

Document.

format ol.format.Feature experimental

Format.

logo string | olx.LogoOptions | undefined experimental

Logo.

node Node | undefined experimental

Node.

object Object | undefined experimental

Object.

projection ol.proj.ProjectionLike experimental

Projection.

text string | undefined experimental

Text.

url string | undefined experimental

URL.

urls Array.<string> | undefined experimental

URLs.

Fires:

Subclasses

Extends

Methods

Name Type Description
feature ol.Feature

Feature.

Name Type Description
features Array.<ol.Feature>

Features.

Remove all features.

dispatchChangeEvent() inherited experimental

Dispatches a change event.

Fires:
  • change experimental

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

Name Type Description
f function

Callback.

this T

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

The object to use as this in f.

Returns:
Attributions.

getClosestFeatureToCoordinate(coordinate){ol.Feature} inherited

Name Type Description
coordinate ol.Coordinate

Coordinate.

Returns:
Closest feature.

Get the extent of the features currently in the source.

Returns:
Extent.

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).
Returns:
Features.

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

Name Type Description
coordinate ol.Coordinate

Coordinate.

Returns:
Features.
Returns:
Logo.
Returns:
Projection.

getRevision(){number} inherited experimental

Returns:
Revision.
Returns:
State.

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

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

The object to use as this in listener.

Returns:
Unique key for the listener.

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

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

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.
Name Type Description
feature ol.Feature

Feature.

un(type, listener, opt_this) inherited

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

The object which was used as this by the listener.

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

Name Type Description
key goog.events.Key

Key.