@evergis/react 2.0.197 → 2.0.200
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/hooks/useSvgSymbol.d.ts +3 -3
- package/dist/components/Legend/styled.d.ts +4 -1
- package/dist/components/Legend/types.d.ts +5 -3
- package/dist/react.cjs.development.js +135 -75
- 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 +136 -77
- package/dist/react.esm.js.map +1 -1
- package/dist/utils/isParameterType.d.ts +1 -1
- package/dist/utils/svg.d.ts +2 -2
- 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';
|
|
@@ -3226,6 +3226,7 @@ var SvgSymbolBg;
|
|
|
3226
3226
|
SvgSymbolBg["Circle"] = "circle";
|
|
3227
3227
|
})(SvgSymbolBg || (SvgSymbolBg = {}));
|
|
3228
3228
|
|
|
3229
|
+
const DEFAULT_STROKE_OPACITY = 0.28;
|
|
3229
3230
|
const convertSvgToBase64 = svg => "data:image/svg+xml;base64," + window.btoa(svg);
|
|
3230
3231
|
const createSvgGradient = (svg, values) => svg.gradient('linear', add => {
|
|
3231
3232
|
values == null ? void 0 : values.forEach((_ref, index) => {
|
|
@@ -3244,7 +3245,7 @@ const manipulateSvgSymbol = _ref2 => {
|
|
|
3244
3245
|
symbol,
|
|
3245
3246
|
svg,
|
|
3246
3247
|
bg,
|
|
3247
|
-
|
|
3248
|
+
isClassified
|
|
3248
3249
|
} = _ref2;
|
|
3249
3250
|
if (!symbol) return SVGContainer;
|
|
3250
3251
|
const symbolData = getParameterValue(svg || symbol.data);
|
|
@@ -3295,9 +3296,9 @@ const manipulateSvgSymbol = _ref2 => {
|
|
|
3295
3296
|
SVGContainer.find(':not(#symbol-bg)').each(item => item.center(DEFAULT_SYMBOL_WITH_BG_SIZE / 2, DEFAULT_SYMBOL_WITH_BG_SIZE / 2).fill('white'));
|
|
3296
3297
|
const symbolBg = SVGContainer.find('#symbol-bg')[0];
|
|
3297
3298
|
|
|
3298
|
-
if (
|
|
3299
|
+
if (isClassified) {
|
|
3299
3300
|
symbolBg == null ? void 0 : symbolBg.stroke({
|
|
3300
|
-
opacity:
|
|
3301
|
+
opacity: DEFAULT_STROKE_OPACITY
|
|
3301
3302
|
});
|
|
3302
3303
|
} // eslint-disable-next-line max-depth
|
|
3303
3304
|
|
|
@@ -3305,15 +3306,15 @@ const manipulateSvgSymbol = _ref2 => {
|
|
|
3305
3306
|
if (isParameterByAttribute(background == null ? void 0 : background.fillColor)) {
|
|
3306
3307
|
var _background$fillColor;
|
|
3307
3308
|
|
|
3308
|
-
|
|
3309
|
-
|
|
3309
|
+
symbolBg == null ? void 0 : symbolBg.fill(createSvgGradient(SVGContainer, background == null ? void 0 : (_background$fillColor = background.fillColor) == null ? void 0 : _background$fillColor.values));
|
|
3310
|
+
}
|
|
3310
3311
|
|
|
3311
|
-
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
}
|
|
3312
|
+
if (isParameterByAttribute(background == null ? void 0 : background.strokeColor)) {
|
|
3313
|
+
var _background$strokeCol;
|
|
3314
|
+
|
|
3315
|
+
symbolBg == null ? void 0 : symbolBg.stroke({
|
|
3316
|
+
color: createSvgGradient(SVGContainer, background == null ? void 0 : (_background$strokeCol = background.strokeColor) == null ? void 0 : _background$strokeCol.values)
|
|
3317
|
+
});
|
|
3317
3318
|
}
|
|
3318
3319
|
} else {
|
|
3319
3320
|
SVGContainer.svg(innerSvg);
|
|
@@ -3329,6 +3330,20 @@ const manipulateSvgSymbol = _ref2 => {
|
|
|
3329
3330
|
color: strokeColor,
|
|
3330
3331
|
width: strokeWidth
|
|
3331
3332
|
});
|
|
3333
|
+
|
|
3334
|
+
if (isParameterByAttribute(figure == null ? void 0 : figure.fillColor)) {
|
|
3335
|
+
var _figure$fillColor;
|
|
3336
|
+
|
|
3337
|
+
item == null ? void 0 : item.fill(createSvgGradient(SVGContainer, figure == null ? void 0 : (_figure$fillColor = figure.fillColor) == null ? void 0 : _figure$fillColor.values));
|
|
3338
|
+
}
|
|
3339
|
+
|
|
3340
|
+
if (isParameterByAttribute(figure == null ? void 0 : figure.strokeColor)) {
|
|
3341
|
+
var _figure$strokeColor;
|
|
3342
|
+
|
|
3343
|
+
item == null ? void 0 : item.stroke({
|
|
3344
|
+
color: createSvgGradient(SVGContainer, figure == null ? void 0 : (_figure$strokeColor = figure.strokeColor) == null ? void 0 : _figure$strokeColor.values)
|
|
3345
|
+
});
|
|
3346
|
+
}
|
|
3332
3347
|
});
|
|
3333
3348
|
}
|
|
3334
3349
|
}
|
|
@@ -5853,7 +5868,7 @@ const Fullscreen = () => {
|
|
|
5853
5868
|
}));
|
|
5854
5869
|
};
|
|
5855
5870
|
|
|
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;
|
|
5871
|
+
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;
|
|
5857
5872
|
const MapLegendDescription = /*#__PURE__*/styled.div(_templateObject$4 || (_templateObject$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: 0.75rem;\n"])));
|
|
5858
5873
|
const ItemText = /*#__PURE__*/styled.div(_templateObject2$4 || (_templateObject2$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n max-width: calc(100% - 2rem);\n font: ", ";\n"])), _ref => {
|
|
5859
5874
|
let {
|
|
@@ -5865,7 +5880,7 @@ const ItemText = /*#__PURE__*/styled.div(_templateObject2$4 || (_templateObject2
|
|
|
5865
5880
|
});
|
|
5866
5881
|
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"])));
|
|
5867
5882
|
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"])));
|
|
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"])), _ref2 => {
|
|
5883
|
+
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 => {
|
|
5869
5884
|
let {
|
|
5870
5885
|
isClusterFillColor
|
|
5871
5886
|
} = _ref2;
|
|
@@ -5885,7 +5900,7 @@ const ClassifiedItem = /*#__PURE__*/styled.div(_templateObject5$3 || (_templateO
|
|
|
5885
5900
|
isHidden
|
|
5886
5901
|
} = _ref5;
|
|
5887
5902
|
return isHidden ? 0.28 : 1;
|
|
5888
|
-
}, ItemText, SymbolContainer);
|
|
5903
|
+
}, ItemText, SymbolContainer, IconButton);
|
|
5889
5904
|
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 => {
|
|
5890
5905
|
let {
|
|
5891
5906
|
theme: {
|
|
@@ -5921,28 +5936,36 @@ const MaximizedLegendContainer = /*#__PURE__*/styled.div(_templateObject12$1 ||
|
|
|
5921
5936
|
return isShown ? 'visible' : 'hidden';
|
|
5922
5937
|
});
|
|
5923
5938
|
const MinimizedLegendContainer = /*#__PURE__*/styled(MaximizedLegendContainer)(_templateObject13$1 || (_templateObject13$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: calc(100% - 1.5rem);\n padding-right: 1.5rem;\n"])));
|
|
5924
|
-
const
|
|
5925
|
-
const
|
|
5939
|
+
const LegendHeaderButton = /*#__PURE__*/styled.span(_templateObject14$1 || (_templateObject14$1 = /*#__PURE__*/_taggedTemplateLiteralLoose([""])));
|
|
5940
|
+
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 => {
|
|
5941
|
+
let {
|
|
5942
|
+
theme: {
|
|
5943
|
+
palette
|
|
5944
|
+
}
|
|
5945
|
+
} = _ref11;
|
|
5946
|
+
return palette.elementDeep;
|
|
5947
|
+
}, LegendHeaderButton);
|
|
5948
|
+
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 => {
|
|
5926
5949
|
let {
|
|
5927
5950
|
minHeight,
|
|
5928
5951
|
maxHeight,
|
|
5929
5952
|
isExpanded
|
|
5930
|
-
} =
|
|
5953
|
+
} = _ref12;
|
|
5931
5954
|
return isExpanded ? (maxHeight || 0) + 4 : minHeight;
|
|
5932
|
-
},
|
|
5955
|
+
}, _ref13 => {
|
|
5933
5956
|
let {
|
|
5934
5957
|
isExpanded
|
|
5935
|
-
} =
|
|
5958
|
+
} = _ref13;
|
|
5936
5959
|
return isExpanded ? 'none' : 'hidden';
|
|
5937
5960
|
});
|
|
5938
|
-
const MapLegendValueDescr = /*#__PURE__*/styled.div(
|
|
5961
|
+
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"])));
|
|
5939
5962
|
|
|
5940
5963
|
const SizeLegendItemMixin = function SizeLegendItemMixin(value) {
|
|
5941
5964
|
if (value === void 0) {
|
|
5942
5965
|
value = 0;
|
|
5943
5966
|
}
|
|
5944
5967
|
|
|
5945
|
-
return css(
|
|
5968
|
+
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);
|
|
5946
5969
|
};
|
|
5947
5970
|
|
|
5948
5971
|
const StrokeWidthLegendItemMixin = function StrokeWidthLegendItemMixin(value) {
|
|
@@ -5950,82 +5973,82 @@ const StrokeWidthLegendItemMixin = function StrokeWidthLegendItemMixin(value) {
|
|
|
5950
5973
|
value = 0;
|
|
5951
5974
|
}
|
|
5952
5975
|
|
|
5953
|
-
return css(
|
|
5976
|
+
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));
|
|
5954
5977
|
};
|
|
5955
5978
|
|
|
5956
|
-
const StrokeColorLegendItemMixin = /*#__PURE__*/css(
|
|
5957
|
-
const MapLegendItem = /*#__PURE__*/styled.div(
|
|
5979
|
+
const StrokeColorLegendItemMixin = /*#__PURE__*/css(_templateObject20 || (_templateObject20 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-right: 0.5rem;\n width: 1.5rem;\n"])));
|
|
5980
|
+
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 => {
|
|
5958
5981
|
let {
|
|
5959
5982
|
parameter
|
|
5960
|
-
} =
|
|
5983
|
+
} = _ref14;
|
|
5961
5984
|
return isParameterType(['strokeColor', 'stroke.color'], parameter) ? 0.25 : 1;
|
|
5962
|
-
},
|
|
5985
|
+
}, _ref15 => {
|
|
5963
5986
|
let {
|
|
5964
5987
|
value
|
|
5965
|
-
} =
|
|
5988
|
+
} = _ref15;
|
|
5966
5989
|
return typeof value === 'number' ? 'none' : value;
|
|
5967
|
-
},
|
|
5990
|
+
}, _ref16 => {
|
|
5968
5991
|
let {
|
|
5969
5992
|
isHidden
|
|
5970
|
-
} =
|
|
5993
|
+
} = _ref16;
|
|
5971
5994
|
return isHidden ? 0.28 : 1;
|
|
5972
|
-
},
|
|
5995
|
+
}, _ref17 => {
|
|
5973
5996
|
let {
|
|
5974
5997
|
value,
|
|
5975
5998
|
parameter
|
|
5976
|
-
} =
|
|
5999
|
+
} = _ref17;
|
|
5977
6000
|
return isParameterType('size', parameter) && SizeLegendItemMixin(value);
|
|
5978
|
-
},
|
|
6001
|
+
}, _ref18 => {
|
|
5979
6002
|
let {
|
|
5980
6003
|
value,
|
|
5981
6004
|
parameter
|
|
5982
|
-
} =
|
|
6005
|
+
} = _ref18;
|
|
5983
6006
|
return isParameterType(['strokeWidth', 'stroke.width'], parameter) && StrokeWidthLegendItemMixin(value);
|
|
5984
6007
|
});
|
|
5985
|
-
const MapLegendOther = /*#__PURE__*/styled(MapLegendItem)(
|
|
5986
|
-
const SizeLegendItemsMixin = /*#__PURE__*/css(
|
|
5987
|
-
const StrokeWidthLegendItemsMixin = /*#__PURE__*/css(
|
|
5988
|
-
const SizeMinimizedLegend = /*#__PURE__*/styled.div(
|
|
5989
|
-
const SizeMinimizedLegendSymbol = /*#__PURE__*/styled.div(
|
|
5990
|
-
const SizeMinimizedLegendLabel = /*#__PURE__*/styled.div(
|
|
5991
|
-
const SizeMinimizedLegendDown = /*#__PURE__*/styled.div(
|
|
5992
|
-
const SizeMinimizedLegendUp = /*#__PURE__*/styled(SizeMinimizedLegendDown)(
|
|
5993
|
-
const SingleSizeLegendItemsMixin = /*#__PURE__*/css(
|
|
5994
|
-
const SingleLegendItemsMixin = /*#__PURE__*/css(
|
|
6008
|
+
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"])));
|
|
6009
|
+
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);
|
|
6010
|
+
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);
|
|
6011
|
+
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"])));
|
|
6012
|
+
const SizeMinimizedLegendSymbol = /*#__PURE__*/styled.div(_templateObject26 || (_templateObject26 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 4rem;\n margin-right: 0.75rem;\n"])));
|
|
6013
|
+
const SizeMinimizedLegendLabel = /*#__PURE__*/styled.div(_templateObject27 || (_templateObject27 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n max-width: 9.75rem;\n font-size: 0.75rem;\n"])));
|
|
6014
|
+
const SizeMinimizedLegendDown = /*#__PURE__*/styled.div(_templateObject28 || (_templateObject28 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: rgba(48, 69, 79, 0.65);\n"])));
|
|
6015
|
+
const SizeMinimizedLegendUp = /*#__PURE__*/styled(SizeMinimizedLegendDown)(_templateObject29 || (_templateObject29 = /*#__PURE__*/_taggedTemplateLiteralLoose([""])));
|
|
6016
|
+
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);
|
|
6017
|
+
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 => {
|
|
5995
6018
|
let {
|
|
5996
6019
|
isSize
|
|
5997
|
-
} =
|
|
6020
|
+
} = _ref19;
|
|
5998
6021
|
return isSize && SingleSizeLegendItemsMixin;
|
|
5999
|
-
}, MapLegendItem,
|
|
6022
|
+
}, MapLegendItem, _ref20 => {
|
|
6000
6023
|
let {
|
|
6001
6024
|
parameter
|
|
6002
|
-
} =
|
|
6025
|
+
} = _ref20;
|
|
6003
6026
|
return isParameterType(['strokeColor', 'stroke.color'], parameter) && StrokeColorLegendItemMixin;
|
|
6004
6027
|
});
|
|
6005
|
-
const MapLegendItems = /*#__PURE__*/styled.div(
|
|
6028
|
+
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 => {
|
|
6006
6029
|
let {
|
|
6007
6030
|
isSize
|
|
6008
|
-
} =
|
|
6031
|
+
} = _ref21;
|
|
6009
6032
|
return isSize && SizeLegendItemsMixin;
|
|
6010
|
-
},
|
|
6033
|
+
}, _ref22 => {
|
|
6011
6034
|
let {
|
|
6012
6035
|
isStrokeWidth
|
|
6013
|
-
} =
|
|
6036
|
+
} = _ref22;
|
|
6014
6037
|
return isStrokeWidth && StrokeWidthLegendItemsMixin;
|
|
6015
|
-
},
|
|
6038
|
+
}, _ref23 => {
|
|
6016
6039
|
let {
|
|
6017
6040
|
isSingle
|
|
6018
|
-
} =
|
|
6041
|
+
} = _ref23;
|
|
6019
6042
|
return isSingle && SingleLegendItemsMixin;
|
|
6020
6043
|
});
|
|
6021
|
-
const MapLegendItemsContainer = /*#__PURE__*/styled.div(
|
|
6022
|
-
const MapLegendValues = /*#__PURE__*/styled.div(
|
|
6023
|
-
const MapLegendValuesRange = /*#__PURE__*/styled.div(
|
|
6024
|
-
const MapLegendValuesOther = /*#__PURE__*/styled(MapLegendOther)(
|
|
6025
|
-
const MapLegendExpandButton = /*#__PURE__*/styled.div(
|
|
6026
|
-
const ClusterLegendContainer = /*#__PURE__*/styled.div(
|
|
6027
|
-
|
|
6028
|
-
const useSvgSymbol = (symbol, skipOffset,
|
|
6044
|
+
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);
|
|
6045
|
+
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"])));
|
|
6046
|
+
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"])));
|
|
6047
|
+
const MapLegendValuesOther = /*#__PURE__*/styled(MapLegendOther)(_templateObject36 || (_templateObject36 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n justify-content: center;\n border: 0;\n overflow: visible;\n"])));
|
|
6048
|
+
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"])));
|
|
6049
|
+
const ClusterLegendContainer = /*#__PURE__*/styled.div(_templateObject38 || (_templateObject38 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: -0.9rem;\n transform: scale(0.5);\n"])));
|
|
6050
|
+
|
|
6051
|
+
const useSvgSymbol = (symbol, skipOffset, isClassified) => {
|
|
6029
6052
|
const SVGWrapperRefElement = useRef(null);
|
|
6030
6053
|
const SVGContainer = useMemo(() => SVG(), []);
|
|
6031
6054
|
const initSvg = useCallback(() => {
|
|
@@ -6037,14 +6060,14 @@ const useSvgSymbol = (symbol, skipOffset, isClassifiedValue) => {
|
|
|
6037
6060
|
svg,
|
|
6038
6061
|
bg,
|
|
6039
6062
|
newSymbol,
|
|
6040
|
-
|
|
6063
|
+
isClassified
|
|
6041
6064
|
} = _ref;
|
|
6042
6065
|
manipulateSvgSymbol({
|
|
6043
6066
|
SVGContainer,
|
|
6044
6067
|
symbol: newSymbol || symbol,
|
|
6045
6068
|
svg,
|
|
6046
6069
|
bg,
|
|
6047
|
-
|
|
6070
|
+
isClassified
|
|
6048
6071
|
});
|
|
6049
6072
|
}, [SVGContainer, symbol]);
|
|
6050
6073
|
const getUpdatedSvgSymbol = useCallback((field, value) => {
|
|
@@ -6085,7 +6108,7 @@ const useSvgSymbol = (symbol, skipOffset, isClassifiedValue) => {
|
|
|
6085
6108
|
svg: getParameterValue(data),
|
|
6086
6109
|
newSymbol,
|
|
6087
6110
|
bg: (_newSymbol$background = newSymbol.background) == null ? void 0 : _newSymbol$background.type,
|
|
6088
|
-
|
|
6111
|
+
isClassified
|
|
6089
6112
|
});
|
|
6090
6113
|
return _extends({}, newSymbol, {
|
|
6091
6114
|
data: SVGContainer.svg()
|
|
@@ -6142,7 +6165,7 @@ const SvgSymbol = /*#__PURE__*/memo(_ref7 => {
|
|
|
6142
6165
|
text,
|
|
6143
6166
|
fontSettings,
|
|
6144
6167
|
skipOffset,
|
|
6145
|
-
|
|
6168
|
+
isClassified,
|
|
6146
6169
|
onClick
|
|
6147
6170
|
} = _ref7;
|
|
6148
6171
|
const {
|
|
@@ -6150,7 +6173,7 @@ const SvgSymbol = /*#__PURE__*/memo(_ref7 => {
|
|
|
6150
6173
|
initSvg,
|
|
6151
6174
|
getSvgData,
|
|
6152
6175
|
manipulateSvg
|
|
6153
|
-
} = useSvgSymbol(symbol, skipOffset,
|
|
6176
|
+
} = useSvgSymbol(symbol, skipOffset, isClassified);
|
|
6154
6177
|
const onSelectSymbol = useCallback(() => {
|
|
6155
6178
|
onClick == null ? void 0 : onClick(getSvgData(), _extends({}, symbol, bg ? {
|
|
6156
6179
|
background: _extends({}, symbol.background, {
|
|
@@ -6171,9 +6194,9 @@ const SvgSymbol = /*#__PURE__*/memo(_ref7 => {
|
|
|
6171
6194
|
svg,
|
|
6172
6195
|
bg,
|
|
6173
6196
|
newSymbol: symbol,
|
|
6174
|
-
|
|
6197
|
+
isClassified
|
|
6175
6198
|
});
|
|
6176
|
-
}, [svg, symbol, bg, manipulateSvg,
|
|
6199
|
+
}, [svg, symbol, bg, manipulateSvg, isClassified]);
|
|
6177
6200
|
return text ? React.createElement(SvgSymbolContainer, null, renderSymbol, React.createElement(SvgSymbolLabel, {
|
|
6178
6201
|
fontSettings: fontSettings
|
|
6179
6202
|
}, text), !!(fontSettings != null && fontSettings.haloColor) && !!(fontSettings != null && fontSettings.haloWidth) && React.createElement(SvgSymbolLabel, {
|
|
@@ -6213,7 +6236,7 @@ const ClusterSymbolPreview = _ref => {
|
|
|
6213
6236
|
return React.createElement(SvgSymbol, {
|
|
6214
6237
|
svg: DEFAULT_CLUSTER_SVG,
|
|
6215
6238
|
symbol: svgSymbol,
|
|
6216
|
-
|
|
6239
|
+
isClassified: isClassified,
|
|
6217
6240
|
text: '99',
|
|
6218
6241
|
fontSettings: _extends({}, symbol.labelSymbol, {
|
|
6219
6242
|
fontSize: fontSize || ((_symbol$labelSymbol = symbol.labelSymbol) == null ? void 0 : _symbol$labelSymbol.fontSize)
|
|
@@ -6270,6 +6293,21 @@ const LegendSymbolRenderer = /*#__PURE__*/memo(_ref => {
|
|
|
6270
6293
|
});
|
|
6271
6294
|
});
|
|
6272
6295
|
|
|
6296
|
+
const LegendHeaderButtons = _ref => {
|
|
6297
|
+
let {
|
|
6298
|
+
layerName,
|
|
6299
|
+
hasHiddenLegends,
|
|
6300
|
+
clearHiddenLegends,
|
|
6301
|
+
goToClassification
|
|
6302
|
+
} = _ref;
|
|
6303
|
+
return React.createElement(React.Fragment, null, !!goToClassification && React.createElement(LegendHeaderButton, null, React.createElement(IconButton, {
|
|
6304
|
+
onClick: goToClassification
|
|
6305
|
+
}, React.createElement(EverCloudClassificationIcon, null))), !!clearHiddenLegends && React.createElement(LegendHeaderButton, null, React.createElement(IconButton, {
|
|
6306
|
+
disabled: !hasHiddenLegends,
|
|
6307
|
+
onClick: () => clearHiddenLegends == null ? void 0 : clearHiddenLegends(layerName)
|
|
6308
|
+
}, React.createElement(EverCloudRefreshIcon, null))));
|
|
6309
|
+
};
|
|
6310
|
+
|
|
6273
6311
|
const getConditionAttribute = (attributes, condition) => {
|
|
6274
6312
|
if (!condition) return null;
|
|
6275
6313
|
const attributeName = getAttributeNameFromCondition(condition);
|
|
@@ -6342,6 +6380,7 @@ const LegendChildren = _ref => {
|
|
|
6342
6380
|
layerInfo,
|
|
6343
6381
|
hiddenLegends,
|
|
6344
6382
|
toggleHiddenLegend,
|
|
6383
|
+
clearHiddenLegends,
|
|
6345
6384
|
formatValue
|
|
6346
6385
|
} = _ref;
|
|
6347
6386
|
if (!((_layerInfo$style = layerInfo.style) != null && (_layerInfo$style$chil = _layerInfo$style.children) != null && _layerInfo$style$chil.length)) return null;
|
|
@@ -6367,7 +6406,10 @@ const LegendChildren = _ref => {
|
|
|
6367
6406
|
onClick: () => toggleHiddenLegend == null ? void 0 : toggleHiddenLegend(layerInfo.name, hiddenCondition)
|
|
6368
6407
|
}, React.createElement(SymbolContainer, null, React.createElement(LegendSymbolRenderer, {
|
|
6369
6408
|
symbol: paramValue.symbol
|
|
6370
|
-
})), legendText
|
|
6409
|
+
})), legendText, React.createElement(LegendHeaderButtons, {
|
|
6410
|
+
layerName: layerInfo.name,
|
|
6411
|
+
clearHiddenLegends: clearHiddenLegends
|
|
6412
|
+
}));
|
|
6371
6413
|
}));
|
|
6372
6414
|
};
|
|
6373
6415
|
|
|
@@ -6523,6 +6565,8 @@ const MaximizedLegend = _ref => {
|
|
|
6523
6565
|
};
|
|
6524
6566
|
|
|
6525
6567
|
const LegendSection = _ref => {
|
|
6568
|
+
var _hiddenLegends$layerN, _hiddenLegends$layerN2;
|
|
6569
|
+
|
|
6526
6570
|
let {
|
|
6527
6571
|
layerName,
|
|
6528
6572
|
symbol,
|
|
@@ -6531,6 +6575,8 @@ const LegendSection = _ref => {
|
|
|
6531
6575
|
classified,
|
|
6532
6576
|
hiddenLegends,
|
|
6533
6577
|
toggleHiddenLegend,
|
|
6578
|
+
clearHiddenLegends,
|
|
6579
|
+
goToClassification,
|
|
6534
6580
|
attribute,
|
|
6535
6581
|
formatValue,
|
|
6536
6582
|
index
|
|
@@ -6538,8 +6584,15 @@ const LegendSection = _ref => {
|
|
|
6538
6584
|
const [isExpanded, toggleExpanded] = useToggle();
|
|
6539
6585
|
const [maxRef, maxNode] = useNode();
|
|
6540
6586
|
const [minRef, minNode] = useNode();
|
|
6541
|
-
if (!attribute) return null;
|
|
6542
|
-
return React.createElement(MapLegendSectionContainer,
|
|
6587
|
+
if (!layerName || !attribute) return null;
|
|
6588
|
+
return React.createElement(MapLegendSectionContainer, {
|
|
6589
|
+
hasHiddenLegends: !!(hiddenLegends != null && (_hiddenLegends$layerN = hiddenLegends[layerName]) != null && _hiddenLegends$layerN.length)
|
|
6590
|
+
}, React.createElement(MapLegendHeader, null, attribute.alias || attribute.name, React.createElement(LegendHeaderButtons, {
|
|
6591
|
+
layerName: layerName,
|
|
6592
|
+
hasHiddenLegends: !!(hiddenLegends != null && (_hiddenLegends$layerN2 = hiddenLegends[layerName]) != null && _hiddenLegends$layerN2.length),
|
|
6593
|
+
clearHiddenLegends: clearHiddenLegends,
|
|
6594
|
+
goToClassification: goToClassification
|
|
6595
|
+
})), React.createElement(LegendParameterDescription, {
|
|
6543
6596
|
parameter: parameter
|
|
6544
6597
|
}), React.createElement(MapLegendSectionItems, {
|
|
6545
6598
|
minHeight: minNode == null ? void 0 : minNode.offsetHeight,
|
|
@@ -6567,7 +6620,7 @@ const LegendSection = _ref => {
|
|
|
6567
6620
|
}, isExpanded ? 'Свернуть' : 'Развернуть'));
|
|
6568
6621
|
};
|
|
6569
6622
|
|
|
6570
|
-
const _excluded$3 = ["layerInfo", "formatValue", "hiddenLegends", "toggleHiddenLegend"];
|
|
6623
|
+
const _excluded$3 = ["layerInfo", "formatValue", "hiddenLegends", "toggleHiddenLegend", "clearHiddenLegends", "goToClassification"];
|
|
6571
6624
|
const Legend = /*#__PURE__*/memo(_ref => {
|
|
6572
6625
|
var _layerInfo$style, _layerInfo$style$chil;
|
|
6573
6626
|
|
|
@@ -6575,7 +6628,9 @@ const Legend = /*#__PURE__*/memo(_ref => {
|
|
|
6575
6628
|
layerInfo,
|
|
6576
6629
|
formatValue,
|
|
6577
6630
|
hiddenLegends,
|
|
6578
|
-
toggleHiddenLegend
|
|
6631
|
+
toggleHiddenLegend,
|
|
6632
|
+
clearHiddenLegends,
|
|
6633
|
+
goToClassification
|
|
6579
6634
|
} = _ref,
|
|
6580
6635
|
rest = _objectWithoutPropertiesLoose(_ref, _excluded$3);
|
|
6581
6636
|
|
|
@@ -6584,7 +6639,9 @@ const Legend = /*#__PURE__*/memo(_ref => {
|
|
|
6584
6639
|
layerInfo: layerInfo,
|
|
6585
6640
|
formatValue: formatValue,
|
|
6586
6641
|
hiddenLegends: hiddenLegends,
|
|
6587
|
-
toggleHiddenLegend: toggleHiddenLegend
|
|
6642
|
+
toggleHiddenLegend: toggleHiddenLegend,
|
|
6643
|
+
clearHiddenLegends: clearHiddenLegends,
|
|
6644
|
+
goToClassification: goToClassification
|
|
6588
6645
|
});
|
|
6589
6646
|
}
|
|
6590
6647
|
|
|
@@ -6606,7 +6663,9 @@ const Legend = /*#__PURE__*/memo(_ref => {
|
|
|
6606
6663
|
index: index,
|
|
6607
6664
|
formatValue: formatValue,
|
|
6608
6665
|
hiddenLegends: hiddenLegends,
|
|
6609
|
-
toggleHiddenLegend: toggleHiddenLegend
|
|
6666
|
+
toggleHiddenLegend: toggleHiddenLegend,
|
|
6667
|
+
clearHiddenLegends: clearHiddenLegends,
|
|
6668
|
+
goToClassification: goToClassification
|
|
6610
6669
|
}, rest));
|
|
6611
6670
|
}));
|
|
6612
6671
|
});
|
|
@@ -7013,5 +7072,5 @@ const DraggableMarker = _ref => {
|
|
|
7013
7072
|
return React.createElement(Fragment, null);
|
|
7014
7073
|
};
|
|
7015
7074
|
|
|
7016
|
-
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 };
|
|
7075
|
+
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 };
|
|
7017
7076
|
//# sourceMappingURL=react.esm.js.map
|