I found the easy way to get marker’s to popup on hover, you just need to add the mouseover and mouseout binds in the your leaflet.js under Ue.include’s bindPopup function.
Before
bindPopup: function(t, i) {
return t instanceof un ? (l(t, i), this._popup = t, t._source = this) : (this._popup && !i || (this._popup = new un(i, this)), this._popup.setContent(t)), this._popupHandlersAdded || (this.on({
click: this._openPopup,
keypress: this._onKeyPress,
remove: this.closePopup,
After
bindPopup: function(t, i) {
return t instanceof un ? (l(t, i), this._popup = t, t._source = this) : (this._popup && !i || (this._popup = new un(i, this)), this._popup.setContent(t)), this._popupHandlersAdded || (this.on({
click: this._openPopup,
keypress: this._onKeyPress,
mouseover: this._openPopup,
remove: this.closePopup,
mouseout: this._closePopup,
Plugin Author
bozdoz
(@bozdoz)
I can probably add a script to bind the popup on hover. The idea of clicking the marker as a link seems more difficult.
Plugin Author
bozdoz
(@bozdoz)