blob: 8133621648a5acabda02e4ac820964f2e42ab662 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
}
|