@abi-software/scaffoldvuer 0.2.3-alpha → 0.2.3-alpha-2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abi-software/scaffoldvuer",
3
- "version": "0.2.3-alpha",
3
+ "version": "0.2.3-alpha-2",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1392,6 +1392,7 @@ export default {
1392
1392
  this.$module.unsetFinishDownloadCallback();
1393
1393
  this.addRegionsToSearchIndex();
1394
1394
  this.$emit("on-ready");
1395
+ this.setMarkers();
1395
1396
  this.isReady = true;
1396
1397
  };
1397
1398
  },
@@ -1556,6 +1557,15 @@ export default {
1556
1557
  this.$module.toggleSyncControl(flag, rotateMode);
1557
1558
  this.$module.setSyncControlCallback(this.syncControlCallback);
1558
1559
  },
1560
+
1561
+ /**
1562
+ * Set the markers for the scene.
1563
+ */
1564
+ setMarkers: function () {
1565
+ this.markerLabels.forEach((l)=>{
1566
+ this.setMarkerModeForObjectsWithName(l, "on");
1567
+ })
1568
+ },
1559
1569
  },
1560
1570
  };
1561
1571
  </script>