index.html
<!DOCTYPE html>
<html>
<head>
<script src='//api.tiles.mapbox.com/mapbox.js/v0.6.7/mapbox.js'></script>
<link href='//api.tiles.mapbox.com/mapbox.js/v0.6.7/mapbox.css' rel='stylesheet' />
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body>
<style>
.marker-image {
width:100px;
height:100px;
border:1px solid #000;
margin-left:-51px;
margin-top:-51px;
pointer-events:all;
position:absolute;
}
</style>
<div id='map'></div>
<script>
var map = mapbox.map('map');
map.addLayer(mapbox.layer().id('examples.map-vyofok3q'));
var markerLayer = mapbox.markers.layer().features([{
"geometry": { "type": "Point", "coordinates": [-74.00, 40]},
"properties": { "id": "foo" }
}, {
"geometry": { "type": "Point", "coordinates": [-75.00, 40]},
"properties": { "id": "bar" }
}]).factory(function(f) {
var elem = mapbox.markers.simplestyle_factory(f);
elem.id = f.properties.id;
return elem;
});
map.addLayer(markerLayer)
.setExtent(markerLayer.extent());
map.ui.attribution.add()
.content('<a href="//mapbox.com/about/maps">Terms & Feedback</a>');
</script>
</body>
</html>