I know very little about working with API's, but I do have the logins for the database. Is their any fancy application or easy tutorial that will allow me to show this data easily on a google map?
Thanks~!Populate a google map with data from a mysql database?
You need to write server-side code (CGI, Java, ASP, whatever) that serves up the content. (Or use something like Ruby on Rails to make the data-delivery easier)
And you'll need to write client-side javascript to place the data on the map. (see google maps api link)
Hopefully your table has latitude/longitude data in it (if not, you'll have to Geocode the results), and if so you can take the lat/long pairs and create GMarkers for each point that you want to show.
The main API classes you'll need are GMap2, GMarker, and GLatLong.
Happy mapping!
No comments:
Post a Comment