I try to get the 10 closest Markers from the center of the google map and sort them based of the center by distance in Javascript. So lets say i have 100 Markers in a Javascript array - i would like to display more informations about the 10 closests in a html unordered list. I found a similar example for api version 2 (example in version 2), but nothing for version 3 of google map api. Thanks for your help.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Whatever happens You need to calculate all distances. You can do it yourself with simple equations or use Google's geometry library: http://code.google.com/intl/pl-PL/apis/maps/documentation/javascript/geometry.html and its function: computeDistanceBetween(). Then store distance in custom marker property like e.g:
and sort it anyway you want. Hope it helps. |
|||||||
|
|
|||
|