Changelog
3.0.4
bwdetect
control for Modest Maps.jasmine
library.Changelog
3.0.1
#full
and #original
methods on wax.mm.fullscreen
allowing API
access to fullscreen toggling actions.Changelog
3.0.0
wax.mm.connector
,
wax.leaf.connector
and wax.g.connector
. The old wax.g.maptype
and
wax.mm.provider
have been removed.g
, leaf
and mm
controls now use the signature
function (map, tilejson, options) {}
where relevant TileJSON keys in
tilejson
are used if present and options
contains settings specific to
the control..appendTo
method to add the DOM
element to the map or to another element on the page.w.melt(func)
now has the same return value as func
.2.x.x
var provider = new wax.mm.provider({
baseUrl: 'http://a.tiles.mapbox.com/mapbox/',
layerName: 'natural-earth-2'});
var map = ...;
wax.mm.legend(map);
3.x.x
var connector = new wax.mm.connector({
tiles: 'http://a.tiles.mapbox.com/mapbox/1.0.0/natural-earth-2/{z}/{x}/{y}.png',
scheme: 'tms'
});
var map = ...;
wax.mm.legend(map, { legend: 'Content' }).appendTo(map.parent);
Changelog
2.1.4