You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Appears something may have changed under Leaflet's hood to break existing leaflet-editable Marker handling. Existing code using leaflet-editable marker works in Leaflet v1.7.1 but fails / does not work when upgraded to Leaflet v1.9.4 with undefined _renderer error in Leaflet code as shown below as soon as mouse is on map and fires repeatedly as mouse moves on map.
Anyone have any thoughts why or have fixes for this as I plan to revert back to v1.7.4 for now.
var Path = Layer.extend({
...
// @method redraw(): this
// Redraws the layer. Sometimes useful after you changed the coordinates that the path uses.
redraw: function () {
if (this._map) {
this._renderer._updatePath(this); <--- undefined _renderer
}
return this;
},
...
The text was updated successfully, but these errors were encountered:
Appears something may have changed under Leaflet's hood to break existing leaflet-editable Marker handling. Existing code using leaflet-editable marker works in Leaflet v1.7.1 but fails / does not work when upgraded to Leaflet v1.9.4 with undefined _renderer error in Leaflet code as shown below as soon as mouse is on map and fires repeatedly as mouse moves on map.
Anyone have any thoughts why or have fixes for this as I plan to revert back to v1.7.4 for now.
The text was updated successfully, but these errors were encountered: