I want to take a list of lat long points and sort / toggle the display of them based on there proximity. Ideally I would like to do this on the client side. For instance, I often see maps that update a list based on the view of the current map. It appears that as you move the map or change the zoom of the map, it makes a separate query on every change and updates the results. It seems to me much more efficient to load a larger set of values, and then toggle the visibility and order based on the map zoom. I'm wondering if anyone has a technique for doing this, or if anyone has ever attempted this using javascript.
|
feedback
|
|
If you load a lot of markers than why hide them and not show them the whole time?As for the zoom you can use a marker clusterer.The other solution you are suggesting requires you to spatial query the markers(and probably implement the logic by yourself since i don't know any way that it can be done with the api) on the client according to the map viewport. Yes it would probably be more efficient but the question is how would you know which portions the user will explore so you can prefetch the markers? Cheers | |||||
feedback
|