mapping-component-package-jp 0.0.34 → 0.0.35

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.0.34",
3
+ "version": "0.0.35",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -2751,7 +2751,7 @@ export class MapOverlayManager {
2751
2751
  var fpoly = new google.maps.Polygon({
2752
2752
  map: map,
2753
2753
  paths: paths,
2754
- strokeWeight: 1,
2754
+ strokeWeight: 2,
2755
2755
  strokeColor: '#000000',
2756
2756
  strokeOpacity: 1,
2757
2757
  fillColor: '#000000',
@@ -2781,7 +2781,7 @@ export class MapOverlayManager {
2781
2781
  } else if(poly.type == 'fp') {
2782
2782
  poly.setOptions({strokeColor: '#f1a81e', strokeWeight: 3, zIndex: 10012});
2783
2783
  } else if(poly.type == 'er') {
2784
- poly.setOptions({strokeColor: '#f1a81e', strokeWeight: 1, zIndex: 10013});
2784
+ poly.setOptions({strokeColor: '#f1a81e', strokeWeight: 2, zIndex: 10013});
2785
2785
  }
2786
2786
 
2787
2787
  deleteTooltip();
@@ -2794,7 +2794,7 @@ export class MapOverlayManager {
2794
2794
  } else if(poly.type == 'fp') {
2795
2795
  poly.setOptions({strokeColor: '#000000', strokeWeight: 3, zIndex: 10002});
2796
2796
  } else if(poly.type == 'er') {
2797
- poly.setOptions({strokeColor: '#000000', strokeWeight: 1, zIndex: 10003});
2797
+ poly.setOptions({strokeColor: '#000000', strokeWeight: 2, zIndex: 10003});
2798
2798
  }
2799
2799
  deleteTooltip();
2800
2800
  }));