// Copyright (c) mindat.org 1993-2009
function j(lat,long) {var point = new GLatLng(lat,long); map.setCenter(point, 16);}
function cm(lat,long,html,name) {
var point = new GLatLng(lat,long); var marker = new GMarker(point,{icon:icon, title:name});
GEvent.addListener(marker, "click", function()
{
marker.openInfoWindowHtml(jsunpack(html));
//
// map.panTo(marker.getPoint());
var zoom = map.getZoom();
if(zoom<9) zoom=9;
map.setZoom(zoom);
map.setCenter(marker.getPoint(), zoom);
});
GEvent.addListener(marker,"mouseover", function() {
marker.setImage("kml-gm-o.png");
});
GEvent.addListener(marker,"mouseout", function() {
marker.setImage("kml-gm.png");
});
clus.AddMarker(marker,name);
}
function jsunpack(txt)
{
txt=txt.replace(/~~/,"
","Grand Lake Wolverine, Grand Lake District (Wolverine District), Grand Co., Colorado, USA");
cm(40.2891654968262,-106.040832519531,"~~113693.html\">Unknown Gold Occurrence (MRDS - 10091400), Grand Lake District (Wolverine District), Grand Co., Colorado, USA
","Unknown Gold Occurrence (MRDS - 10091400), Grand Lake District (Wolverine District), Grand Co., Colorado, USA");
cm(40.3105545043945,-105.978332519531,"~~113703.html\">Unknown REE (MRDS - 10017867), Grand Lake District (Wolverine District), Grand Co., Colorado, USA
","Unknown REE (MRDS - 10017867), Grand Lake District (Wolverine District), Grand Co., Colorado, USA");
cm(40.3105545043945,-105.997222900391,"~~113704.html\">Unknown REE Occurrence (MRDS - 10017868), Grand Lake District (Wolverine District), Grand Co., Colorado, USA
","Unknown REE Occurrence (MRDS - 10017868), Grand Lake District (Wolverine District), Grand Co., Colorado, USA");
cm(40.2961120605469,-105.95972442627,"~~113705.html\">Unknown REE Occurrence (MRDS - 10017869), Grand Lake District (Wolverine District), Grand Co., Colorado, USA
","Unknown REE Occurrence (MRDS - 10017869), Grand Lake District (Wolverine District), Grand Co., Colorado, USA");
cm(40.2383346557617,-105.886665344238,"~~134250.html\">Unnamed rhyolite flow, Grand Lake District (Wolverine District), Grand Co., Colorado, USA
","Unnamed rhyolite flow, Grand Lake District (Wolverine District), Grand Co., Colorado, USA");
cm(40.3397216796875,-105.922225952148,"~~113724.html\">Wolverine Mine, Grand Lake District (Wolverine District), Grand Co., Colorado, USA
","Wolverine Mine, Grand Lake District (Wolverine District), Grand Co., Colorado, USA");
var zoombox=new GLatLngBounds(new GLatLng(40.2316665649414,-106.040832519531),new GLatLng(40.3397216796875,-105.734443664551));
var zoomlevel = map.getBoundsZoomLevel(zoombox);
if(zoomlevel>15) zoomlevel=15;
map.setCenter(zoombox.getCenter(),zoomlevel);
}