Last active
October 21, 2018 04:32
-
-
Save NPashaP/7f30ff733c7a51edae086dfe7ec16e0a to your computer and use it in GitHub Desktop.
Leaflet - marker
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
license: gpl-3.0 |
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> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"/> | |
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script> | |
<style> | |
*{ | |
margin:0; | |
} | |
#map { | |
width: 100vw; | |
height: 100vh; | |
} | |
</style> | |
</head> | |
<body> | |
<div id='map'></div> | |
<script src="http://vizjs.org/viz.v1.3.0.min.js"></script> | |
<script> | |
var map = L.map('map',{ center: [37, -96],zoom: 5 }); | |
L.tileLayer(viz.leaflet.tiles.OpenStreetMap.WorldStreet, { | |
attribution: viz.leaflet.tiles.OpenStreetMap.attribution | |
}).addTo(map); | |
L.marker([37, -96]).addTo(map); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Pasha,Can someone help/guide me how to create creative coordinated visualization using d3.js similar to http://bl.ocks.org/NPashaP/96447623ef4d342ee09b with numerous charts and visualization on input of values using d3.csv/d3.json function.