On Mar 24, 2:36 pm, JPodroskey <[email protected]> wrote: > Thanks for the response. > > So, assuming: > * I have a database with address > * I geocode all of those addresses such that I'm storing the long/lat > with the rest of the address information > * I take my addresses and put them on to a map > > At that point, I would still be unable to choose a point and radius > and see which of the addresses I've loaded fall within the radius?
It would be easier to query the database and only plot on the map the addresses within the results. That limits the amount of data you are transferring to the client and manipulating within the browser. However, if you insist in transferring all your data to the map, then providing it all goes into an array [or something], you can use Javascript to loop through it and select a subset. -- 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.
