Skip to content

Instantly share code, notes, and snippets.

@bsudekum
Created October 1, 2013 21:23
Show Gist options
  • Save bsudekum/6785327 to your computer and use it in GitHub Desktop.
Save bsudekum/6785327 to your computer and use it in GitHub Desktop.
video embed
<!DOCTYPE html>
<html>
<head>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' />
<script src='http://api.tiles.mapbox.com/mapbox.js/v1.2.0/mapbox.js'></script>
<link href='http://api.tiles.mapbox.com/mapbox.js/v1.2.0/mapbox.css' rel='stylesheet' />
<!--[if lte IE 8]>
<link href='//api.tiles.mapbox.com/mapbox.js/v1.2.0/mapbox.ie.css' rel='stylesheet' >
<![endif]-->
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body>
<div id='map'></div>
<script>
var map = L.mapbox.map('map', 'bobbysud.map-rm7pg202')
.setView([37.9, -77], 6);
L.marker([37.9, -76]).addTo(map)
.bindPopup('Text')
.openPopup();
L.marker([38.9, -77]).addTo(map)
.bindPopup('<iframe width="300" height="215" src="http://www.youtube.com/embed/6xqZ6OdnzjM" frameborder="0" allowfullscreen></iframe>')
.openPopup();
L.marker([35.9, -78]).addTo(map)
.bindPopup('<img src="http://upload.wikimedia.org/wikipedia/commons/2/26/YellowLabradorLooking_new.jpg" height="200px" />')
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment