# Waypoint
Class
## Methods
| Name | Parameters | Return Type | Description |
| --- | :---: | :---: | --- |
| Constructor | location as GraffitiMap.Point <br> isStopover as Boolean | (None) | Creates a new instance of the class. |
| Attributes | Hidden | toJSON | |
## Properties
| Name | Type | Default Value | Description |
| --- | :---: | :---: | --- |
| Attributes | mID | String | |
| Attributes | ID | Nil | |
| IsStopover | Boolean | False | Determines if this is a point where a stop is planned, or just a change in direction. |
| Location | GraffitiMap.Point | Nil | Waypoint global coordinates. |
| Tag | Variant | Nil | Developer storage. |
## Examples
### Sample Waypoint
```
var waypoint as new GraffitiDirections.Waypoint( new GraffitiMap.Point( 0, 0 ), False )
```