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,
Add draggable="true" to the lines, then open your developer console and move an icon. You can see in the console that the Y and X of where you placed the icon appears.
You may need to open your console drawer to see the information. View the image below for an example.
View post on imgur.com