Last active
February 15, 2019 16:36
-
-
Save matt-baker/4d30599eac73adf44d326e194791c5ff to your computer and use it in GitHub Desktop.
temp_ror_spills.html
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>MAC - ECP basemap</title> | |
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"> | |
<link href="css/core_style.css" media="all" rel="stylesheet"> | |
<link rel="icon" href="/images/favicon.ico" /> | |
<script src="js/jquery-2.0.0.min.js" type="text/javascript"></script> | |
<script src='js/geoJson-mac-airfields.js'></script> | |
<script type='text/javascript'> | |
$(document).ready(function() { | |
var queries = {}; | |
$.each(document.location.search.substr(1).split('&'), function(c, q) { | |
var i = q.split('='); | |
queries[i[0].toString()] = i[1].toString(); | |
}); | |
mapLat = queries.latitude; | |
mapLong = queries.longitude; | |
mapZoom = queries.zoom; | |
airport = queries.airport.toLowerCase(); | |
lot = queries.lot; | |
}); | |
var tenants = {}; | |
</script> | |
<script src='js/map.js' type='text/javascript'></script> | |
<script src='//api.tiles.mapbox.com/mapbox.js/v1.6.1/mapbox.js'></script> | |
<script src='js/leaflet.label.js'></script> | |
<link href='css/mapbox.css' rel='stylesheet' /> | |
<!--[if lte IE 8]> | |
<link href='/css/mapbox.ie.css' rel='stylesheet' > | |
<![endif]--> | |
<style> | |
#map { | |
position: absolute; | |
top: 0; | |
bottom: 0; | |
width: 100%; | |
} | |
.popup { | |
background-color: #fff; | |
padding: 0.25em; | |
text-align: center; | |
min-width: 150px; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="map"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment