jboudre / storelocator

Automatically exported from code.google.com/p/storelocator
0 stars 0 forks source link

Not working with lots of locations #11

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Make CSV file with many locations
2. Load CSV file into code

What is the expected output? What do you see instead?
Expect to see store list. None display.

Please provide any additional information below.
I am trying to use this code with a list that has 10,000 stores. There's 
nothing in the documentation to indicate that there is a limitation to the 
number of stores, but this must be too large of a data set.

Original issue reported on code.google.com by howbow...@gmail.com on 15 Mar 2013 at 9:12

GoogleCodeExporter commented 8 years ago
Yes, this is possibly too many stores. You should implement a custom DataFeed. 
You may be able to do the appropriate processing in memory, client-side using a 
quad tree for fast bounding box searches.

Here's one example, but grabs stores from a web server:
http://storelocator.googlecode.com/git/examples/dynamic.html

Original comment by cbro@google.com on 15 Mar 2013 at 10:24