I would like to detect that a google.maps.LatLng is inside a google.maps.Polygon.

How can I do that ?

Cheers,

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

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

link|improve this answer
feedback

I used this algorithm to detect that the point is inside the polygon : http://alienryderflex.com/polygon/

I added a new method contains to the Polygon :

// Add a function contains(point) to the Google Maps API v.3

google.maps.Polygon.prototype.contains = function(point) {
  var j=0;
  var oddNodes = false;
  var x = point.lng();
  var y = point.lat();

  var paths = this.getPath();

  for (var i=0; i < paths.getLength(); i++) {
    j++;
    if (j == paths.getLength()) {j = 0;}
    if (((paths.getAt(i).lat() < y) && (paths.getAt(j).lat() >= y))
    || ((paths.getAt(j).lat() < y) && (paths.getAt(i).lat() >= y))) {
      if ( paths.getAt(i).lng() + (y - paths.getAt(i).lat())
      /  (paths.getAt(j).lat()-paths.getAt(i).lat())
      *  (paths.getAt(j).lng() - paths.getAt(i).lng())<x ) {
        oddNodes = !oddNodes
      }
    }
  }
  return oddNodes;
}

google.maps.Polyline.prototype.contains = google.maps.Polygon.prototype.contains;
link|improve this answer
This almost worked for me, but in the case of certain multipolygon features it failed to correctly detect that my point was in the polygon. However, the code linked in @Andrei larus's answer below appears to work nicely in all cases. – David Mills Feb 10 at 20:23
feedback

Google provides their own implementation within the geometry library, which I haven't checked, but presumably covers the edge cases discussed in the other answers.

See the containsLocation method described here. Note that you will have to import the geometry library explicitly, as it is not in the base map API

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.