Skip to content

Instantly share code, notes, and snippets.

@jatorre
Last active April 16, 2020 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jatorre/565c7996d20bc4c045e6c8e26949db83 to your computer and use it in GitHub Desktop.
Save jatorre/565c7996d20bc4c045e6c8e26949db83 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>COVID 19 Risk Index</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="docs/images/favicon.ico" />
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css" integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==" crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js" integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew==" crossorigin=""></script>
</head>
<body>
<style>
html, body, #map {
height: 100%;
padding: 0;
margin: 0;
}
</style>
<div id="map"></div>
<script>
var mapZoomLimits={minZoom:11,maxZoom:14};
var map = L.map('map', {
'center': [40.775993, -73.970675],
'zoom': 9
});
//BASEMAP
L.tileLayer('https://{s}.basemaps.cartocdn.com/rastertiles/light_all/{z}/{x}/{y}.png',
mapZoomLimits).addTo(map);
L.tileLayer('https://storage.googleapis.com/cartotiles/sd_covid19_index/{z}_{x}_{y}.png',
mapZoomLimits).addTo(map);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment