aboutsummaryrefslogtreecommitdiffstats
path: root/extlib/leaflet/src/map/ext/Map.Popup.js
blob: 8b8de937d598532e0667e11b628a265e03cf2f68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
L.Map.include({
	openPopup: function(popup) {
		this.closePopup();
		this._popup = popup;
		return this.addLayer(popup);
	},
	
	closePopup: function() {
		if (this._popup) {
			this.removeLayer(this._popup);
		}
		return this;
	}
});