> I need to show listings stored in my database which falls in the route as > well as 5 kms off the route. > I also have a zip code database of Australia which has zip code, latitude > and longitude. Every listing has a zip code assigned to it.
Send the coordinates of the polyline to some server-side function you write. Step through the line, and at say 1km or 0.5km intervals, depending how big Australian postcode areas are, look the point up in your postcode database. Also search 5km radius around in your listings database. Blend this data into your results set, so that you don't duplicate. The Maps API can't help with any of that. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-js-api-v3?hl=en.
