IGeoObjectSequence

Extends ICustomizable, IEventEmitter, IParentOnMap.

Interface of an unchangeable collection of geo objects.

Constructor | Fields | Events | Methods

Constructor

IGeoObjectSequence()

Fields

Name

Type

Description

events

IEventManager

Event manager.

Inherited from IEventEmitter.

options

IOptionManager

Options manager.

Inherited from ICustomizable.

Events

Name

Description

boundschange

Change to coordinates of the geographical area that spans the collection and its child geo objects. Instance of the Event class.

mapchange

Map reference changed. Data fields:

  • oldMap - Old map.
  • newMap - New map.

Inherited from IParentOnMap.

optionschange

Change to the object options.

Inherited from ICustomizable.

pixelboundschange

Change to pixel coordinates of the area that includes the collection and its child geo objects. Instance of the Event class.

Methods

Name

Returns

Description

each(callback[, context])

Calls a handler function for each child geo object.

get(index)

IGeoObject

Returns a child geo object with the specified index.

getBounds()

Number[][]|null

Returns geographical coordinates of the area that covers the collection and its child geo objects.

getIterator()

IIterator

Returns iterator for child geo objects in the collection.

getLength()

Integer

Returns length of the collection.

getMap()

Map

Returns reference to the map.

Inherited from IParentOnMap.

getPixelBounds()

Number[][]|null

Returns global pixel coordinates of the area that spans the collection and its child geo objects.

indexOf(object)

Integer

Returns index of the child geo object. If the geo object cannot be found in the collection, -1 is returned.

Events details

boundschange

Change to coordinates of the geographical area that spans the collection and its child geo objects. Instance of the Event class.

pixelboundschange

Change to pixel coordinates of the area that includes the collection and its child geo objects. Instance of the Event class.

Methods details

each

{} each(callback[, context])

Calls a handler function for each child geo object.

Parameters:

Parameter

Default value

Description

callback*

—

Type: Function

Handler function.

context

—

Type: Object

Context for the handler function.

* Mandatory parameter/option.

get

{IGeoObject} get(index)

Returns a child geo object with the specified index.

Parameters:

Parameter

Default value

Description

index*

—

Type: Integer

Index.

* Mandatory parameter/option.

getBounds

{Number[][]|null} getBounds()

Returns geographical coordinates of the area that covers the collection and its child geo objects.

getIterator

{IIterator} getIterator()

Returns iterator for child geo objects in the collection.

getLength

{Integer} getLength()

Returns length of the collection.

getPixelBounds

{Number[][]|null} getPixelBounds()

Returns global pixel coordinates of the area that spans the collection and its child geo objects.

indexOf

{Integer} indexOf(object)

Returns index of the child geo object. If the geo object cannot be found in the collection, -1 is returned.

Parameters:

Parameter

Default value

Description

object*

—

Type: IGeoObject

Child object.

* Mandatory parameter/option.