Skip to content

Instantly share code, notes, and snippets.

@uafrazier
Last active August 29, 2015 14:13
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 uafrazier/e00bbb2f864d39c293ed to your computer and use it in GitHub Desktop.
Save uafrazier/e00bbb2f864d39c293ed to your computer and use it in GitHub Desktop.
Leaflet Map with a Polyline
<!DOCTYPE html>
<html>
<head>
<title>Leaflet Web Map</title>
<!-- reference to Leaflet CSS -->
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
<!-- reference to Leaflet JavaScript -->
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<!-- set width and height styles for map -->
<style>
#map {
width: 960px;
height:500px;
}
</style>
</head>
<body>
<!-- place holder for map -->
<div id="map"></div>
<script>
// create map object, tell it to live in 'map' div and give initial latitude, longitude, zoom values
// pass option to turn scroll wheel zoom off
var map = L.map('map',{scrollWheelZoom:false}).setView([43.64701, -79.39425], 15);
// add base map tiles from OpenStreetMap and attribution info to 'map' div
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
attribution: '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
// define array of points to use for line
var toUnion = [[43.64566, -79.38039],[43.6453, -79.38219],[43.64533, -79.38235],[43.64477, -79.38499],[43.64864, -79.38658],[43.64701, -79.39426]];
// add line between toUnion array points to map with some basic styling
L.polyline(toUnion,{color:'red',opacity:1}).addTo(map);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment