Class WayPoint extends TravelObject

This class represent a way point

Source : file data/WayPoint.js at line 37

Constructor

new WayPoint ( )

The constructor

Source : file data/WayPoint.js at line 85

Public getters and setters

get address : String

The address of the WayPoint

Source : file data/WayPoint.js at line 111

set address

Source : file data/WayPoint.js at line 113

readonly get fullName : String

The full name of the WayPoint. Full name is created with the name and address or latitude and longitude of the WayPoint

Source : file data/WayPoint.js at line 150

get jsonObject : JsonObject

An object literal with the WayPoint properties and without any methods. This object can be used with the JSON object

Source : file data/WayPoint.js at line 201

set jsonObject

Source : file data/WayPoint.js at line 212

get lat : Number

The latitude of the WayPoint

Source : file data/WayPoint.js at line 127

get latLng : Array of Number

The latitude and longitude of the WayPoint

Source : file data/WayPoint.js at line 164

set latLng

Source : file data/WayPoint.js at line 166

set lat

Source : file data/WayPoint.js at line 129

get lng : Number

The longitude of the WayPoint

Source : file data/WayPoint.js at line 138

set lng

Source : file data/WayPoint.js at line 140

get name : String

The name of the WayPoint

Source : file data/WayPoint.js at line 95

set name

Source : file data/WayPoint.js at line 97

readonly get objId : Number

The objId of the WayPoint. objId are unique identifier given by the code

Source : file data/WayPoint.js at line 186

readonly get objType : ObjType

The ObjType of the WayPoint.

Source : file data/WayPoint.js at line 193

Private properties

#address : String

The address of the WayPoint

Source : file data/WayPoint.js at line 58

#lat : Number

The latitude of the WayPoint

Source : file data/WayPoint.js at line 65

#lng : Number

The longitude of the WayPoint

Source : file data/WayPoint.js at line 72

#name : String

The name of the WayPoint

Source : file data/WayPoint.js at line 51

#objId : Number

The objId of the WayPoint.

Source : file data/WayPoint.js at line 79

static #objType : ObjType

The object type for wayPoints

Source : file data/WayPoint.js at line 44