multiRouter.pedestrian.Path

Note

The constructor of the multiRouter.pedestrian.Path class is hidden, as this class is not intended for autonomous initialization.

Extends IGeoObject.

Representation of the pedestrian route path. A single route can contain several paths, and each path connects two waypoints.

Fields | Events | Methods

Creates a representation of the pedestrian route path.

Fields

Name

Type

Description

events

IEventManager

Event manager.

Inherited from IDomEventEmitter.

geometry

IGeometry|null

Geo object geometry.

Inherited from IGeoObject.

model

multiRouter.pedestrian.PathModel

Data model for the multiroute path.

options

IOptionManager

Options manager.

Inherited from ICustomizable.

properties

data.Manager

Multiroute's path data. The following fields are available:

  • index: Integer - The sequential number of the path in the multiroute's corresponding route.
  • type: String - The route type identifier; takes the value "pedestrian" for pedestrian routes.
  • distance: Object - An object with the "text" and "value" fields that describes the length of the path in meters.
  • duration: Object - An object with the "text" and "value" fields that describes the travel time of the path in seconds.
  • coordinates: Number[][] - Coordinates of all points on the path.
  • encodedCoordinates: String - A string of base64-encoded coordinates for all points on the path.

state

IDataManager

State of the geo object.

Inherited from IGeoObject.

Events

Name

Description

click

Single left-click on the object. When using, keep in mind that mouse events are emulated when a touch screen is used. Instance of the MapEvent class. More information is available in domEvent.manager.

Inherited from IDomEventEmitter.

contextmenu

Calls the element's context menu. When using, keep in mind that mouse events are emulated when a touch screen is used. Instance of the MapEvent class. More information is available in domEvent.manager.

Inherited from IDomEventEmitter.

dblclick

Double left-click on the object. When using, keep in mind that mouse events are emulated when a touch screen is used. Instance of the MapEvent class. More information is available in domEvent.manager.

Inherited from IDomEventEmitter.

geometrychange

Change to the geo object geometry. Instance of the Event class. Names of fields that are available via the Event.get method:

  • originalEvent: IEvent - Original event of the geometry.

Inherited from IGeoObject.

mapchange

Map reference changed. Data fields:

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

Inherited from IParentOnMap.

mousedown

Pressing the mouse button over the object. When using, keep in mind that mouse events are emulated when a touch screen is used. Instance of the MapEvent class. More information is available in domEvent.manager.

Inherited from IDomEventEmitter.

mouseenter

Pointing the cursor at the object. When using, keep in mind that mouse events are emulated when a touch screen is used. Instance of the MapEvent class. More information is available in domEvent.manager.

Inherited from IDomEventEmitter.

mouseleave

Moving the cursor off of the object. When using, keep in mind that mouse events are emulated when a touch screen is used. Instance of the MapEvent class. More information is available in domEvent.manager.

Inherited from IDomEventEmitter.

mousemove

Moving the cursor over the object. When using, keep in mind that mouse events are emulated when a touch screen is used. Instance of the MapEvent class. More information is available in domEvent.manager.

Inherited from IDomEventEmitter.

mouseup

Letting go of the mouse button over an object. When using, keep in mind that mouse events are emulated when a touch screen is used. Instance of the MapEvent class. More information is available in domEvent.manager.

Inherited from IDomEventEmitter.

multitouchend

End of multitouch. This event is only available on devices that support multitouch. Returns an implementation of the IMultiTouchEvent interface.

Inherited from IDomEventEmitter.

multitouchmove

Repeating event during multitouch. This event is only available on devices that support multitouch. Returns an implementation of the IMultiTouchEvent interface with information about touches. Defines the touches property, which contains a list of touches. Every touch is described by an object that contains the following fields:

  • clientX - X coordinate of the touch relative to the viewable area of the browser.
  • clientY - Y coordinate of the touch relative to the viewable area of the browser.
  • pageX - X coordinate of the touch relative to the beginning of the document.
  • pageY - Y coordinate of the touch relative to the beginning of the document.

Inherited from IDomEventEmitter.

multitouchstart

Start of multitouch. This event is only available on devices that support multitouch. Returns an implementation of the IMultiTouchEvent interface with information about touches. Defines the touches property, which contains a list of touches. Every touch is described by an object that contains the following fields:

  • clientX - X coordinate of the touch relative to the viewable area of the browser.
  • clientY - Y coordinate of the touch relative to the viewable area of the browser.
  • pageX - X coordinate of the touch relative to the beginning of the document.
  • pageY - Y coordinate of the touch relative to the beginning of the document.

Inherited from IDomEventEmitter.

optionschange

Change to the object options.

Inherited from ICustomizable.

overlaychange

Change to the geo object overlay. Instance of the Event class. Names of fields that are available via the Event.get method:

  • overlay: IOverlay|null - Reference to the overlay.
  • oldOverlay: IOverlay|null - Previous overlay of the geo object.

Inherited from IGeoObject.

parentchange

The parent object reference changed.

Data fields:

  • oldParent - Old parent.
  • newParent - New parent.

Inherited from IChild.

propertieschange

Change to the geo object data. Instance of the Event class. Names of fields that are available via the Event.get method:

  • originalEvent: IEvent - Original event of the data manager.

Inherited from IGeoObject.

update

Updating the path rendering. Instance of the Event class.

wheel

Mouse wheel scrolling. When using, keep in mind that mouse events are emulated when a touch screen is used. Instance of the MapEvent class. More information is available in domEvent.manager.

Inherited from IDomEventEmitter.

Methods

Name

Returns

Description

getMap()

Map

Returns reference to the map.

Inherited from IParentOnMap.

getOverlay()

vow.Promise

Returns the promise object, which is confirmed by the overlay object at the time it is actually created, or is rejected with an appropriate error message.

Inherited from IGeoObject.

getOverlaySync()

IOverlay|null

The method provides synchronous access to the overlay.

Inherited from IGeoObject.

getParent()

IParentOnMap|null

Returns link to the parent object, or null if the parent element was not set.

Inherited from IChildOnMap.

getSegmentMarkers()

GeoObjectCollection

Returns a child collection of segment markers.

getSegments()

GeoObjectCollection

Returns the child collection of segments that the path consists of.

setParent(parent)

IChildOnMap

Sets the parent object. If the null value is passed, the manager element will only be deleted from the current parent object.

Inherited from IChildOnMap.

Fields details

model

{multiRouter.pedestrian.PathModel} model

Data model for the multiroute path.

properties

{data.Manager} properties

Multiroute's path data. The following fields are available:

  • index: Integer - The sequential number of the path in the multiroute's corresponding route.
  • type: String - The route type identifier; takes the value "pedestrian" for pedestrian routes.
  • distance: Object - An object with the "text" and "value" fields that describes the length of the path in meters.
  • duration: Object - An object with the "text" and "value" fields that describes the travel time of the path in seconds.
  • coordinates: Number[][] - Coordinates of all points on the path.
  • encodedCoordinates: String - A string of base64-encoded coordinates for all points on the path.

Events details

update

Updating the path rendering. Instance of the Event class.

Methods details

getSegmentMarkers

{GeoObjectCollection} getSegmentMarkers()

Returns a child collection of segment markers.

getSegments

{GeoObjectCollection} getSegments()

Returns the child collection of segments that the path consists of.