Skip to content

Instantly share code, notes, and snippets.

@PatrickFanella
Created February 28, 2025 23:59
Show Gist options
  • Save PatrickFanella/ce8a4b8476066dc73db75f586d138bc0 to your computer and use it in GitHub Desktop.
Save PatrickFanella/ce8a4b8476066dc73db75f586d138bc0 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<name>USMIN deposit database</name>
<description>Detailed descriptions of mineral districts, mines, and mineral occurrences.</description>
<!-- Define styles first -->
<Style id="Deposit_normal">
<IconStyle>
<scale>1</scale>
<Icon>
<href>https://maps.google.com/mapfiles/kml/paddle/red-circle.png</href>
</Icon>
</IconStyle>
</Style>
<Style id="Deposit_highlight">
<IconStyle>
<scale>1.2</scale>
<Icon>
<href>https://maps.google.com/mapfiles/kml/paddle/red-circle.png</href>
</Icon>
</IconStyle>
</Style>
<StyleMap id="DepositStyleMap">
<Pair>
<key>normal</key>
<styleUrl>#Deposit_normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#Deposit_highlight</styleUrl>
</Pair>
</StyleMap>
<!-- Placemarks -->
<Placemark>
<name>Ruby Creek Zone</name>
<description><![CDATA[Deposit: copper; cobalt]]></description>
<styleUrl>#DepositStyleMap</styleUrl>
<Point>
<coordinates>-156.945007086999965,67.064413673000047</coordinates>
</Point>
</Placemark>
<!-- Add more Placemarks as needed -->
</Document>
</kml>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment