ARB Map

From BarbWiki

(Difference between revisions)
Jump to: navigation, search
Coline (Talk | contribs)
(New page: .html <script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAhAGQtyLaWaWkUrhYIhsgQxQqjAgpscl_foZr5xVmqt5O0blNVRQNL0RqOMKlzK6IVeljsa6OLp0x8A" type="text/j...)
Newer edit →

Revision as of 18:23, 19 April 2010

.html

   <script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAhAGQtyLaWaWkUrhYIhsgQxQqjAgpscl_foZr5xVmqt5O0blNVRQNL0RqOMKlzK6IVeljsa6OLp0x8A"
           type="text/javascript"></script>
   <script type="text/javascript"> 
  
   var map;
   var geoXml; 
   var toggleState = 1;
   function initialize() {
     if (GBrowserIsCompatible()) {
       geoXml = new GGeoXml("http://library.athabascau.ca/Colin/ARB_map/sask12.kml");
       map = new GMap2(document.getElementById("map_canvas")); 
       map.setCenter(new GLatLng(55.637092, -114.345703), 6); 
       map.setUIToDefault();
       map.addOverlay(geoXml);
     }
   } 


   function toggleMyKml() {
     if (toggleState == 1) {
       map.removeOverlay(geoXml);
       toggleState = 0;
     } else {
       map.addOverlay(geoXml);
       toggleState = 1;
     }
   }

</script> .html

Personal tools