Check for double edges

dependabot/npm_and_yarn/mathjs-7.5.1
Keith Paterson 3 years ago
parent 60881eaf3e
commit 9e7f41a5c9

@ -369,9 +369,24 @@ You should have received a copy of the GNU General Public License along with FG
if(Number.isNaN(index)) { if(Number.isNaN(index)) {
return; return;
} }
if(this.featureLookup===undefined || this.featureLookup[index]===undefined) { if (this.featureLookup===undefined || this.featureLookup[index]===undefined) {
var found = false;
this.groundnetLayerGroup.eachLayer((layer) => {
if (layer instanceof L.Polyline && layer._leaflet_id == index) {
layer.select();
this.$store.dispatch('setCenter', layer.getCenter());
found = true;
} else {
layer.deselect();
}
});
if (found) {
return;
} else {
console.error("Lookup " + index + " failed "); console.error("Lookup " + index + " failed ");
this.buildLookup() this.buildLookup();
return;
}
} }
if (Number(this.$store.state.Editable.index) >= 0 && if (Number(this.$store.state.Editable.index) >= 0 &&
this.featureLookup[this.$store.state.Editable.index]!==undefined) { this.featureLookup[this.$store.state.Editable.index]!==undefined) {
@ -383,7 +398,6 @@ You should have received a copy of the GNU General Public License along with FG
this.featureLookup[index].forEach((element, i) => { this.featureLookup[index].forEach((element, i) => {
if (element instanceof L.Polyline) { if (element instanceof L.Polyline) {
element._latlngs.forEach((e1, index1) => { element._latlngs.forEach((e1, index1) => {
console.log(e1);
if (e1.attributes.index===Number(index)) { if (e1.attributes.index===Number(index)) {
var latlng = {}; var latlng = {};
latlng.lat = e1.lat; latlng.lat = e1.lat;

Loading…
Cancel
Save