hopefully fix multipoint shape delete error

This commit is contained in:
Gwendolyn 2024-12-27 21:33:14 +01:00
parent 6fb749ea89
commit f7bf30bd7e

View file

@ -7870,6 +7870,13 @@ var MultiPoint = Layer.extend({
this._latlngs = this._convertLatLngs(latlngs); this._latlngs = this._convertLatLngs(latlngs);
}, },
setLatLngs: function(latlngs) {
this._setLatLngs(latlngs);
},
// convert latlngs input into actual LatLng instances; calculate bounds along the way // convert latlngs input into actual LatLng instances; calculate bounds along the way
_convertLatLngs: function (latlngs) { _convertLatLngs: function (latlngs) {
var result = []; var result = [];