@eqproject/eqp-dynamic-module 2.10.32 → 2.10.33
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/esm2020/lib/components/private/tmw-image-marker/tmw-image-marker.component.mjs +7 -5
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +6 -4
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +6 -4
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5029,10 +5029,12 @@ class TmwImageMarkerComponent {
|
|
|
5029
5029
|
});
|
|
5030
5030
|
}
|
|
5031
5031
|
newMarker() {
|
|
5032
|
-
var startX =
|
|
5033
|
-
var startY =
|
|
5034
|
-
var left = this.randomIntFromInterval(startX
|
|
5035
|
-
var top = this.randomIntFromInterval(startY
|
|
5032
|
+
var startX = 40;
|
|
5033
|
+
var startY = 40;
|
|
5034
|
+
//var left = this.randomIntFromInterval(startX-100,startX+100);
|
|
5035
|
+
//var top = this.randomIntFromInterval(startY-100,startY+100);
|
|
5036
|
+
var left = startX;
|
|
5037
|
+
var top = startY;
|
|
5036
5038
|
var description;
|
|
5037
5039
|
var caption = '0';
|
|
5038
5040
|
// Creazione della caption
|