Created
November 1, 2018 11:07
-
-
Save wadtech/c87f1eac4d886ca782011011569ec2d2 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/fomudof
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"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" /> | |
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script> | |
<style id="jsbin-css"> | |
#map { | |
width: 500px; | |
height: 500px; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="map"></div> | |
<script id="jsbin-javascript"> | |
'use strict'; | |
var map = L.map('map', { | |
zoom: 13 | |
}); | |
</script> | |
<script id="jsbin-source-css" type="text/css">#map { | |
width: 500px; | |
height: 500px; | |
}</script> | |
<script id="jsbin-source-javascript" type="text/javascript">let map = L.map('map', { | |
zoom: 13 | |
}); | |
</script></body> | |
</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
#map { | |
width: 500px; | |
height: 500px; | |
} |
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
'use strict'; | |
var map = L.map('map', { | |
zoom: 13 | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment