Last active
October 7, 2020 17:40
-
-
Save yohman/8f4d6fd45c9263584ef34116b18345c4 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | |
<script> | |
L_NO_TOUCH = false; | |
L_DISABLE_3D = false; | |
</script> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script> | |
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/> | |
<link rel="stylesheet" href="https://rawcdn.githack.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/> | |
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style> | |
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style> | |
<meta name="viewport" content="width=device-width, | |
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | |
<style> | |
#map_9f0eba9f7ab74b0cb77c50547da30f75 { | |
position: relative; | |
width: 100.0%; | |
height: 100.0%; | |
left: 0.0%; | |
top: 0.0%; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="folium-map" id="map_9f0eba9f7ab74b0cb77c50547da30f75" ></div> | |
</body> | |
<script> | |
var map_9f0eba9f7ab74b0cb77c50547da30f75 = L.map( | |
"map_9f0eba9f7ab74b0cb77c50547da30f75", | |
{ | |
center: [34.0721237, -118.4440685], | |
crs: L.CRS.EPSG3857, | |
zoom: 15, | |
zoomControl: true, | |
preferCanvas: false, | |
} | |
); | |
var tile_layer_5240e427492f4b9087f4682da4b7b50f = L.tileLayer( | |
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", | |
{"attribution": "Data by \u0026copy; \u003ca href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false} | |
).addTo(map_9f0eba9f7ab74b0cb77c50547da30f75); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment