> Originally, I had thought that I would create a separate SQL query > based on distance – say select all OGC_GEOM polygons that have their > centerpoint within 1000 feet of the centerpoint of the parcel I am > currently working with.
Assuming you have some kind of geo-location info in your database, just search it within a simple rectangular bound based on the map viewport. select polys where (eastbound < polypointlong AND polypointlong < westbound) AND ( latitude stuff) to illustrate the principle. You'd want to select unique polys as you'll get multiple hits. cheers, Ross K --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
