mapping-component-package-jp 0.1.54 → 0.1.55

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": "mapping-component-package-jp",
3
- "version": "0.1.54",
3
+ "version": "0.1.55",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -185,6 +185,7 @@ export class MapOverlayManager {
185
185
  tipObj.innerHTML = data;
186
186
  tipObj.style.top = event.domEvent.clientY + window.scrollY + ttOffset.y + "px";
187
187
  tipObj.style.left = event.domEvent.clientX + window.scrollX + ttOffset.x + "px";
188
+ tipObj.style.zIndex = 20000;
188
189
  document.body.appendChild(tipObj);
189
190
  }
190
191
  }
@@ -196,6 +197,7 @@ export class MapOverlayManager {
196
197
  tipObj.innerHTML = data;
197
198
  tipObj.style.top = event.clientY + window.scrollY + ttOffset.y + "px";
198
199
  tipObj.style.left = event.clientX + window.scrollX + ttOffset.x + "px";
200
+ tipObj.style.zIndex = 20000;
199
201
  document.body.appendChild(tipObj);
200
202
  }
201
203
  }