isobit-ui 0.0.163 → 0.0.167
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 +38 -9
- 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.167
|
|
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
|
//
|
|
@@ -3670,23 +3686,24 @@ var script$2 = {
|
|
|
3670
3686
|
addFeature: function addFeature(f, cfg) {
|
|
3671
3687
|
f = f ? f : {};
|
|
3672
3688
|
var me = this,
|
|
3673
|
-
|
|
3689
|
+
point,
|
|
3674
3690
|
map = me.map;
|
|
3675
3691
|
|
|
3676
3692
|
if (f.lon && f.lat) {
|
|
3677
3693
|
var c = [f.lon, f.lat];
|
|
3678
|
-
|
|
3694
|
+
point = new ol.geom.Point(c[0] > -100 ? ol.proj.fromLonLat(c) : c);
|
|
3679
3695
|
} else {
|
|
3680
|
-
|
|
3696
|
+
point = new ol.geom.Point(map.getView().getCenter());
|
|
3681
3697
|
}
|
|
3682
3698
|
|
|
3683
|
-
c =
|
|
3699
|
+
c = point.flatCoordinates;
|
|
3684
3700
|
var c = c[0] < -10000 ? ol.proj.toLonLat(c) : c;
|
|
3685
3701
|
me.$emit('translateend', {
|
|
3686
3702
|
lon: c[0],
|
|
3687
3703
|
lat: c[1]
|
|
3688
3704
|
});
|
|
3689
|
-
f.geometry =
|
|
3705
|
+
f.geometry = point;
|
|
3706
|
+
console.log(f);
|
|
3690
3707
|
var feature = new ol.Feature(f);
|
|
3691
3708
|
feature.data = f;
|
|
3692
3709
|
|
|
@@ -3710,14 +3727,26 @@ var script$2 = {
|
|
|
3710
3727
|
me.map.addInteraction(translateIteraction);
|
|
3711
3728
|
}
|
|
3712
3729
|
|
|
3713
|
-
|
|
3714
|
-
|
|
3730
|
+
if (_typeof(f.style) == 'object') {
|
|
3731
|
+
feature.setStyle(f.style);
|
|
3732
|
+
} else feature.setStyle(me.styleMap[f.style ? f.style : 'default']);
|
|
3733
|
+
|
|
3734
|
+
c = point.flatCoordinates;
|
|
3715
3735
|
c = c[0] < -10000 ? ol.proj.toLonLat(c) : c;
|
|
3716
3736
|
me.$emit('translateend', {
|
|
3717
3737
|
lon: c[0],
|
|
3718
3738
|
lat: c[1]
|
|
3719
3739
|
});
|
|
3720
|
-
|
|
3740
|
+
|
|
3741
|
+
if (layer != null) {
|
|
3742
|
+
var layer = map.getLayerById();
|
|
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);
|
|
3721
3750
|
|
|
3722
3751
|
if (cfg) {
|
|
3723
3752
|
console.log('animate');
|