Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tparkin/Google-Maps-Point-in-Polygon

Adds a containsLatLng() method to Polygon class for Google Maps API v3
https://github.com/tparkin/Google-Maps-Point-in-Polygon

Last synced: about 2 months ago
JSON representation

Adds a containsLatLng() method to Polygon class for Google Maps API v3

Awesome Lists containing this project

README

        

This is a Javascript Google Maps v3 extension for the Polygon class to detect whether or not a point resides within it.

Simplest Usage:

var coordinate = new google.maps.LatLng(40, -90);
var polygon = new google.maps.Polygon([], "#000000", 1, 1, "#336699", 0.3);
var isWithinPolygon = polygon.containsLatLng(coordinate);