51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
goog.require('ol.Map');
|
|
goog.require('ol.View');
|
|
goog.require('ol.layer.Tile');
|
|
goog.require('ol.proj');
|
|
goog.require('ol.source.TileJSON');
|
|
|
|
function transform(extent) {
|
|
return ol.proj.transformExtent(extent, 'EPSG:4326', 'EPSG:3857');
|
|
}
|
|
|
|
var extents = {
|
|
northwest: transform([-180, 0, 0, 85]),
|
|
northeast: transform([0, 0, 180, 85]),
|
|
southeast: transform([0, -85, 180, 0]),
|
|
southwest: transform([-180, -85, 0, 0]),
|
|
world: transform([-180, -85, 180, 85])
|
|
};
|
|
|
|
var base = new ol.layer.Tile({
|
|
source: new ol.source.TileJSON({
|
|
url: 'http://api.tiles.mapbox.com/v3/' +
|
|
'mapbox.world-black.json',
|
|
crossOrigin: 'anonymous'
|
|
})
|
|
});
|
|
|
|
var overlay = new ol.layer.Tile({
|
|
extent: extents.northwest,
|
|
source: new ol.source.TileJSON({
|
|
url: 'http://api.tiles.mapbox.com/v3/' +
|
|
'mapbox.world-glass.json',
|
|
crossOrigin: 'anonymous'
|
|
})
|
|
});
|
|
|
|
var map = new ol.Map({
|
|
layers: [base, overlay],
|
|
renderer: common.getRendererFromQueryString(),
|
|
target: 'map',
|
|
view: new ol.View({
|
|
center: [0, 0],
|
|
zoom: 1
|
|
})
|
|
});
|
|
|
|
for (var key in extents) {
|
|
document.getElementById(key).onclick = function(event) {
|
|
overlay.setExtent(extents[event.target.id]);
|
|
};
|
|
}
|