piptest

1.0.5 • Public • Published

Points in Polygon test

可用于测试某一坐标点是否在国内(使用百度地图,example/index.html可用于绘制 polygon)。

The point-in-polygon (PIP) problem asks whether a given point in the plane lies inside or outside a polygon.

install

    npm install piptest

usage

    let arr = [
        {
            lat: 11,
            lng: 21
        },
        {
            lat: 12,
            lng: 22
        },
        {
            lat: 13,
            lng: 23
        },
        {
            lat: 31,
            lng: 31
        }
    ]
    let piptest = new PIPtest( arr );
    let result = piptest.test({
        lat: 31,
        lng: 31
    }); // Boolean

Package Sidebar

Install

npm i piptest

Weekly Downloads

1

Version

1.0.5

License

MIT

Last publish

Collaborators

  • joe223