@evergis/react 2.0.196 → 2.0.198
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/components/Legend/components/LegendHeaderButtons.d.ts +8 -0
- package/dist/components/Legend/styled.d.ts +4 -1
- package/dist/components/Legend/types.d.ts +7 -3
- package/dist/core/classification/types.d.ts +1 -1
- package/dist/react.cjs.development.js +110 -58
- package/dist/react.cjs.development.js.map +1 -1
- package/dist/react.cjs.production.min.js +1 -1
- package/dist/react.cjs.production.min.js.map +1 -1
- package/dist/react.esm.js +111 -60
- package/dist/react.esm.js.map +1 -1
- package/dist/utils/isParameterType.d.ts +1 -1
- package/dist/utils/legend.d.ts +2 -0
- package/package.json +3 -3
package/dist/react.esm.js
CHANGED
|
@@ -5,7 +5,7 @@ import { Api, LineEndingType, unique, AttributeType, GeometryType, EvergisDynami
|
|
|
5
5
|
import { Map as Map$1, BboxChangeEvent, BboxChangeEndEvent } from '@evergis/sgis/es/Map';
|
|
6
6
|
import { DomPainter, MapResize } from '@evergis/sgis/es/painters/DomPainter/DomPainter';
|
|
7
7
|
import { FeatureLayer as FeatureLayer$1 } from '@evergis/sgis/es/layers/FeatureLayer';
|
|
8
|
-
import { Icon, IconButton, EverCloudStatisticsIcon, EverCloudZoomtoIcon, EverCloudCloseIcon, EverCloudPlayPrevIcon, EverCloudPlayNextIcon } from '@evergis/icons';
|
|
8
|
+
import { Icon, IconButton, EverCloudStatisticsIcon, EverCloudZoomtoIcon, EverCloudCloseIcon, EverCloudPlayPrevIcon, EverCloudPlayNextIcon, EverCloudClassificationIcon, EverCloudRefreshIcon } from '@evergis/icons';
|
|
9
9
|
import { BrushFill } from '@evergis/sgis/es/symbols/polygon/BrushFill';
|
|
10
10
|
import { Color } from '@evergis/color';
|
|
11
11
|
import { ConditionInterpreter, TokenType, ConditionEvaluator, Char } from '@evergis/condition';
|
|
@@ -3013,7 +3013,7 @@ const getLegendSymbolSize = symbol => {
|
|
|
3013
3013
|
return Math.max(DEFAULT_LEGEND_SYMBOL_SIZE, size);
|
|
3014
3014
|
};
|
|
3015
3015
|
const serializeSvgPointSymbol = symbol => {
|
|
3016
|
-
var _symbol$figure, _symbol$background2, _symbol$background3, _symbol$background4, _symbol$background5;
|
|
3016
|
+
var _symbol$figure, _symbol$background2, _symbol$background3, _symbol$background4, _symbol$background5, _symbol$figure2, _symbol$figure3;
|
|
3017
3017
|
|
|
3018
3018
|
if (!symbol) return null;
|
|
3019
3019
|
const figureFillColor = ((_symbol$figure = symbol.figure) == null ? void 0 : _symbol$figure.fillColor) || null;
|
|
@@ -3034,7 +3034,9 @@ const serializeSvgPointSymbol = symbol => {
|
|
|
3034
3034
|
} : {}, figureFillColor ? {
|
|
3035
3035
|
figure: {
|
|
3036
3036
|
id: 'symbol-figure',
|
|
3037
|
-
fillColor: figureFillColor
|
|
3037
|
+
fillColor: figureFillColor,
|
|
3038
|
+
strokeColor: ((_symbol$figure2 = symbol.figure) == null ? void 0 : _symbol$figure2.strokeColor) || null,
|
|
3039
|
+
strokeWidth: ((_symbol$figure3 = symbol.figure) == null ? void 0 : _symbol$figure3.strokeWidth) || null
|
|
3038
3040
|
}
|
|
3039
3041
|
} : {});
|
|
3040
3042
|
};
|
|
@@ -3146,7 +3148,7 @@ const DEFAULT_CLUSTER_SVG = "\n<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox
|
|
|
3146
3148
|
const SYMBOL_CLASSIFICATION = {
|
|
3147
3149
|
[GeometryType.Polygon]: ['fill.color', 'stroke.color', 'stroke.width'],
|
|
3148
3150
|
[GeometryType.Polyline]: ['stroke.color', 'stroke.width'],
|
|
3149
|
-
[GeometryType.Point]: ['angle', 'size', 'fill.color', 'fillColor', 'background.fillColor', 'background.strokeColor', 'background.strokeWidth', 'figure.fillColor', 'singleObjectSymbol.figure.fillColor', 'singleObjectSymbol.background.fillColor']
|
|
3151
|
+
[GeometryType.Point]: ['angle', 'size', 'fill.color', 'fillColor', 'background.fillColor', 'background.strokeColor', 'background.strokeWidth', 'figure.fillColor', 'figure.strokeColor', 'figure.strokeWidth', 'singleObjectSymbol.figure.fillColor', 'singleObjectSymbol.background.fillColor']
|
|
3150
3152
|
};
|
|
3151
3153
|
const SYMBOL_LIMITS = {
|
|
3152
3154
|
SIZE_MIN: 1,
|
|
@@ -3317,11 +3319,16 @@ const manipulateSvgSymbol = _ref2 => {
|
|
|
3317
3319
|
SVGContainer.svg(innerSvg);
|
|
3318
3320
|
}
|
|
3319
3321
|
} else {
|
|
3322
|
+
const strokeColor = getParameterValue(figure == null ? void 0 : figure.strokeColor);
|
|
3323
|
+
const strokeWidth = getParameterValue(figure == null ? void 0 : figure.strokeWidth) || (typeof (figure == null ? void 0 : figure.strokeColor) === 'object' ? 1 : 0);
|
|
3320
3324
|
const fillColor = getParameterValue(figure == null ? void 0 : figure.fillColor);
|
|
3321
3325
|
SVGContainer.size(currentSize + "px", currentSize + "px").viewbox(viewBox.join(' '));
|
|
3322
3326
|
SVGContainer.svg(innerSvg);
|
|
3323
3327
|
SVGContainer.find('#symbol-figure').each(item => {
|
|
3324
|
-
item.center(DEFAULT_SYMBOL_SIZE / 2, DEFAULT_SYMBOL_SIZE / 2).fill(fillColor || DEFAULT_SYMBOL_FILL_COLOR)
|
|
3328
|
+
item.center(DEFAULT_SYMBOL_SIZE / 2, DEFAULT_SYMBOL_SIZE / 2).fill(fillColor || DEFAULT_SYMBOL_FILL_COLOR).stroke({
|
|
3329
|
+
color: strokeColor,
|
|
3330
|
+
width: strokeWidth
|
|
3331
|
+
});
|
|
3325
3332
|
});
|
|
3326
3333
|
}
|
|
3327
3334
|
}
|
|
@@ -5846,7 +5853,7 @@ const Fullscreen = () => {
|
|
|
5846
5853
|
}));
|
|
5847
5854
|
};
|
|
5848
5855
|
|
|
5849
|
-
var _templateObject$4, _templateObject2$4, _templateObject3$3, _templateObject4$3, _templateObject5$3, _templateObject6$2, _templateObject7$2, _templateObject8$2, _templateObject9$1, _templateObject10$1, _templateObject11$1, _templateObject12$1, _templateObject13$1, _templateObject14$1, _templateObject15$1, _templateObject16$1, _templateObject17, _templateObject18, _templateObject19, _templateObject20, _templateObject21, _templateObject22, _templateObject23, _templateObject24, _templateObject25, _templateObject26, _templateObject27, _templateObject28, _templateObject29, _templateObject30, _templateObject31, _templateObject32, _templateObject33, _templateObject34, _templateObject35, _templateObject36, _templateObject37;
|
|
5856
|
+
var _templateObject$4, _templateObject2$4, _templateObject3$3, _templateObject4$3, _templateObject5$3, _templateObject6$2, _templateObject7$2, _templateObject8$2, _templateObject9$1, _templateObject10$1, _templateObject11$1, _templateObject12$1, _templateObject13$1, _templateObject14$1, _templateObject15$1, _templateObject16$1, _templateObject17, _templateObject18, _templateObject19, _templateObject20, _templateObject21, _templateObject22, _templateObject23, _templateObject24, _templateObject25, _templateObject26, _templateObject27, _templateObject28, _templateObject29, _templateObject30, _templateObject31, _templateObject32, _templateObject33, _templateObject34, _templateObject35, _templateObject36, _templateObject37, _templateObject38;
|
|
5850
5857
|
const MapLegendDescription = /*#__PURE__*/styled.div(_templateObject$4 || (_templateObject$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: 0.75rem;\n"])));
|
|
5851
5858
|
const ItemText = /*#__PURE__*/styled.div(_templateObject2$4 || (_templateObject2$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n max-width: calc(100% - 2rem);\n font: ", ";\n"])), _ref => {
|
|
5852
5859
|
let {
|
|
@@ -5858,7 +5865,7 @@ const ItemText = /*#__PURE__*/styled.div(_templateObject2$4 || (_templateObject2
|
|
|
5858
5865
|
});
|
|
5859
5866
|
const ItemSeparator = /*#__PURE__*/styled.div(_templateObject3$3 || (_templateObject3$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n :after {\n content: '-';\n margin: 0 0.5rem;\n font-size: 0.75rem;\n }\n"])));
|
|
5860
5867
|
const SymbolContainer = /*#__PURE__*/styled('span')(_templateObject4$3 || (_templateObject4$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: center;\n min-width: 16px;\n margin-right: 0.5rem;\n"])));
|
|
5861
|
-
const ClassifiedItem = /*#__PURE__*/styled.div(_templateObject5$3 || (_templateObject5$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n align-items: center;\n cursor: ", ";\n pointer-events: ", ";\n\n :not(:last-of-type) {\n margin-bottom: 0.25rem;\n }\n\n ", ", ", " {\n transition: opacity 150ms;\n }\n\n ", " {\n opacity: ", ";\n }\n\n ", " {\n opacity: ", ";\n }\n\n :hover {\n ", ", ", " {\n opacity: 1;\n }\n }\n"])), _ref2 => {
|
|
5868
|
+
const ClassifiedItem = /*#__PURE__*/styled.div(_templateObject5$3 || (_templateObject5$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n align-items: center;\n cursor: ", ";\n pointer-events: ", ";\n\n :not(:last-of-type) {\n margin-bottom: 0.25rem;\n }\n\n ", ", ", " {\n transition: opacity 150ms;\n }\n\n ", " {\n opacity: ", ";\n }\n\n ", " {\n opacity: ", ";\n }\n\n :hover {\n ", ", ", " {\n opacity: 1;\n }\n }\n\n ", " {\n margin-left: 0.5rem;\n }\n"])), _ref2 => {
|
|
5862
5869
|
let {
|
|
5863
5870
|
isClusterFillColor
|
|
5864
5871
|
} = _ref2;
|
|
@@ -5878,7 +5885,7 @@ const ClassifiedItem = /*#__PURE__*/styled.div(_templateObject5$3 || (_templateO
|
|
|
5878
5885
|
isHidden
|
|
5879
5886
|
} = _ref5;
|
|
5880
5887
|
return isHidden ? 0.28 : 1;
|
|
5881
|
-
}, ItemText, SymbolContainer);
|
|
5888
|
+
}, ItemText, SymbolContainer, IconButton);
|
|
5882
5889
|
const SymbolButtonWithClick = /*#__PURE__*/css(_templateObject6$2 || (_templateObject6$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 3.875rem;\n height: 3.875rem;\n cursor: pointer;\n\n &:hover {\n background-color: ", ";\n }\n"])), _ref6 => {
|
|
5883
5890
|
let {
|
|
5884
5891
|
theme: {
|
|
@@ -5914,28 +5921,36 @@ const MaximizedLegendContainer = /*#__PURE__*/styled.div(_templateObject12$1 ||
|
|
|
5914
5921
|
return isShown ? 'visible' : 'hidden';
|
|
5915
5922
|
});
|
|
5916
5923
|
const MinimizedLegendContainer = /*#__PURE__*/styled(MaximizedLegendContainer)(_templateObject13$1 || (_templateObject13$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: calc(100% - 1.5rem);\n padding-right: 1.5rem;\n"])));
|
|
5917
|
-
const
|
|
5918
|
-
const
|
|
5924
|
+
const LegendHeaderButton = /*#__PURE__*/styled.span(_templateObject14$1 || (_templateObject14$1 = /*#__PURE__*/_taggedTemplateLiteralLoose([""])));
|
|
5925
|
+
const MapLegendSectionContainer = /*#__PURE__*/styled.div(_templateObject15$1 || (_templateObject15$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n\n :not(:last-child) {\n margin-bottom: 1rem;\n }\n\n ", " {\n padding-left: 0.75rem;\n visibility: hidden;\n\n :first-child {\n padding-left: 1rem;\n }\n\n :last-child {\n margin-left: 0.75rem;\n border-left: 1px ", " solid;\n }\n }\n \n :hover {\n ", " {\n visibility: visible;\n }\n }\n"])), LegendHeaderButton, _ref11 => {
|
|
5926
|
+
let {
|
|
5927
|
+
theme: {
|
|
5928
|
+
palette
|
|
5929
|
+
}
|
|
5930
|
+
} = _ref11;
|
|
5931
|
+
return palette.elementDeep;
|
|
5932
|
+
}, LegendHeaderButton);
|
|
5933
|
+
const MapLegendSectionItems = /*#__PURE__*/styled.div(_templateObject16$1 || (_templateObject16$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n height: ", "px;\n overflow: ", ";\n transition: height 0.5s;\n"])), _ref12 => {
|
|
5919
5934
|
let {
|
|
5920
5935
|
minHeight,
|
|
5921
5936
|
maxHeight,
|
|
5922
5937
|
isExpanded
|
|
5923
|
-
} =
|
|
5938
|
+
} = _ref12;
|
|
5924
5939
|
return isExpanded ? (maxHeight || 0) + 4 : minHeight;
|
|
5925
|
-
},
|
|
5940
|
+
}, _ref13 => {
|
|
5926
5941
|
let {
|
|
5927
5942
|
isExpanded
|
|
5928
|
-
} =
|
|
5943
|
+
} = _ref13;
|
|
5929
5944
|
return isExpanded ? 'none' : 'hidden';
|
|
5930
5945
|
});
|
|
5931
|
-
const MapLegendValueDescr = /*#__PURE__*/styled.div(
|
|
5946
|
+
const MapLegendValueDescr = /*#__PURE__*/styled.div(_templateObject17 || (_templateObject17 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n min-height: 1rem;\n margin-bottom: 0.25rem;\n font-size: 0.75rem;\n font-weight: 600;\n line-height: 1rem;\n"])));
|
|
5932
5947
|
|
|
5933
5948
|
const SizeLegendItemMixin = function SizeLegendItemMixin(value) {
|
|
5934
5949
|
if (value === void 0) {
|
|
5935
5950
|
value = 0;
|
|
5936
5951
|
}
|
|
5937
5952
|
|
|
5938
|
-
return css(
|
|
5953
|
+
return css(_templateObject18 || (_templateObject18 = _taggedTemplateLiteralLoose(["\n position: absolute;\n bottom: 0;\n left: 50%;\n display: flex;\n align-items: flex-end;\n flex: none;\n height: inherit;\n width: inherit;\n margin: 0 auto;\n background: none;\n border: none;\n\n :after {\n content: '';\n display: flex;\n border: 1px rgba(48, 69, 79, 0.28) solid;\n border-radius: 50%;\n margin: 0 0 0 -", "px;\n width: ", "px;\n height: ", "px;\n }\n"])), value / 2, value, value);
|
|
5939
5954
|
};
|
|
5940
5955
|
|
|
5941
5956
|
const StrokeWidthLegendItemMixin = function StrokeWidthLegendItemMixin(value) {
|
|
@@ -5943,80 +5958,80 @@ const StrokeWidthLegendItemMixin = function StrokeWidthLegendItemMixin(value) {
|
|
|
5943
5958
|
value = 0;
|
|
5944
5959
|
}
|
|
5945
5960
|
|
|
5946
|
-
return css(
|
|
5961
|
+
return css(_templateObject19 || (_templateObject19 = _taggedTemplateLiteralLoose(["\n position: relative;\n background: none;\n border: none;\n display: flex;\n align-items: center;\n flex: none;\n width: calc(100% - 2rem);\n height: ", "px;\n margin: 0 0 0.25rem 0;\n padding-left: 2rem;\n font-size: 0.75rem;\n\n :first-child,\n :last-child {\n height: auto;\n }\n\n :after {\n content: '';\n position: absolute;\n top: 50%;\n left: 0;\n width: 1.5rem;\n height: ", "px;\n margin-top: -", "px;\n background: rgb(224, 224, 224);\n }\n"])), value, value, Math.round(value / 2));
|
|
5947
5962
|
};
|
|
5948
5963
|
|
|
5949
|
-
const StrokeColorLegendItemMixin = /*#__PURE__*/css(
|
|
5950
|
-
const MapLegendItem = /*#__PURE__*/styled.div(
|
|
5964
|
+
const StrokeColorLegendItemMixin = /*#__PURE__*/css(_templateObject20 || (_templateObject20 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-right: 0.5rem;\n width: 1.5rem;\n"])));
|
|
5965
|
+
const MapLegendItem = /*#__PURE__*/styled.div(_templateObject21 || (_templateObject21 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n flex: 1;\n height: ", "rem;\n background: ", ";\n border: 1px rgba(48, 69, 79, 0.1) solid;\n margin-right: -1px;\n color: rgba(48, 69, 79, 0.65);\n opacity: ", ";\n\n ", "\n\n ", "\n"])), _ref14 => {
|
|
5951
5966
|
let {
|
|
5952
5967
|
parameter
|
|
5953
|
-
} =
|
|
5968
|
+
} = _ref14;
|
|
5954
5969
|
return isParameterType(['strokeColor', 'stroke.color'], parameter) ? 0.25 : 1;
|
|
5955
|
-
},
|
|
5970
|
+
}, _ref15 => {
|
|
5956
5971
|
let {
|
|
5957
5972
|
value
|
|
5958
|
-
} =
|
|
5973
|
+
} = _ref15;
|
|
5959
5974
|
return typeof value === 'number' ? 'none' : value;
|
|
5960
|
-
},
|
|
5975
|
+
}, _ref16 => {
|
|
5961
5976
|
let {
|
|
5962
5977
|
isHidden
|
|
5963
|
-
} =
|
|
5978
|
+
} = _ref16;
|
|
5964
5979
|
return isHidden ? 0.28 : 1;
|
|
5965
|
-
},
|
|
5980
|
+
}, _ref17 => {
|
|
5966
5981
|
let {
|
|
5967
5982
|
value,
|
|
5968
5983
|
parameter
|
|
5969
|
-
} =
|
|
5984
|
+
} = _ref17;
|
|
5970
5985
|
return isParameterType('size', parameter) && SizeLegendItemMixin(value);
|
|
5971
|
-
},
|
|
5986
|
+
}, _ref18 => {
|
|
5972
5987
|
let {
|
|
5973
5988
|
value,
|
|
5974
5989
|
parameter
|
|
5975
|
-
} =
|
|
5990
|
+
} = _ref18;
|
|
5976
5991
|
return isParameterType(['strokeWidth', 'stroke.width'], parameter) && StrokeWidthLegendItemMixin(value);
|
|
5977
5992
|
});
|
|
5978
|
-
const MapLegendOther = /*#__PURE__*/styled(MapLegendItem)(
|
|
5979
|
-
const SizeLegendItemsMixin = /*#__PURE__*/css(
|
|
5980
|
-
const StrokeWidthLegendItemsMixin = /*#__PURE__*/css(
|
|
5981
|
-
const SizeMinimizedLegend = /*#__PURE__*/styled.div(
|
|
5982
|
-
const SizeMinimizedLegendSymbol = /*#__PURE__*/styled.div(
|
|
5983
|
-
const SizeMinimizedLegendLabel = /*#__PURE__*/styled.div(
|
|
5984
|
-
const SizeMinimizedLegendDown = /*#__PURE__*/styled.div(
|
|
5985
|
-
const SizeMinimizedLegendUp = /*#__PURE__*/styled(SizeMinimizedLegendDown)(
|
|
5986
|
-
const SingleSizeLegendItemsMixin = /*#__PURE__*/css(
|
|
5987
|
-
const SingleLegendItemsMixin = /*#__PURE__*/css(
|
|
5993
|
+
const MapLegendOther = /*#__PURE__*/styled(MapLegendItem)(_templateObject22 || (_templateObject22 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n flex: none;\n position: relative;\n width: 1rem;\n margin-left: 0.25rem;\n border-radius: 0.125rem;\n"])));
|
|
5994
|
+
const SizeLegendItemsMixin = /*#__PURE__*/css(_templateObject23 || (_templateObject23 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n width: 2rem;\n height: 2rem;\n margin: 0 auto;\n\n ", " {\n width: auto;\n margin-left: 0;\n }\n"])), MapLegendOther);
|
|
5995
|
+
const StrokeWidthLegendItemsMixin = /*#__PURE__*/css(_templateObject24 || (_templateObject24 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n flex-direction: column;\n width: auto;\n\n ", " {\n width: calc(100% - 2rem);\n margin-left: 0;\n }\n"])), MapLegendOther);
|
|
5996
|
+
const SizeMinimizedLegend = /*#__PURE__*/styled.div(_templateObject25 || (_templateObject25 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-wrap: nowrap;\n align-items: center;\n margin: 0.5rem 0 0.25rem;\n"])));
|
|
5997
|
+
const SizeMinimizedLegendSymbol = /*#__PURE__*/styled.div(_templateObject26 || (_templateObject26 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 4rem;\n margin-right: 0.75rem;\n"])));
|
|
5998
|
+
const SizeMinimizedLegendLabel = /*#__PURE__*/styled.div(_templateObject27 || (_templateObject27 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n max-width: 9.75rem;\n font-size: 0.75rem;\n"])));
|
|
5999
|
+
const SizeMinimizedLegendDown = /*#__PURE__*/styled.div(_templateObject28 || (_templateObject28 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: rgba(48, 69, 79, 0.65);\n"])));
|
|
6000
|
+
const SizeMinimizedLegendUp = /*#__PURE__*/styled(SizeMinimizedLegendDown)(_templateObject29 || (_templateObject29 = /*#__PURE__*/_taggedTemplateLiteralLoose([""])));
|
|
6001
|
+
const SingleSizeLegendItemsMixin = /*#__PURE__*/css(_templateObject30 || (_templateObject30 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 4rem;\n margin-right: 0.75rem;\n\n ", ":after {\n margin: 0 auto;\n }\n"])), MapLegendItem);
|
|
6002
|
+
const SingleLegendItemsMixin = /*#__PURE__*/css(_templateObject31 || (_templateObject31 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n justify-content: center;\n width: 2rem;\n height: auto;\n margin: 0;\n ", "\n\n ", " {\n position: relative;\n top: 0;\n left: 0;\n display: flex;\n align-content: center;\n justify-content: center;\n margin: 0;\n height: auto;\n width: auto;\n\n ", "\n }\n"])), _ref19 => {
|
|
5988
6003
|
let {
|
|
5989
6004
|
isSize
|
|
5990
|
-
} =
|
|
6005
|
+
} = _ref19;
|
|
5991
6006
|
return isSize && SingleSizeLegendItemsMixin;
|
|
5992
|
-
}, MapLegendItem,
|
|
6007
|
+
}, MapLegendItem, _ref20 => {
|
|
5993
6008
|
let {
|
|
5994
6009
|
parameter
|
|
5995
|
-
} =
|
|
6010
|
+
} = _ref20;
|
|
5996
6011
|
return isParameterType(['strokeColor', 'stroke.color'], parameter) && StrokeColorLegendItemMixin;
|
|
5997
6012
|
});
|
|
5998
|
-
const MapLegendItems = /*#__PURE__*/styled.div(
|
|
6013
|
+
const MapLegendItems = /*#__PURE__*/styled.div(_templateObject32 || (_templateObject32 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n width: 100%;\n border-radius: 0.125rem;\n\n ", ";\n ", ";\n ", ";\n"])), _ref21 => {
|
|
5999
6014
|
let {
|
|
6000
6015
|
isSize
|
|
6001
|
-
} =
|
|
6016
|
+
} = _ref21;
|
|
6002
6017
|
return isSize && SizeLegendItemsMixin;
|
|
6003
|
-
},
|
|
6018
|
+
}, _ref22 => {
|
|
6004
6019
|
let {
|
|
6005
6020
|
isStrokeWidth
|
|
6006
|
-
} =
|
|
6021
|
+
} = _ref22;
|
|
6007
6022
|
return isStrokeWidth && StrokeWidthLegendItemsMixin;
|
|
6008
|
-
},
|
|
6023
|
+
}, _ref23 => {
|
|
6009
6024
|
let {
|
|
6010
6025
|
isSingle
|
|
6011
|
-
} =
|
|
6026
|
+
} = _ref23;
|
|
6012
6027
|
return isSingle && SingleLegendItemsMixin;
|
|
6013
6028
|
});
|
|
6014
|
-
const MapLegendItemsContainer = /*#__PURE__*/styled.div(
|
|
6015
|
-
const MapLegendValues = /*#__PURE__*/styled.div(
|
|
6016
|
-
const MapLegendValuesRange = /*#__PURE__*/styled.div(
|
|
6017
|
-
const MapLegendValuesOther = /*#__PURE__*/styled(MapLegendOther)(
|
|
6018
|
-
const MapLegendExpandButton = /*#__PURE__*/styled.div(
|
|
6019
|
-
const ClusterLegendContainer = /*#__PURE__*/styled.div(
|
|
6029
|
+
const MapLegendItemsContainer = /*#__PURE__*/styled.div(_templateObject33 || (_templateObject33 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n width: 100%;\n\n ", " {\n :first-child {\n border-top-left-radius: 0.125rem;\n border-bottom-left-radius: 0.125rem;\n }\n\n :last-child {\n border-top-right-radius: 0.125rem;\n border-bottom-right-radius: 0.125rem;\n }\n }\n"])), MapLegendItem);
|
|
6030
|
+
const MapLegendValues = /*#__PURE__*/styled.div(_templateObject34 || (_templateObject34 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n width: 100%;\n margin-top: 0.5rem;\n font-size: 0.75rem;\n color: rgba(48, 69, 79, 0.65);\n"])));
|
|
6031
|
+
const MapLegendValuesRange = /*#__PURE__*/styled.div(_templateObject35 || (_templateObject35 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: space-between;\n width: calc(100% - 1.25rem);\n\n div {\n flex: 1;\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n\n :first-child {\n margin-right: 0.5rem;\n }\n\n :last-child {\n margin-left: 0.5rem;\n text-align: right;\n }\n }\n"])));
|
|
6032
|
+
const MapLegendValuesOther = /*#__PURE__*/styled(MapLegendOther)(_templateObject36 || (_templateObject36 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n justify-content: center;\n border: 0;\n overflow: visible;\n"])));
|
|
6033
|
+
const MapLegendExpandButton = /*#__PURE__*/styled.div(_templateObject37 || (_templateObject37 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n cursor: pointer;\n margin-top: 0.1rem;\n font-size: 0.625rem;\n color: #1fb3aa;\n"])));
|
|
6034
|
+
const ClusterLegendContainer = /*#__PURE__*/styled.div(_templateObject38 || (_templateObject38 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: -0.9rem;\n transform: scale(0.5);\n"])));
|
|
6020
6035
|
|
|
6021
6036
|
const useSvgSymbol = (symbol, skipOffset, isClassifiedValue) => {
|
|
6022
6037
|
const SVGWrapperRefElement = useRef(null);
|
|
@@ -6263,6 +6278,21 @@ const LegendSymbolRenderer = /*#__PURE__*/memo(_ref => {
|
|
|
6263
6278
|
});
|
|
6264
6279
|
});
|
|
6265
6280
|
|
|
6281
|
+
const LegendHeaderButtons = _ref => {
|
|
6282
|
+
let {
|
|
6283
|
+
layerName,
|
|
6284
|
+
hasHiddenLegends,
|
|
6285
|
+
clearHiddenLegends,
|
|
6286
|
+
goToClassification
|
|
6287
|
+
} = _ref;
|
|
6288
|
+
return React.createElement(React.Fragment, null, !!goToClassification && React.createElement(LegendHeaderButton, null, React.createElement(IconButton, {
|
|
6289
|
+
onClick: goToClassification
|
|
6290
|
+
}, React.createElement(EverCloudClassificationIcon, null))), !!clearHiddenLegends && React.createElement(LegendHeaderButton, null, React.createElement(IconButton, {
|
|
6291
|
+
disabled: !hasHiddenLegends,
|
|
6292
|
+
onClick: () => clearHiddenLegends == null ? void 0 : clearHiddenLegends(layerName)
|
|
6293
|
+
}, React.createElement(EverCloudRefreshIcon, null))));
|
|
6294
|
+
};
|
|
6295
|
+
|
|
6266
6296
|
const getConditionAttribute = (attributes, condition) => {
|
|
6267
6297
|
if (!condition) return null;
|
|
6268
6298
|
const attributeName = getAttributeNameFromCondition(condition);
|
|
@@ -6335,6 +6365,7 @@ const LegendChildren = _ref => {
|
|
|
6335
6365
|
layerInfo,
|
|
6336
6366
|
hiddenLegends,
|
|
6337
6367
|
toggleHiddenLegend,
|
|
6368
|
+
clearHiddenLegends,
|
|
6338
6369
|
formatValue
|
|
6339
6370
|
} = _ref;
|
|
6340
6371
|
if (!((_layerInfo$style = layerInfo.style) != null && (_layerInfo$style$chil = _layerInfo$style.children) != null && _layerInfo$style$chil.length)) return null;
|
|
@@ -6360,7 +6391,10 @@ const LegendChildren = _ref => {
|
|
|
6360
6391
|
onClick: () => toggleHiddenLegend == null ? void 0 : toggleHiddenLegend(layerInfo.name, hiddenCondition)
|
|
6361
6392
|
}, React.createElement(SymbolContainer, null, React.createElement(LegendSymbolRenderer, {
|
|
6362
6393
|
symbol: paramValue.symbol
|
|
6363
|
-
})), legendText
|
|
6394
|
+
})), legendText, React.createElement(LegendHeaderButtons, {
|
|
6395
|
+
layerName: layerInfo.name,
|
|
6396
|
+
clearHiddenLegends: clearHiddenLegends
|
|
6397
|
+
}));
|
|
6364
6398
|
}));
|
|
6365
6399
|
};
|
|
6366
6400
|
|
|
@@ -6516,6 +6550,8 @@ const MaximizedLegend = _ref => {
|
|
|
6516
6550
|
};
|
|
6517
6551
|
|
|
6518
6552
|
const LegendSection = _ref => {
|
|
6553
|
+
var _hiddenLegends$layerN, _hiddenLegends$layerN2;
|
|
6554
|
+
|
|
6519
6555
|
let {
|
|
6520
6556
|
layerName,
|
|
6521
6557
|
symbol,
|
|
@@ -6524,6 +6560,8 @@ const LegendSection = _ref => {
|
|
|
6524
6560
|
classified,
|
|
6525
6561
|
hiddenLegends,
|
|
6526
6562
|
toggleHiddenLegend,
|
|
6563
|
+
clearHiddenLegends,
|
|
6564
|
+
goToClassification,
|
|
6527
6565
|
attribute,
|
|
6528
6566
|
formatValue,
|
|
6529
6567
|
index
|
|
@@ -6531,8 +6569,15 @@ const LegendSection = _ref => {
|
|
|
6531
6569
|
const [isExpanded, toggleExpanded] = useToggle();
|
|
6532
6570
|
const [maxRef, maxNode] = useNode();
|
|
6533
6571
|
const [minRef, minNode] = useNode();
|
|
6534
|
-
if (!attribute) return null;
|
|
6535
|
-
return React.createElement(MapLegendSectionContainer,
|
|
6572
|
+
if (!layerName || !attribute) return null;
|
|
6573
|
+
return React.createElement(MapLegendSectionContainer, {
|
|
6574
|
+
hasHiddenLegends: !!(hiddenLegends != null && (_hiddenLegends$layerN = hiddenLegends[layerName]) != null && _hiddenLegends$layerN.length)
|
|
6575
|
+
}, React.createElement(MapLegendHeader, null, attribute.alias || attribute.name, React.createElement(LegendHeaderButtons, {
|
|
6576
|
+
layerName: layerName,
|
|
6577
|
+
hasHiddenLegends: !!(hiddenLegends != null && (_hiddenLegends$layerN2 = hiddenLegends[layerName]) != null && _hiddenLegends$layerN2.length),
|
|
6578
|
+
clearHiddenLegends: clearHiddenLegends,
|
|
6579
|
+
goToClassification: goToClassification
|
|
6580
|
+
})), React.createElement(LegendParameterDescription, {
|
|
6536
6581
|
parameter: parameter
|
|
6537
6582
|
}), React.createElement(MapLegendSectionItems, {
|
|
6538
6583
|
minHeight: minNode == null ? void 0 : minNode.offsetHeight,
|
|
@@ -6560,7 +6605,7 @@ const LegendSection = _ref => {
|
|
|
6560
6605
|
}, isExpanded ? 'Свернуть' : 'Развернуть'));
|
|
6561
6606
|
};
|
|
6562
6607
|
|
|
6563
|
-
const _excluded$3 = ["layerInfo", "formatValue", "hiddenLegends", "toggleHiddenLegend"];
|
|
6608
|
+
const _excluded$3 = ["layerInfo", "formatValue", "hiddenLegends", "toggleHiddenLegend", "clearHiddenLegends", "goToClassification"];
|
|
6564
6609
|
const Legend = /*#__PURE__*/memo(_ref => {
|
|
6565
6610
|
var _layerInfo$style, _layerInfo$style$chil;
|
|
6566
6611
|
|
|
@@ -6568,7 +6613,9 @@ const Legend = /*#__PURE__*/memo(_ref => {
|
|
|
6568
6613
|
layerInfo,
|
|
6569
6614
|
formatValue,
|
|
6570
6615
|
hiddenLegends,
|
|
6571
|
-
toggleHiddenLegend
|
|
6616
|
+
toggleHiddenLegend,
|
|
6617
|
+
clearHiddenLegends,
|
|
6618
|
+
goToClassification
|
|
6572
6619
|
} = _ref,
|
|
6573
6620
|
rest = _objectWithoutPropertiesLoose(_ref, _excluded$3);
|
|
6574
6621
|
|
|
@@ -6577,7 +6624,9 @@ const Legend = /*#__PURE__*/memo(_ref => {
|
|
|
6577
6624
|
layerInfo: layerInfo,
|
|
6578
6625
|
formatValue: formatValue,
|
|
6579
6626
|
hiddenLegends: hiddenLegends,
|
|
6580
|
-
toggleHiddenLegend: toggleHiddenLegend
|
|
6627
|
+
toggleHiddenLegend: toggleHiddenLegend,
|
|
6628
|
+
clearHiddenLegends: clearHiddenLegends,
|
|
6629
|
+
goToClassification: goToClassification
|
|
6581
6630
|
});
|
|
6582
6631
|
}
|
|
6583
6632
|
|
|
@@ -6599,7 +6648,9 @@ const Legend = /*#__PURE__*/memo(_ref => {
|
|
|
6599
6648
|
index: index,
|
|
6600
6649
|
formatValue: formatValue,
|
|
6601
6650
|
hiddenLegends: hiddenLegends,
|
|
6602
|
-
toggleHiddenLegend: toggleHiddenLegend
|
|
6651
|
+
toggleHiddenLegend: toggleHiddenLegend,
|
|
6652
|
+
clearHiddenLegends: clearHiddenLegends,
|
|
6653
|
+
goToClassification: goToClassification
|
|
6603
6654
|
}, rest));
|
|
6604
6655
|
}));
|
|
6605
6656
|
});
|
|
@@ -7006,5 +7057,5 @@ const DraggableMarker = _ref => {
|
|
|
7006
7057
|
return React.createElement(Fragment, null);
|
|
7007
7058
|
};
|
|
7008
7059
|
|
|
7009
|
-
export { ArrowLineMiterRender, BASE_OPERATORS, BETWEEN_OPERATORS, BaseMeasureToolCreator, BaseMeasureToolEditor, CONTAINS_OPERATORS, CRS_MAP, CardAttributes, CardHeader, CircleLineMiterRender, ClassificationCondition, ClassificationManager, ClassifiedItem, ClusterLayer, ClusterLegendContainer, ClusterSymbol, ClusterSymbolPreview, ComparisonOperator, CompoundIcon, DEFAULT_CLUSTER_SVG, DEFAULT_CRS, DEFAULT_ID_ATTRIBUTE_NAME, DEFAULT_LEGEND_SIZES, DEFAULT_LEGEND_STYLES, DEFAULT_LEGEND_SYMBOL_SIZE, DEFAULT_PARAMETER_INFO, DEFAULT_SRID, DEFAULT_SYMBOL_FILL_COLOR, DEFAULT_SYMBOL_OFFSET, DEFAULT_SYMBOL_SIZE, DEFAULT_SYMBOL_STROKE_COLOR, DEFAULT_SYMBOL_WITH_BG_SIZE, DateFormat, DraggableMarker, ENDS_WITH_OPERATORS, EXTRA_BORDER_SIZE, EvergisCard, EvergisCardAttribute, AttributeContainer as EvergisCardAttributeContainer, AttributeTitle as EvergisCardAttributeTitle, AttributeValueContainer as EvergisCardAttributeValueContainer, CardControls as EvergisCardCardControls, CardTitle as EvergisCardCardTitle, EvergisCardContainer, CurrentFeatureIndex as EvergisCardCurrentFeatureIndex, FeatureName as EvergisCardFeatureName, LayerName as EvergisCardLayerName, CardPagination as EvergisCardPagination, PaginationDescription as EvergisCardPaginationDescription, SimpleAttribute as EvergisCardSimpleValue, StickyHeader as EvergisCardStickyHeader, ValueLink as EvergisCardValueLink, EvergisDynamicLayer, EvergisFeature, EvergisLayer, EvergisProvider, EvergisSelect, EvergisSelectLayer, EvergisSelectProvider, EvergisStyle, EvergisTileLayer, FILLED_OPERATORS, FeatureLayer, FilterConditionOperation, Fullscreen, GEOMETRY_ATTRIBUTE, ItemSeparator, ItemText, LabelSymbol, Legend, LegendChildren, LegendParameterDescription, LegendProvider, LegendSection, LegendSymbolRenderer, LineMiterRender, Map, MapControl, MapControls, MapLegendContainer, MapLegendControl, MapLegendDescription, MapLegendDescriptionContainer, MapLegendExpandButton, MapLegendHeader, MapLegendItem, MapLegendItems, MapLegendItemsContainer, MapLegendOther, MapLegendSectionContainer, MapLegendSectionItems, MapLegendValueDescr, MapLegendValues, MapLegendValuesOther, MapLegendValuesRange, MapProvider, MaximizedLegend, MaximizedLegendContainer, Measure, MeasureTool, Measurer, MinimizedLegend, MinimizedLegendContainer, NO_CONTENT_VALUE, Noop, OPERATOR_CONDITION_REMAP, PARAMETER_INFOS, PREVIEW_LIMITS, RANGE_OPERATORS, SGisBrushFill, SGisImageFill, SGisPolygonSymbol, SGisPolylineSymbol, SOLID_INTERVALS, STARTS_WITH_OPERATORS, SVGPoly, SYMBOL_CLASSIFICATION, SYMBOL_LIMITS, SYMBOL_SIZE_PARAMETERS, ScaleRuler, ScaleRulerBlock, ScaleRulerContainer, Search, SelectedPointSymbol, SelectedPolySymbol, ShadowedPointSymbol, ShadowedPolySymbol, SizeMinimizedLegend, SizeMinimizedLegendDown, SizeMinimizedLegendLabel, SizeMinimizedLegendSymbol, SizeMinimizedLegendUp, SquareLineMiterRender, SrId, StyleSymbol, SvgSymbol, SvgSymbolBg, Symbol, SymbolButton, SymbolByType, SymbolContainer, TextContainer, TileLayer, Tooltip, TooltipComponent, TooltipProvider, Zoom, ZoomLevel, adjustSymbol, applyParameterValue, checkLayerHasLegend, clamp, convertSvgToBase64, copyRings, createCompositeSymbol, createHiddenCondition, createLabelSymbol, createLegendSymbol, createOtherHiddenCondition, createSvgGradient, createValueTitle, createValueTitleFromCondition, dateComparisonOperators, defaultOffset, defineStrokeStylePreset, deserializeSymbol, evaluateFeature, extractStyle, extractSymbol, findChildFeatureStyle, findChildFeatureSymbol, formatArea, formatAttributeValue, formatDate, formatLength, formatPolygonMeasure, formatRangeClassValue, formatUniqueClassValue, getAttributeFromCondition, getAttributeNameFromClassified, getAttributeNameFromCondition, getAttributeType, getAttributesConfiguration, getChildSymbols, getClassificationValue, getClassified, getCrs, getDashStylePreset, getDate, getDimensions, getExprFromCondition, getExtractedSymbol, getFeatureSymbol, getHexColor, getLayerDefinition, getLegendSymbolRenders, getLegendSymbolSize, getLineDash, getMapLegendSymbolRenders, getMapState, getMaximizedLegendValues, getMinimizedLegendValues, getOffsetParameterValue, getParameterFromSymbol, getParameterValue, getRangeValues$1 as getRangeValues, getScale, getServiceConfiguration, getSignFromConditionPart, getSymbolParameterInfo, getSymbolRenders, getSymbolStrokeWidth, getTitleFromCondition, getValueFromConditionPart, isArrowLineMiter, isCalculatedParameter, isCircleLineMiter, isClusterFillColor, isClusterSymbol, isCompositeSymbol, isDashedBrush, isFilledLineMitter, isH3GridSymbol, isHatchBrush, isImageSymbol, isLabelSymbol, isLayerService, isMaskedImageSymbol, isMiterExist, isNumeric, isObject, isParameterByAttribute, isParameterType, isParameterValueSimple, isParameterValueSymbol, isPatternBrush, isPointLabelSymbol, isPointSymbol, isPolygonHasHatchBrush, isPolygonHasPatternBrush, isPolygonLabelSymbol, isPolygonSymbol, isPolylineLabelSymbol, isPolylineLikePolygon, isPolylineSymbol, isPolylineSymbols, isRangeClass, isRangeCondition, isRasterSymbol, isRequisiteNumbers, isSGisClusterSymbol, isSGisCombinedPolylineSymbol, isSGisH3Symbol, isSGisImageSymbol, isSGisPointSymbol, isSGisPolygonSymbol, isSGisPolylineSymbol, isScalablePolylineSymbol, isSimpleOffset, isSimplePolylineSymbol, isSimpleSymbol, isSizableSymbol, isSizeClassification, isSolidBrush, isSquareLineMiter, isSquareSymbol, isStaticImageSymbol, isStringAsInn, isStringAsKpp, isStringAsMail, isStringAsOgrn, isStringAsPhone, isStringAsUrl, isStringContainsDate, isStringParameterValue, isStrokeStyledSymbol, isStyle, isSvgPointSymbol, isSymbolWithOffset, isTwoDimensionalSymbol, isUniqueClass, isValidParameter, isValidUrl, mailHref, manipulateSvgSymbol, matchPhone, measureAreaSymbol, measureLengthSymbol, measurePolygonSnapSymbol, metersToPixels, numberComparisonOperators, numberWithSpaces, packStyle, phoneHref, polygonCircleFromPoint, printRangeClass, renderSymbolToCanvas, selectedPoint, selectedPolygon, selectedPolyline, serializeSvgPointSymbol, setDefaultParameterValue, setParameterValue, shouldUpdateMapState, solidStrokeStylePreset, strokeStylePresets, symbolParameterWalker, symbolTypeGuard, textComparisonOperators, toIntervals, toLineDash, unClassify, updateMapResolution, updateSymbolParameter, urlHref, useCanvas, useClusterLayer, useCrs, useDebouncedCallback, useDraggableMarker, useEventPoint, useEvergisContext, useEvergisDynamicLayer, useEvergisSelect, useEvergisSelectContext, useEvergisTileLayer, useFeatureLayer, useLayerOrder, useLayerVisibility, useLegendContext, useMapBboxChange, useMapContext, useMapLevel, useMapPick, useMapResize, useMapState, useMapView, useMapViewActions, useMapWrapper, useMaxMinScale, useMetersToPixels, useMetersToPixelsCb, useMount, useNode, useProperty, useScale, useSvgSymbol, useSymbol, useToggle, useTooltip, useTooltipContext, useUpdate, useUpdateMapView };
|
|
7060
|
+
export { ArrowLineMiterRender, BASE_OPERATORS, BETWEEN_OPERATORS, BaseMeasureToolCreator, BaseMeasureToolEditor, CONTAINS_OPERATORS, CRS_MAP, CardAttributes, CardHeader, CircleLineMiterRender, ClassificationCondition, ClassificationManager, ClassifiedItem, ClusterLayer, ClusterLegendContainer, ClusterSymbol, ClusterSymbolPreview, ComparisonOperator, CompoundIcon, DEFAULT_CLUSTER_SVG, DEFAULT_CRS, DEFAULT_ID_ATTRIBUTE_NAME, DEFAULT_LEGEND_SIZES, DEFAULT_LEGEND_STYLES, DEFAULT_LEGEND_SYMBOL_SIZE, DEFAULT_PARAMETER_INFO, DEFAULT_SRID, DEFAULT_SYMBOL_FILL_COLOR, DEFAULT_SYMBOL_OFFSET, DEFAULT_SYMBOL_SIZE, DEFAULT_SYMBOL_STROKE_COLOR, DEFAULT_SYMBOL_WITH_BG_SIZE, DateFormat, DraggableMarker, ENDS_WITH_OPERATORS, EXTRA_BORDER_SIZE, EvergisCard, EvergisCardAttribute, AttributeContainer as EvergisCardAttributeContainer, AttributeTitle as EvergisCardAttributeTitle, AttributeValueContainer as EvergisCardAttributeValueContainer, CardControls as EvergisCardCardControls, CardTitle as EvergisCardCardTitle, EvergisCardContainer, CurrentFeatureIndex as EvergisCardCurrentFeatureIndex, FeatureName as EvergisCardFeatureName, LayerName as EvergisCardLayerName, CardPagination as EvergisCardPagination, PaginationDescription as EvergisCardPaginationDescription, SimpleAttribute as EvergisCardSimpleValue, StickyHeader as EvergisCardStickyHeader, ValueLink as EvergisCardValueLink, EvergisDynamicLayer, EvergisFeature, EvergisLayer, EvergisProvider, EvergisSelect, EvergisSelectLayer, EvergisSelectProvider, EvergisStyle, EvergisTileLayer, FILLED_OPERATORS, FeatureLayer, FilterConditionOperation, Fullscreen, GEOMETRY_ATTRIBUTE, ItemSeparator, ItemText, LabelSymbol, Legend, LegendChildren, LegendHeaderButton, LegendParameterDescription, LegendProvider, LegendSection, LegendSymbolRenderer, LineMiterRender, Map, MapControl, MapControls, MapLegendContainer, MapLegendControl, MapLegendDescription, MapLegendDescriptionContainer, MapLegendExpandButton, MapLegendHeader, MapLegendItem, MapLegendItems, MapLegendItemsContainer, MapLegendOther, MapLegendSectionContainer, MapLegendSectionItems, MapLegendValueDescr, MapLegendValues, MapLegendValuesOther, MapLegendValuesRange, MapProvider, MaximizedLegend, MaximizedLegendContainer, Measure, MeasureTool, Measurer, MinimizedLegend, MinimizedLegendContainer, NO_CONTENT_VALUE, Noop, OPERATOR_CONDITION_REMAP, PARAMETER_INFOS, PREVIEW_LIMITS, RANGE_OPERATORS, SGisBrushFill, SGisImageFill, SGisPolygonSymbol, SGisPolylineSymbol, SOLID_INTERVALS, STARTS_WITH_OPERATORS, SVGPoly, SYMBOL_CLASSIFICATION, SYMBOL_LIMITS, SYMBOL_SIZE_PARAMETERS, ScaleRuler, ScaleRulerBlock, ScaleRulerContainer, Search, SelectedPointSymbol, SelectedPolySymbol, ShadowedPointSymbol, ShadowedPolySymbol, SizeMinimizedLegend, SizeMinimizedLegendDown, SizeMinimizedLegendLabel, SizeMinimizedLegendSymbol, SizeMinimizedLegendUp, SquareLineMiterRender, SrId, StyleSymbol, SvgSymbol, SvgSymbolBg, Symbol, SymbolButton, SymbolByType, SymbolContainer, TextContainer, TileLayer, Tooltip, TooltipComponent, TooltipProvider, Zoom, ZoomLevel, adjustSymbol, applyParameterValue, checkLayerHasLegend, clamp, convertSvgToBase64, copyRings, createCompositeSymbol, createHiddenCondition, createLabelSymbol, createLegendSymbol, createOtherHiddenCondition, createSvgGradient, createValueTitle, createValueTitleFromCondition, dateComparisonOperators, defaultOffset, defineStrokeStylePreset, deserializeSymbol, evaluateFeature, extractStyle, extractSymbol, findChildFeatureStyle, findChildFeatureSymbol, formatArea, formatAttributeValue, formatDate, formatLength, formatPolygonMeasure, formatRangeClassValue, formatUniqueClassValue, getAttributeFromCondition, getAttributeNameFromClassified, getAttributeNameFromCondition, getAttributeType, getAttributesConfiguration, getChildSymbols, getClassificationValue, getClassified, getCrs, getDashStylePreset, getDate, getDimensions, getExprFromCondition, getExtractedSymbol, getFeatureSymbol, getHexColor, getLayerDefinition, getLegendSymbolRenders, getLegendSymbolSize, getLineDash, getMapLegendSymbolRenders, getMapState, getMaximizedLegendValues, getMinimizedLegendValues, getOffsetParameterValue, getParameterFromSymbol, getParameterValue, getRangeValues$1 as getRangeValues, getScale, getServiceConfiguration, getSignFromConditionPart, getSymbolParameterInfo, getSymbolRenders, getSymbolStrokeWidth, getTitleFromCondition, getValueFromConditionPart, isArrowLineMiter, isCalculatedParameter, isCircleLineMiter, isClusterFillColor, isClusterSymbol, isCompositeSymbol, isDashedBrush, isFilledLineMitter, isH3GridSymbol, isHatchBrush, isImageSymbol, isLabelSymbol, isLayerService, isMaskedImageSymbol, isMiterExist, isNumeric, isObject, isParameterByAttribute, isParameterType, isParameterValueSimple, isParameterValueSymbol, isPatternBrush, isPointLabelSymbol, isPointSymbol, isPolygonHasHatchBrush, isPolygonHasPatternBrush, isPolygonLabelSymbol, isPolygonSymbol, isPolylineLabelSymbol, isPolylineLikePolygon, isPolylineSymbol, isPolylineSymbols, isRangeClass, isRangeCondition, isRasterSymbol, isRequisiteNumbers, isSGisClusterSymbol, isSGisCombinedPolylineSymbol, isSGisH3Symbol, isSGisImageSymbol, isSGisPointSymbol, isSGisPolygonSymbol, isSGisPolylineSymbol, isScalablePolylineSymbol, isSimpleOffset, isSimplePolylineSymbol, isSimpleSymbol, isSizableSymbol, isSizeClassification, isSolidBrush, isSquareLineMiter, isSquareSymbol, isStaticImageSymbol, isStringAsInn, isStringAsKpp, isStringAsMail, isStringAsOgrn, isStringAsPhone, isStringAsUrl, isStringContainsDate, isStringParameterValue, isStrokeStyledSymbol, isStyle, isSvgPointSymbol, isSymbolWithOffset, isTwoDimensionalSymbol, isUniqueClass, isValidParameter, isValidUrl, mailHref, manipulateSvgSymbol, matchPhone, measureAreaSymbol, measureLengthSymbol, measurePolygonSnapSymbol, metersToPixels, numberComparisonOperators, numberWithSpaces, packStyle, phoneHref, polygonCircleFromPoint, printRangeClass, renderSymbolToCanvas, selectedPoint, selectedPolygon, selectedPolyline, serializeSvgPointSymbol, setDefaultParameterValue, setParameterValue, shouldUpdateMapState, solidStrokeStylePreset, strokeStylePresets, symbolParameterWalker, symbolTypeGuard, textComparisonOperators, toIntervals, toLineDash, unClassify, updateMapResolution, updateSymbolParameter, urlHref, useCanvas, useClusterLayer, useCrs, useDebouncedCallback, useDraggableMarker, useEventPoint, useEvergisContext, useEvergisDynamicLayer, useEvergisSelect, useEvergisSelectContext, useEvergisTileLayer, useFeatureLayer, useLayerOrder, useLayerVisibility, useLegendContext, useMapBboxChange, useMapContext, useMapLevel, useMapPick, useMapResize, useMapState, useMapView, useMapViewActions, useMapWrapper, useMaxMinScale, useMetersToPixels, useMetersToPixelsCb, useMount, useNode, useProperty, useScale, useSvgSymbol, useSymbol, useToggle, useTooltip, useTooltipContext, useUpdate, useUpdateMapView };
|
|
7010
7061
|
//# sourceMappingURL=react.esm.js.map
|