UNPKG

point-is-in-polygon

Version:

The `point-is-in-polygon` package is a lightweight package that was developed to check if the coordinates of a point are in the coordinates of a polygon.

12 lines (11 loc) 313 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LineString = void 0; var LineString = /** @class */ (function () { function LineString(points) { this.points = points; Object.freeze(this); } return LineString; }()); exports.LineString = LineString;