> a.) Is it possible to list all the results on one page, or atleast > replace the "more results" link with a "next" link so I can view > coordinates of all results rather than just the first 4 pages?
Yup, all 5,000 just so you can look for patterns. Whatever is it you're really trying to do? The "maps" side of your code is already set up to process whatever size chunks of data it is fed. The thing that's currently 'paging' your results is the maps Local Search control you are using. Your Local Search seems to be defaulting to 'small' result sets ; that's four at a time. You should look in the Search API documentation, examples , and discussion group for anything you might do about that. Starter - http://groups.google.com/group/Google-AJAX-Search-API/browse_thread/thread/94ea88f5a9e7e76f/55bf76531e1d40de?lnk=gst&q=number+localsearch#55bf76531e1d40de You should read this thread perhaps - http://groups.google.com/group/Google-Maps-API/browse_thread/thread/309055e220b0268b/e978916ec8e63fda?lnk=gst&q=localsearch+8#e978916ec8e63fda You'll be interested in the big red text on the homepage of the Search API group http://groups.google.com/group/Google-AJAX-Search-API?lnk=srg > b.) This isn't exactly a google api question, but looking at my page, > can you tell me why the latlong div is centered while the info div is > aligned properly?? This has really brought some confusion to my table. The lefthand table cell has lots of content, so it stretches to fit it in. That's what tables are supposed to do. The righthand table cell has less content, part-empty if you like. But the cell has to be made the same height as its neighbour, thats what tables are supposed to do. So the small content floats about in the big space, unless you tell the browser where to put it. http://www.google.co.uk/search?hl=en&q=position+content+at+top+of+table+cell&meta= Quick way is to add some style=' ' to your <td> --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
