<title>markers.js: simple markers for Modest Maps</title>
<script type='text/javascript'
src='https://mapbox.com/markers.js/dist/markers.min.js'></script>
<script type='text/javascript'
src='https://mapbox.com/markers.js/dist/markers.externals.js'></script>
<link href='https://mapbox.com/markers.js/dist/markers.css'
rel='stylesheet' type='text/css' />
body { font: 14px/20px 'Helvetica', 'Helvetica Neue'; background:#eee; }
.simplestyle-marker { transform:rotate(180); }
<div class='map' id='map'>
<script type='text/javascript'>
wax.tilejson('https://a.tiles.mapbox.com/v3/tmcw.map-bzuvyug3.jsonp',
var m = new MM.Map('map', new wax.mm.connector(tj));
wax.tilejson('https://darksky-proxy.herokuapp.com/interesting/', function(features) {
storms = features.storms.map(function(f) {
properties: { title: f.city, description: '<a href="https://forecast.weather.gov/MapClick.php?lat=' + f.latitude + '&lon=' + f.longitude + '&site=okx&unit=0&lg=en&FcstType=text">on noaa</a>', 'marker-color': '#3D5982', 'marker-size': 'small' },
geometry: { coordinates: [ f.longitude, f.latitude ] } };
var ml = mapbox.markers.layer()
mapbox.markers.interaction(ml);