2

I am doing some initial research this and I know very little about the subject. I need to create a solution that can take an address and then determine if that address is within some predefined boundaries (probably a series of connected streets). Does anybody have some advice on where to get started?

ProgrammingPope
  • 2,177
  • 4
  • 23
  • 36

1 Answers1

7

First you need to geocode the address (http://code.google.com/apis/maps/documentation/geocoding/), then you can use my point in polygon library to check if it is in the bounds. Check it out here: http://blog.appdelegateinc.com/point-in-polygon-checking-with-google-maps.html

Update: Check out the comments for someone who updated it to work with v3.

Matt Williamson
  • 39,165
  • 10
  • 64
  • 72