2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-18 14:07:08 +00:00

Caveview enabled - local copy 3MB

This commit is contained in:
Philip Sargent
2021-04-02 19:02:10 +01:00
parent b71f2c4ebb
commit 371542fb1e
22 changed files with 95738 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
function NLSProvider () {
}
NLSProvider.prototype.minZoom = 12;
NLSProvider.prototype.maxZoom = 14;
NLSProvider.prototype.getUrl = function ( x, y, z ) {
return NLSTileUrlOS( x, y, z );
}
NLSProvider.prototype.getAttribution = function () {
var a = document.createElement( 'a' );
a.href = 'http://maps.nls.uk';
a.textContent = 'map overlay by National Library of Scotland';
return a;
}