mapping-component-package-jp 0.0.3 → 0.0.4

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.3",
3
+ "version": "0.0.4",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -2153,6 +2153,17 @@ export class MapOverlayManager {
2153
2153
  fpolies.push(polygon);
2154
2154
  }
2155
2155
  });
2156
+
2157
+ google.maps.event.addListenerOnce(map, "bounds_changed", function() {
2158
+ eventHandlers["RegionBoundsChanged"]({
2159
+ type: 'SUCCESS',
2160
+ message: 'Region bounds changed',
2161
+ code: 200,
2162
+ data: null
2163
+ });
2164
+ });
2165
+
2166
+
2156
2167
  map.fitBounds(rbounds);
2157
2168
  regions_BindPolyEvents();
2158
2169
  }