isobit-ui 0.0.164 → 0.0.168
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 +31 -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.168
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -3636,6 +3636,22 @@ var __vue_component__$3 = /*#__PURE__*/__vue_normalize____default['default']({
|
|
|
3636
3636
|
staticRenderFns: __vue_staticRenderFns__$3
|
|
3637
3637
|
}, __vue_inject_styles__$3, __vue_script__$3, __vue_scope_id__$3, __vue_is_functional_template__$3, __vue_module_identifier__$3, false, undefined, undefined, undefined);
|
|
3638
3638
|
|
|
3639
|
+
function _typeof(obj) {
|
|
3640
|
+
"@babel/helpers - typeof";
|
|
3641
|
+
|
|
3642
|
+
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
|
|
3643
|
+
_typeof = function (obj) {
|
|
3644
|
+
return typeof obj;
|
|
3645
|
+
};
|
|
3646
|
+
} else {
|
|
3647
|
+
_typeof = function (obj) {
|
|
3648
|
+
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
3649
|
+
};
|
|
3650
|
+
}
|
|
3651
|
+
|
|
3652
|
+
return _typeof(obj);
|
|
3653
|
+
}
|
|
3654
|
+
|
|
3639
3655
|
//
|
|
3640
3656
|
//
|
|
3641
3657
|
//
|
|
@@ -3711,14 +3727,26 @@ var script$2 = {
|
|
|
3711
3727
|
me.map.addInteraction(translateIteraction);
|
|
3712
3728
|
}
|
|
3713
3729
|
|
|
3714
|
-
|
|
3730
|
+
if (_typeof(f.style) == 'object') {
|
|
3731
|
+
feature.setStyle(f.style);
|
|
3732
|
+
} else feature.setStyle(me.styleMap[f.style ? f.style : 'default']);
|
|
3733
|
+
|
|
3715
3734
|
c = point.flatCoordinates;
|
|
3716
3735
|
c = c[0] < -10000 ? ol.proj.toLonLat(c) : c;
|
|
3717
3736
|
me.$emit('translateend', {
|
|
3718
3737
|
lon: c[0],
|
|
3719
3738
|
lat: c[1]
|
|
3720
3739
|
});
|
|
3721
|
-
|
|
3740
|
+
|
|
3741
|
+
if (layer != null) {
|
|
3742
|
+
var layer = map.getLayerById(layer);
|
|
3743
|
+
if (!layer) map.addLayer(new ol.layer.Vector({
|
|
3744
|
+
id: layer,
|
|
3745
|
+
source: new ol.source.Vector({
|
|
3746
|
+
features: new ol.Collection([feature])
|
|
3747
|
+
})
|
|
3748
|
+
}));else layer.getSource().addFeatures(feature);
|
|
3749
|
+
} else me.collection.push(feature);
|
|
3722
3750
|
|
|
3723
3751
|
if (cfg) {
|
|
3724
3752
|
console.log('animate');
|