isobit-ui 0.0.157 → 0.0.158
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 +5 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.0.
|
|
2
|
+
* isobit-ui v0.0.158
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -3884,10 +3884,12 @@ var script$2 = {
|
|
|
3884
3884
|
var newZoom = map.getView().getZoom();
|
|
3885
3885
|
|
|
3886
3886
|
if (currZoom != newZoom) {
|
|
3887
|
-
m.$emit("zoom", newZoom);
|
|
3888
3887
|
currZoom = newZoom; //se debe avisar a cada overlay del cambio de posicion
|
|
3889
3888
|
|
|
3890
|
-
|
|
3889
|
+
m.$children.forEach(function (e) {
|
|
3890
|
+
console.log(e.$vnode.tag);
|
|
3891
|
+
e.$emit("zoom", newZoom);
|
|
3892
|
+
});
|
|
3891
3893
|
}
|
|
3892
3894
|
/*console.log('vue.map-moveend '+map.getView().getCenter());
|
|
3893
3895
|
if (!m.moved) {
|