Created
February 28, 2025 23:59
-
-
Save PatrickFanella/ce8a4b8476066dc73db75f586d138bc0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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