From: Robert Kaiser Date: Tue, 11 Sep 2012 15:25:50 +0000 (+0200) Subject: Merge branch 'master' of linz:/srv/git/git-kairo X-Git-Tag: legacy-preGL~67 X-Git-Url: https://git-public.kairo.at/?p=lantea.git;a=commitdiff_plain;h=814b6b2858eea707e5a3977881ec9f62253710a4;hp=-c Merge branch 'master' of linz:/srv/git/git-kairo --- 814b6b2858eea707e5a3977881ec9f62253710a4 diff --combined js/map.js index 5cd194e,48b1128..f27b019 --- a/js/map.js +++ b/js/map.js @@@ -124,6 -124,7 +124,7 @@@ function initMap() gCanvas.addEventListener("touchcancel", mapEvHandler, false); gCanvas.addEventListener("touchleave", mapEvHandler, false); + // XXX deprecated? see https://groups.google.com/forum/?fromgroups#!topic/mozilla.dev.planning/kuhrORubaRY[1-25] gCanvas.addEventListener("DOMMouseScroll", mapEvHandler, false); gCanvas.addEventListener("mousewheel", mapEvHandler, false); @@@ -183,6 -184,8 +184,8 @@@ function setMapStyle() if (mapSel.selectedIndex >= 0 && gActiveMap != mapSel.value) { gActiveMap = mapSel.value; gTiles = {}; + document.getElementById("copyright").innerHTML = + gMapStyles[gActiveMap].copyright; drawMap(); } } @@@ -262,7 -265,7 +265,7 @@@ function drawMap() // Go through all the tiles we want. // If any of them aren't loaded or being loaded, do so. for (var x = Math.floor(xMin / size); x < Math.ceil(xMax / size); x++) { - for (var y = Math.floor(yMin / size); y < Math.ceil(yMax / size); y++) { + for (var y = Math.floor(yMin / size); y < Math.ceil(yMax / size); y++) { // slow script warnings on the tablet appear here! var xoff = (x * size - xMin) / gZoomFactor; var yoff = (y * size - yMin) / gZoomFactor; var tileKey = encodeIndex(x, y, gPos.z);