2010-09-27 22:02:00 +08:00
|
|
|
L.ImageOverlay = L.Class.extend({
|
|
|
|
includes: L.Mixin.Events,
|
2011-12-09 22:35:15 +08:00
|
|
|
|
2012-06-26 04:45:37 +08:00
|
|
|
options: {
|
|
|
|
opacity: 1
|
|
|
|
},
|
|
|
|
|
|
|
|
initialize: function (url, bounds, options) { // (String, LatLngBounds)
|
2010-09-27 22:02:00 +08:00
|
|
|
this._url = url;
|
|
|
|
this._bounds = bounds;
|
2012-06-26 04:45:37 +08:00
|
|
|
|
|
|
|
L.Util.setOptions(this, options);
|
2010-09-27 22:02:00 +08:00
|
|
|
},
|
2011-12-09 22:35:15 +08:00
|
|
|
|
2011-12-09 22:51:31 +08:00
|
|
|
onAdd: function (map) {
|
2010-09-27 22:02:00 +08:00
|
|
|
this._map = map;
|
2011-12-09 22:35:15 +08:00
|
|
|
|
2011-05-20 16:26:40 +08:00
|
|
|
if (!this._image) {
|
|
|
|
this._initImage();
|
|
|
|
}
|
2011-12-09 22:35:15 +08:00
|
|
|
|
2012-02-15 19:17:25 +08:00
|
|
|
map._panes.overlayPane.appendChild(this._image);
|
2011-12-09 22:35:15 +08:00
|
|
|
|
2012-06-26 06:13:39 +08:00
|
|
|
map.on('zoomanim', this._zoomAnimation, this);
|
2011-05-20 16:26:40 +08:00
|
|
|
map.on('viewreset', this._reset, this);
|
|
|
|
this._reset();
|
|
|
|
},
|
2011-12-09 22:35:15 +08:00
|
|
|
|
2011-12-09 22:51:31 +08:00
|
|
|
onRemove: function (map) {
|
2011-05-20 16:26:40 +08:00
|
|
|
map.getPanes().overlayPane.removeChild(this._image);
|
|
|
|
map.off('viewreset', this._reset, this);
|
|
|
|
},
|
2011-12-09 22:35:15 +08:00
|
|
|
|
2012-06-26 04:45:37 +08:00
|
|
|
setOpacity: function (opacity) {
|
|
|
|
this.options.opacity = opacity;
|
|
|
|
this._updateOpacity();
|
|
|
|
},
|
|
|
|
|
2011-12-09 22:51:31 +08:00
|
|
|
_initImage: function () {
|
2012-06-26 06:13:39 +08:00
|
|
|
this._image = L.DomUtil.create('img', 'leaflet-image-layer leaflet-zoom-animated');
|
2011-12-09 22:35:15 +08:00
|
|
|
|
2010-09-27 22:02:00 +08:00
|
|
|
this._image.style.visibility = 'hidden';
|
2012-06-26 04:45:37 +08:00
|
|
|
|
|
|
|
this._updateOpacity();
|
2011-12-09 22:35:15 +08:00
|
|
|
|
2011-03-22 23:58:35 +08:00
|
|
|
//TODO createImage util method to remove duplication
|
2010-09-27 22:02:00 +08:00
|
|
|
L.Util.extend(this._image, {
|
|
|
|
galleryimg: 'no',
|
|
|
|
onselectstart: L.Util.falseFn,
|
|
|
|
onmousemove: L.Util.falseFn,
|
2011-12-14 19:38:42 +08:00
|
|
|
onload: L.Util.bind(this._onImageLoad, this),
|
2010-09-27 22:02:00 +08:00
|
|
|
src: this._url
|
|
|
|
});
|
|
|
|
},
|
2011-12-09 22:35:15 +08:00
|
|
|
|
2012-06-26 06:13:39 +08:00
|
|
|
_zoomAnimation: function (opt) {
|
|
|
|
var image = this._image,
|
2012-06-26 07:16:06 +08:00
|
|
|
scale = Math.pow(2, opt.zoom - this._map._zoom),
|
2012-06-26 06:13:39 +08:00
|
|
|
topLeft = this._map._latLngToNewLayerPoint(this._bounds.getNorthWest(), opt.zoom, opt.center),
|
2012-06-26 07:16:06 +08:00
|
|
|
size = this._map._latLngToNewLayerPoint(this._bounds.getSouthEast(), opt.zoom, opt.center).subtract(topLeft),
|
|
|
|
currentSize = this._map.latLngToLayerPoint(this._bounds.getSouthEast()).subtract(this._map.latLngToLayerPoint(this._bounds.getNorthWest()));
|
2012-06-26 06:13:39 +08:00
|
|
|
|
2012-06-26 07:16:06 +08:00
|
|
|
image.style[L.DomUtil.TRANSFORM] = L.DomUtil.getTranslateString(topLeft.add(size.subtract(currentSize).divideBy(2))) + ' scale(' + scale + ') ';
|
2012-06-26 06:13:39 +08:00
|
|
|
},
|
|
|
|
|
2011-12-09 22:51:31 +08:00
|
|
|
_reset: function () {
|
2012-02-15 19:17:25 +08:00
|
|
|
var image = this._image,
|
|
|
|
topLeft = this._map.latLngToLayerPoint(this._bounds.getNorthWest()),
|
|
|
|
size = this._map.latLngToLayerPoint(this._bounds.getSouthEast()).subtract(topLeft);
|
2011-12-09 22:35:15 +08:00
|
|
|
|
2012-02-15 19:17:25 +08:00
|
|
|
L.DomUtil.setPosition(image, topLeft);
|
2011-12-09 22:35:15 +08:00
|
|
|
|
2012-02-15 19:17:25 +08:00
|
|
|
image.style.width = size.x + 'px';
|
|
|
|
image.style.height = size.y + 'px';
|
2010-09-27 22:02:00 +08:00
|
|
|
},
|
2011-12-09 22:35:15 +08:00
|
|
|
|
2011-12-09 22:51:31 +08:00
|
|
|
_onImageLoad: function () {
|
2011-12-14 19:38:42 +08:00
|
|
|
this._image.style.visibility = '';
|
|
|
|
this.fire('load');
|
2012-06-26 04:45:37 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
_updateOpacity: function () {
|
|
|
|
L.DomUtil.setOpacity(this._image, this.options.opacity);
|
2010-09-27 22:02:00 +08:00
|
|
|
}
|
2011-12-09 22:35:15 +08:00
|
|
|
});
|