D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
tmcw
Full window
Github gist
Addin a feature with mapbox.js
<!DOCTYPE html> <html> <head> <title>mapbox.js</title> <style> body { font:13px/20px 'Helvetica Neue'; } #map-auto { width:960px; height:500px; } </style> <script src='https://mapbox.com/mapbox.js/mapbox.0.0.0.min.js'></script> <link href='https://mapbox.com/mapbox.js/mapbox.0.0.0.min.css' type='text/css' rel='stylesheet' /> </head> <body> <div class='map' id='map-auto'></div> <script>mapbox.load('https://a.tiles.mapbox.com/v3/tmcw.map-hehqnmda.jsonp', mapbox.auto('map-auto', function(map) { map.smooth(false); var markers = mapbox.markers() .add_feature({ geometry: { coordinates: [0, 0] } }); map.addLayer(markers); }));</script> </body> </html>