Mash-it-up Google Style Put your data on the Map
Google Maps One of the easiest APIs to use. In 5 minutes you can have a simple map on your site. First step – Get a Google Maps API Key:
The 5 Minute GMap Get the “Hello World” example: World_of_Google_Maps World_of_Google_Maps Copy that text into a new HTML file. Add your key (Replace ‘key=abcdefg’, with ‘key=the big long key from Google’) Lets add some controls (zoom/pan): map.addControl(new GSmallMapControl()); map.addControl(new GMapTypeControl());
Add markers to the map We need a Lat/Long coordinate in the format: XX.XXXXXX, -YY.YYYYYY (ex , – Portola Plaza) Create a new point: var point = new GLatLng( , ); Add it to the map! map.addOverlay(new GMarker(point)); Save your work and view it in your browser of choice!
All your data are belong on Google Maps For plotting many points, Google has included a way to import specially formatted XML files. With a simple loop all your points will be plotted to the map! synchronous_RPC synchronous_RPC Sample format:
Plotting Dynamic Data LCLS delivery routes are stored in a MySQL database. Using ASP.NET and a custom API, the routes are outputted into an XML formatted document which is loaded into the Google Map API: eliveryRoute&routeid=1&day=friday eliveryRoute&routeid=1&day=friday
Questions? Seldom updated blog: