-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathleaflet-iiif.js
241 lines (203 loc) · 6.6 KB
/
leaflet-iiif.js
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
/*
* Leaflet-IIIF 1.0.2
* IIIF Viewer for Leaflet
* by Jack Reed, @mejackreed
*/
L.TileLayer.Iiif = L.TileLayer.extend({
options: {
continuousWorld: true,
tileSize: 256,
updateWhenIdle: true,
tileFormat: 'jpg',
fitBounds: true
},
initialize: function(url, options) {
options = typeof options !== 'undefined' ? options : {};
if (options.maxZoom) {
this._customMaxZoom = true;
}
// Check for explicit tileSize set
if (options.tileSize) {
this._explicitTileSize = true;
}
// Check for an explicit quality
if (options.quality) {
this._explicitQuality = true;
}
options = L.setOptions(this, options);
this._infoDeferred = new $.Deferred();
this._infoUrl = url;
this._baseUrl = this._templateUrl();
this._getInfo();
},
getTileUrl: function(coords) {
var _this = this,
x = coords.x,
y = (coords.y),
zoom = _this._getZoomForUrl(),
scale = Math.pow(2, _this.maxNativeZoom - zoom),
tileBaseSize = _this.options.tileSize * scale,
minx = (x * tileBaseSize),
miny = (y * tileBaseSize),
maxx = Math.min(minx + tileBaseSize, _this.x),
maxy = Math.min(miny + tileBaseSize, _this.y);
var xDiff = (maxx - minx);
var yDiff = (maxy - miny);
return L.Util.template(this._baseUrl, L.extend({
format: _this.options.tileFormat,
quality: _this.quality,
region: [minx, miny, xDiff, yDiff].join(','),
rotation: 0,
size: Math.ceil(xDiff / scale) + ','
}, this.options));
},
onAdd: function(map) {
var _this = this;
// Wait for deferred to complete
$.when(_this._infoDeferred).done(function() {
// Set maxZoom for map
map._layersMaxZoom = _this.maxZoom;
// Call add TileLayer
L.TileLayer.prototype.onAdd.call(_this, map);
if (_this.options.fitBounds) {
_this._fitBounds();
}
// Reset tile sizes to handle non 256x256 IIIF tiles
_this.on('tileload', function(tile, url) {
var height = tile.tile.naturalHeight,
width = tile.tile.naturalWidth;
// No need to resize if tile is 256 x 256
if (height === 256 && width === 256) return;
tile.tile.style.width = width + 'px';
tile.tile.style.height = height + 'px';
});
});
},
_fitBounds: function() {
var _this = this;
// Find best zoom level and center map
var initialZoom = _this._getInitialZoom(_this._map.getSize());
var imageSize = _this._imageSizes[initialZoom];
var sw = _this._map.options.crs.pointToLatLng(L.point(0, imageSize.y), initialZoom);
var ne = _this._map.options.crs.pointToLatLng(L.point(imageSize.x, 0), initialZoom);
var bounds = L.latLngBounds(sw, ne);
_this._map.fitBounds(bounds, true);
},
_getInfo: function() {
var _this = this;
// Look for a way to do this without jQuery
$.getJSON(_this._infoUrl)
.done(function(data) {
_this.y = data.height;
_this.x = data.width;
var tierSizes = [],
imageSizes = [],
scale,
width_,
height_,
tilesX_,
tilesY_;
// Set quality based off of IIIF version
if (data.profile instanceof Array) {
_this.profile = data.profile[0];
}else {
_this.profile = data.profile;
}
_this._setQuality();
// Unless an explicit tileSize is set, use a preferred tileSize
if (!_this._explicitTileSize) {
// Set the default first
_this.options.tileSize = 256;
if (data.tiles) {
// Image API 2.0 Case
_this.options.tileSize = data.tiles[0].width;
} else if (data.tile_width){
// Image API 1.1 Case
_this.options.tileSize = data.tile_width;
}
}
ceilLog2 = function(x) {
return Math.ceil(Math.log(x) / Math.LN2);
};
// Calculates maximum native zoom for the layer
_this.maxNativeZoom = Math.max(ceilLog2(_this.x / _this.options.tileSize),
ceilLog2(_this.y / _this.options.tileSize));
// Enable zooming further than native if maxZoom option supplied
if (_this._customMaxZoom && _this.options.maxZoom > _this.maxNativeZoom) {
_this.maxZoom = _this.options.maxZoom;
}
else {
_this.maxZoom = _this.maxNativeZoom;
}
for (var i = 0; i <= _this.maxZoom; i++) {
scale = Math.pow(2, _this.maxNativeZoom - i);
width_ = Math.ceil(_this.x / scale);
height_ = Math.ceil(_this.y / scale);
tilesX_ = Math.ceil(width_ / _this.options.tileSize);
tilesY_ = Math.ceil(height_ / _this.options.tileSize);
tierSizes.push([tilesX_, tilesY_]);
imageSizes.push(L.point(width_,height_));
}
_this._tierSizes = tierSizes;
_this._imageSizes = imageSizes;
// Resolved Deferred to initiate tilelayer load
_this._infoDeferred.resolve();
});
},
_setQuality: function() {
var _this = this;
var profileToCheck = _this.profile;
if (_this._explicitQuality) {
return;
}
// If profile is an object
if (typeof(profileToCheck) === 'object') {
profileToCheck = profileToCheck['@id'];
}
// Set the quality based on the IIIF compliance level
switch (true) {
case /^http:\/\/library.stanford.edu\/iiif\/image-api\/1.1\/compliance.html.*$/.test(profileToCheck):
_this.options.quality = 'native';
break;
// Assume later profiles and set to default
default:
_this.options.quality = 'default';
break;
}
},
_infoToBaseUrl: function() {
return this._infoUrl.replace('info.json', '');
},
_templateUrl: function() {
return this._infoToBaseUrl() + '{region}/{size}/{rotation}/{quality}.{format}';
},
_isValidTile: function(coords) {
var _this = this,
zoom = _this._getZoomForUrl(),
sizes = _this._tierSizes[zoom],
x = coords.x,
y = (coords.y);
if (!sizes) return false;
if (x < 0 || sizes[0] <= x || y < 0 || sizes[1] <= y) {
return false;
}else {
return true;
}
},
_getInitialZoom: function (mapSize) {
var _this = this,
tolerance = 0.8,
imageSize;
for (var i = _this.maxNativeZoom; i >= 0; i--) {
imageSize = this._imageSizes[i];
if (imageSize.x * tolerance < mapSize.x && imageSize.y * tolerance < mapSize.y) {
return i;
}
}
// return a default zoom
return 2;
}
});
L.tileLayer.iiif = function(url, options) {
return new L.TileLayer.Iiif(url, options);
};