new ol.source.ImageVector(options) experimental
Name | Type | Description | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Options.
|
Fires:
-
change
experimental - Triggered when the state of the source changes.
Extends
Methods
-
changed() inherited experimental
-
Increases the revision counter and disptches a 'change' event.
Fires:
-
change
experimental
-
-
getAttributions(){Array.<ol.Attribution>} inherited
-
Returns:
Attributions.
-
getLogo(){string|olx.LogoOptions|undefined} inherited
-
Returns:
Logo.
-
getProjection(){ol.proj.Projection} inherited experimental
-
Returns:
Projection.
-
getRevision(){number} inherited experimental
-
Returns:
Revision.
-
getSource(){ol.source.Vector} experimental
-
Returns:
Source.
-
getState(){ol.source.State} inherited experimental
-
Returns:
State.
-
getStyle(){ol.style.Style|Array.<ol.style.Style>|ol.style.StyleFunction}
-
Get the style for features. This returns whatever was passed to the
style
option at construction or to thesetStyle
method.Returns:
Layer style.
-
getStyleFunction(){ol.style.StyleFunction|undefined}
-
Get the style function.
Returns:
Layer style function.
-
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
inlistener
.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
inlistener
.Returns:
Unique key for the listener.
-
setStyle(style)
-
Set the style for features. This can be a single style object, an array of styles, or a function that takes a feature and resolution and returns an array of styles. If it is
undefined
the default style is used. If it isnull
the layer has no style (anull
style), so only features that have their own styles will be rendered in the layer. Seeol.style
for information on the default style.Name Type Description style
ol.style.Style | Array.<ol.style.Style> | ol.style.StyleFunction | undefined Layer style.
-
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 thelistener
. -
unByKey(key) inherited
-
Removes an event listener using the key returned by
on()
oronce()
. Note that using theol.Observable.unByKey
static function is to be preferred.Name Type Description key
goog.events.Key The key returned by
on()
oronce()
.