// 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(/~~/,"
","Janggun mine, Bonghwa-gun, Gyeongsangbuk-do (Kyongsang-bukto; Gyeongsangbugdo), South Korea");
cm(46.6558333333,15.3180555556,"~~58067.html\">Aldrian quarry, Lieschengraben, Oberhaag, Remschnigg Mts, Styria, Austria~)Taucher, J. & Postl, W. (1992), Exel, R. (1993)
","Aldrian quarry, Lieschengraben, Oberhaag, Remschnigg Mts, Styria, Austria");
cm(49.6549987792969,12.4636106491089,"~~108622.html\">Hagendorf, Waidhaus, Vohenstrauß, Oberpfälzer Wald, Upper Palatinate, Bavaria, Germany~)M.E. Ciriotti - 05.06.2008 - Probed
","Hagendorf, Waidhaus, Vohenstrauß, Oberpfälzer Wald, Upper Palatinate, Bavaria, Germany");
cm(30.3077774047852,-104.018608093262,"~~27533.html\">Marfa, Presidio Co., Texas, USA~)Handbook of Mineralogy
~$~!0394936001256574792.jpg\">Takanelite © 2009, JGW
Strictly a reference image of the extremely rare mineral takanelite, on agate, from the locality documented in <i>Handbook of Mineralogy</i>. S410-011 0.05 cm field of view. Excalibur Mineral Company specimen.~%","Marfa, Presidio Co., Texas, USA");
}
|