mapserver/server/static/js/main.js

102 lines
2.6 KiB
JavaScript
Raw Normal View History

2019-01-20 21:50:24 +03:00
(function(){
var crs = L.Util.extend({}, L.CRS.Simple, {
//transformation: L.transformation(0.001, 0, -0.001, 0),
scale: function (zoom) {
return Math.pow(2, zoom-9);
}
});
var initialZoom = 11;
var initialCenter = [0, 0];
var map = L.map('image-map', {
minZoom: 2,
maxZoom: 12,
center: initialCenter,
zoom: initialZoom,
crs: crs
});
function getTileSource(layerId, x,y,zoom,cacheBust){
2019-01-22 22:19:04 +03:00
return "api/tile/" + layerId + "/" + x + "/" + y + "/" + zoom + "?_=" + Date.now();
2019-01-20 21:50:24 +03:00
}
function getImageId(layerId, x, y, zoom){
return "tile-" + layerId + "/" + x + "/" + y + "/" + zoom;
}
function createTileLayer(layerId){
return L.TileLayer.extend({
createTile: function(coords){
var tile = document.createElement('img');
tile.src = getTileSource(layerId, coords.x, coords.y, coords.z);
tile.id = getImageId(layerId, coords.x, coords.y, coords.z);
return tile;
}
});
}
function updateTile(data){
2019-01-22 22:19:04 +03:00
var id = getImageId(data.layerid, data.x, data.y, data.zoom);
2019-01-20 21:50:24 +03:00
var el = document.getElementById(id);
if (el){
//Update src attribute if img found
2019-01-22 22:19:04 +03:00
el.src = getTileSource(data.layerid, data.x, data.y, data.zoom, true);
2019-01-20 21:50:24 +03:00
}
}
2019-01-22 22:19:04 +03:00
var wsUrl = location.protocol.replace("http", "ws") + "//" + location.host + location.pathname.substring(0, location.pathname.lastIndexOf("/")) + "/api/ws";
var ws = new WebSocket(wsUrl);
ws.onmessage = function(e){
var event = JSON.parse(e.data);
if (event.type == "rendered-tile"){
2019-01-24 20:20:40 +03:00
updateTile(event.data)
2019-01-22 22:19:04 +03:00
}
}
2019-01-20 21:50:24 +03:00
var layers = {};
var Layer = createTileLayer(0);
var tileLayer = new Layer();
tileLayer.addTo(map);
L.control.layers(layers, {}).addTo(map);
// coord display
L.Control.CoordinatesDisplay = L.Control.extend({
onAdd: function(map) {
var div = L.DomUtil.create('div', 'leaflet-bar leaflet-custom-display');
function update(ev){
var latlng = ev.latlng;
div.innerHTML = "X:" + parseInt(latlng.lng) + " Z:" + parseInt(latlng.lat);
}
map.on('mousemove', update);
map.on('click', update);
map.on('touch', update);
return div;
},
onRemove: function(map) {
}
});
L.control.coordinatesDisplay = function(opts) {
return new L.Control.CoordinatesDisplay(opts);
}
var el = L.control.coordinatesDisplay({ position: 'bottomleft' });
el.addTo(map);
})()