-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
American Indian and Alaskan Native Casinos
- Loading branch information
lauraneckstein
committed
Dec 14, 2014
0 parents
commit e4144b4
Showing
12 changed files
with
4,229 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title> American Indian and Alaskan Native Casinos by Laura Newman Eckstein. Dedicated to Laurie Allen, Librarian, Haverford College, November 16, 2014 | ||
</title> | ||
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" /> | ||
<link rel="stylesheet" href="http://leaflet.github.io/Leaflet.markercluster/dist/MarkerCluster.Default.css" /> | ||
<link rel="stylesheet" href="http://leaflet.github.io/Leaflet.markercluster/dist/MarkerCluster.css" /> | ||
<link rel="stylesheet" href="http://k4r573n.github.io/leaflet-control-osm-geocoder/Control.OSMGeocoder.css" /> | ||
<link rel="stylesheet" href="https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v0.0.3/leaflet.fullscreen.css" /> | ||
|
||
|
||
|
||
<style> | ||
body { | ||
padding: 0; | ||
margin: 0; | ||
} | ||
html, body, #map { | ||
height: 100%; | ||
width: 100%; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div id="map" class="map"></div> | ||
|
||
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet-src.js"></script> | ||
<script src="js/casino.js"></script> | ||
<script src="js/ainh.js"></script> | ||
<script src="http://leaflet.github.io/Leaflet.markercluster/dist/leaflet.markercluster-src.js"></script> | ||
<script src="http://k4r573n.github.io/leaflet-control-osm-geocoder/Control.OSMGeocoder.js"></script> | ||
<script src="https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v0.0.3/Leaflet.fullscreen.min.js"></script> | ||
|
||
<script> | ||
var map = L.map('map', { | ||
center: [39, -98], | ||
zoom: 3, | ||
zoomControl: true, | ||
fullscreenControl: true | ||
|
||
}); | ||
|
||
var watercolor = L.tileLayer('http://{s}.tile.stamen.com/watercolor/{z}/{x}/{y}.jpg', { | ||
attribution: 'Map tiles by <a href="http://stamen.com">Stamen Design</a>, under <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>. Data by <a href="http://openstreetmap.org">OpenStreetMap</a>, under <a href="http://creativecommons.org/licenses/by-sa/3.0">CC BY SA</a>.' | ||
}).addTo(map); | ||
var lines = L.tileLayer('http://{s}.tile.stamen.com/toner-lines/{z}/{x}/{y}.jpg', { attribution: 'Map tiles by <a href="http://stamen.com">Stamen Design</a>, under <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>. Data by <a href="http://openstreetmap.org">OpenStreetMap</a>, under <a href="http://www.openstreetmap.org/copyright">ODbL</a>.' | ||
}).addTo(map); | ||
var labels = L.tileLayer('http://{s}.tile.stamen.com/toner-labels/{z}/{x}/{y}.jpg').addTo(map); | ||
var osmGeocoder = new L.Control.OSMGeocoder(); | ||
map.addControl(osmGeocoder); | ||
|
||
|
||
|
||
|
||
|
||
var mapping = L.layerGroup([watercolor, lines, labels]) | ||
|
||
//Thanks to amazing code from Marker Cluster | ||
var markers = L.markerClusterGroup({showCoverageOnHover: false}); | ||
var geoJsonLayer = L.geoJson(casino, { | ||
onEachFeature: function (feature, layer) { | ||
layer.bindPopup(feature.properties.CASINONAME); | ||
} | ||
}); | ||
|
||
markers.addLayer(geoJsonLayer); | ||
map.addLayer(markers); | ||
map.fitBounds(markers.getBounds()); | ||
|
||
var AINH = L.geoJson(indian, { | ||
onEachFeature: function (feature, layer) { | ||
layer.bindPopup(feature.properties.NAMELSAD); | ||
} | ||
|
||
}).addTo(map); | ||
|
||
var baseMaps = { | ||
|
||
|
||
}; | ||
|
||
var overlayMaps = { | ||
"Geographic Lines": lines, | ||
"Geographic Labels": labels, | ||
"American Indian and Alaskan Native Casinos": markers, | ||
"American Indian and Alaskan Native Lands": AINH | ||
}; | ||
|
||
|
||
L.control.layers(baseMaps, overlayMaps).addTo(map); | ||
//Data from the National Indian Gaming Commission | ||
//Data from 2013 US Census TIGER Shapefiles of American Indian and Alaskan Native lands | ||
//Thanks to help from Laurie Allen, github, and google. Here's to many more maps to come! | ||
</script> | ||
<script> | ||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | ||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | ||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | ||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga'); | ||
|
||
ga('create', 'UA-41390454-2', 'auto'); | ||
ga('send', 'pageview'); | ||
|
||
</script> | ||
</body> | ||
</html> |
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
.marker-cluster-small { | ||
background-color: rgba(181, 226, 140, 0.6); | ||
} | ||
.marker-cluster-small div { | ||
background-color: rgba(110, 204, 57, 0.6); | ||
} | ||
|
||
.marker-cluster-medium { | ||
background-color: rgba(241, 211, 87, 0.6); | ||
} | ||
.marker-cluster-medium div { | ||
background-color: rgba(240, 194, 12, 0.6); | ||
} | ||
|
||
.marker-cluster-large { | ||
background-color: rgba(253, 156, 115, 0.6); | ||
} | ||
.marker-cluster-large div { | ||
background-color: rgba(241, 128, 23, 0.6); | ||
} | ||
|
||
/* IE 6-8 fallback colors */ | ||
.leaflet-oldie .marker-cluster-small { | ||
background-color: rgb(181, 226, 140); | ||
} | ||
.leaflet-oldie .marker-cluster-small div { | ||
background-color: rgb(110, 204, 57); | ||
} | ||
|
||
.leaflet-oldie .marker-cluster-medium { | ||
background-color: rgb(241, 211, 87); | ||
} | ||
.leaflet-oldie .marker-cluster-medium div { | ||
background-color: rgb(240, 194, 12); | ||
} | ||
|
||
.leaflet-oldie .marker-cluster-large { | ||
background-color: rgb(253, 156, 115); | ||
} | ||
.leaflet-oldie .marker-cluster-large div { | ||
background-color: rgb(241, 128, 23); | ||
} | ||
|
||
.marker-cluster { | ||
background-clip: padding-box; | ||
border-radius: 20px; | ||
} | ||
.marker-cluster div { | ||
width: 30px; | ||
height: 30px; | ||
margin-left: 5px; | ||
margin-top: 5px; | ||
|
||
text-align: center; | ||
border-radius: 15px; | ||
font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif; | ||
} | ||
.marker-cluster span { | ||
line-height: 30px; | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow { | ||
-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in; | ||
-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in; | ||
-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in; | ||
transition: transform 0.3s ease-out, opacity 0.3s ease-in; | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
/* Left will inherit from right (so we don't need to duplicate code */ | ||
.github-fork-ribbon { | ||
/* The right and left lasses determine the side we attach our banner to */ | ||
position: absolute; | ||
|
||
/* Add a bit of padding to give some substance outside the "stitching" */ | ||
padding: 2px 0; | ||
|
||
/* Set the base colour */ | ||
background-color: #a00; | ||
|
||
/* Set a gradient: transparent black at the top to almost-transparent black at the bottom */ | ||
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.00)), to(rgba(0, 0, 0, 0.15))); | ||
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.15)); | ||
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.15)); | ||
background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.15)); | ||
background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.15)); | ||
background-image: linear-gradient(top, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.15)); | ||
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#000000', EndColorStr='#000000'); | ||
|
||
/* Add a drop shadow */ | ||
-webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.5); | ||
box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.5); | ||
|
||
z-index: 9999; | ||
} | ||
|
||
.github-fork-ribbon a { | ||
/* Set the font */ | ||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
font-size: 13px; | ||
font-weight: 700; | ||
color: white; | ||
|
||
/* Set the text properties */ | ||
text-decoration: none; | ||
text-shadow: 0 -1px rgba(0,0,0,0.5); | ||
text-align: center; | ||
|
||
/* Set the geometry. If you fiddle with these you'll also need to tweak the top and right values in #github-fork-ribbon. */ | ||
width: 200px; | ||
line-height: 20px; | ||
|
||
/* Set the layout properties */ | ||
display: inline-block; | ||
padding: 2px 0; | ||
|
||
/* Add "stitching" effect */ | ||
border-width: 1px 0; | ||
border-style: dotted; | ||
border-color: rgba(255,255,255,0.7); | ||
} | ||
|
||
.github-fork-ribbon-wrapper { | ||
width: 150px; | ||
height: 150px; | ||
position: absolute; | ||
overflow: hidden; | ||
top: 0; | ||
} | ||
|
||
.github-fork-ribbon-wrapper.left { | ||
left: 0; | ||
} | ||
|
||
.github-fork-ribbon-wrapper.right { | ||
right: 0; | ||
} | ||
|
||
.github-fork-ribbon-wrapper.left-bottom { | ||
position: fixed; | ||
top: inherit; | ||
bottom: 0; | ||
left: 0; | ||
} | ||
|
||
.github-fork-ribbon-wrapper.right-bottom { | ||
position: fixed; | ||
top: inherit; | ||
bottom: 0; | ||
right: 0; | ||
} | ||
|
||
.github-fork-ribbon-wrapper.right .github-fork-ribbon { | ||
top: 42px; | ||
right: -43px; | ||
|
||
/* Rotate the banner 45 degrees */ | ||
-webkit-transform: rotate(45deg); | ||
-moz-transform: rotate(45deg); | ||
-o-transform: rotate(45deg); | ||
transform: rotate(45deg); | ||
} | ||
|
||
.github-fork-ribbon-wrapper.left .github-fork-ribbon { | ||
top: 42px; | ||
left: -43px; | ||
|
||
/* Rotate the banner -45 degrees */ | ||
-webkit-transform: rotate(-45deg); | ||
-moz-transform: rotate(-45deg); | ||
-o-transform: rotate(-45deg); | ||
transform: rotate(-45deg); | ||
} | ||
|
||
|
||
.github-fork-ribbon-wrapper.left-bottom .github-fork-ribbon { | ||
top: 80px; | ||
left: -43px; | ||
|
||
/* Rotate the banner -45 degrees */ | ||
-webkit-transform: rotate(45deg); | ||
-moz-transform: rotate(45deg); | ||
-o-transform: rotate(45deg); | ||
transform: rotate(45deg); | ||
} | ||
|
||
.github-fork-ribbon-wrapper.right-bottom .github-fork-ribbon { | ||
top: 80px; | ||
right: -43px; | ||
|
||
/* Rotate the banner -45 degrees */ | ||
-webkit-transform: rotate(-45deg); | ||
-moz-transform: rotate(-45deg); | ||
-o-transform: rotate(-45deg); | ||
transform: rotate(-45deg); | ||
} |
Binary file not shown.
Oops, something went wrong.