Skip to content

MSurkov16/sb-polygon-pointer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sb-polygon-pointer

Simple PHP class that provides tools to define is a point (latitude/longitude) is inside the polygon

See the example at example.php

Install

Via Composer

$ composer require msurkov16/sb-polygon-pointer

Init custom polygon

$polygonBox = [
    [55.761515, 37.600375],
    [55.759428, 37.651156],
    [55.737112, 37.649566],
    [55.737649, 37.597301],
];

$sbPolygonEngine = new sbPolygonEngine($polygonBox);

Checking if point is inside polygon

$isCrosses = $sbPolygonEngine->isCrossesWith(55.746768, 37.625605);

// $isCrosses is boolean

Visualization of polygon and provided point to check

$sbPolygonEngine->previewBounds($draw_perpendicular = true, $draw_center_dot = true);
// it will return an <img src="src="data:image/jpeg;base64,....">

Change log

Please see CHANGELOG for more information what has changed recently.

Feel free to contribute

About

Simple PHP class that provides tools to define is a point (latitude/longitude) is inside the polygon

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%