I have 500 US cities in a MySQL table. I have the city name, state, longitude and latitude. I want to visually see these cities plotted on a map of the US.

How can I do this? Are they any free tools available? Google Maps or Google Earth maybe?

Obviously, it would take forever to plot each city individually. So I need a quick way of doing it, either through a program or by exporting the table as a spreadsheet and uploading it into some kind of generator that will do the plotting for me.

Please let me know your ideas. Thanks.

link|improve this question

75% accept rate
feedback

1 Answer

googlemaps (or any similar maps program) Depending on how you want to implement it, I would plot all the information, load up flags based on the long and lat, and then maybe have an unordered list of cities with either data attrs with the lat/long, or meta tags as children elements with lat and long. eventlistener that triggers on click and centers on the lat and long.

more info http://code.google.com/apis/maps/documentation/javascript/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.