hopefully fix multipoint shape delete error
This commit is contained in:
parent
6fb749ea89
commit
f7bf30bd7e
1 changed files with 7 additions and 0 deletions
7
src/c3nav/static/leaflet/leaflet.js
vendored
7
src/c3nav/static/leaflet/leaflet.js
vendored
|
@ -7870,6 +7870,13 @@ var MultiPoint = Layer.extend({
|
|||
this._latlngs = this._convertLatLngs(latlngs);
|
||||
},
|
||||
|
||||
|
||||
|
||||
setLatLngs: function(latlngs) {
|
||||
this._setLatLngs(latlngs);
|
||||
},
|
||||
|
||||
|
||||
// convert latlngs input into actual LatLng instances; calculate bounds along the way
|
||||
_convertLatLngs: function (latlngs) {
|
||||
var result = [];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue