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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/js/mapEncapsulation/mapOverlayManager.js +11 -0
package/package.json
CHANGED
|
@@ -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
|
}
|