diff options
Diffstat (limited to 'extlib/leaflet/src/layer/marker/Marker.Popup.js')
-rw-r--r-- | extlib/leaflet/src/layer/marker/Marker.Popup.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/extlib/leaflet/src/layer/marker/Marker.Popup.js b/extlib/leaflet/src/layer/marker/Marker.Popup.js new file mode 100644 index 00000000..4c5cad04 --- /dev/null +++ b/extlib/leaflet/src/layer/marker/Marker.Popup.js @@ -0,0 +1,28 @@ +/*
+ * Popup extension to L.Marker, adding openPopup & bindPopup methods.
+ */
+
+L.Marker.include({
+ openPopup: function() {
+ this._popup.setLatLng(this._latlng);
+ this._map.openPopup(this._popup);
+
+ return this;
+ },
+
+ closePopup: function() {
+ if (this._popup) {
+ this._popup._close();
+ }
+ },
+
+ bindPopup: function(content, options) {
+ options = L.Util.extend({offset: this.options.icon.popupAnchor}, options);
+
+ this._popup = new L.Popup(options);
+ this._popup.setContent(content);
+ this.on('click', this.openPopup, this);
+
+ return this;
+ }
+});
\ No newline at end of file |