HandyNotes Plugin Documentation

Documentation for the core framework used in Zarillion's HandyNotes expansion plugins.

View the Project on GitHub zarillion/handynotes-plugins

POIs

ns.poi.

POI

Base class for other POI Classes. POIs are only displayed when hovering a node.

POI({41176055, 41526214, 41995819, 43565838})
POI({color = 'Green', 41176055, 41526214}) -- this also works, but is not recommended
POI({color = 'Red', points = {41176055, 41526214, 41995819, 43565838}})

A POI can have just a table of coordinates, those will be marked by a dot. The color is by default blue and can be changed by the user through the settings. POIs can also have following properties:

Required Properties

ns.poi.POI requires the following properties:

Optional Properties

ns.poi.POI supports the following properties:


Path

A Path is used to draw lines between multiple coordinates.

Path({41176055, 41526214, 41995819, 43565838})
Path({color = 'Red', points = {41176055, 41526214, 41995819, 43565838}})

Line

This adds a Segmented Line between two far apart coordinates.

Line({41176055, 41526214})
Line({color = 'Red', points = {41176055, 41526214}})

Arrow

Uses Line as its base class but adds an arrow to the last segment.

Arrow({41176055, 41526214})

Circle

This is a function which returns coordinates of a circle.

Path({Circle({origin = 50005000, radius = 5.5})})

Required Properties

ns.poi.Cirlce requires the following properties:


Square

This is a function which returns coordinates of a square.

Path({Square({origin = 50005000, radius = 5.5})})

Required Properties

ns.poi.Square requires the following properties: