@evergis/react 2.0.133 → 2.0.134
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/MapLegend/MapLegend.d.ts +1 -6
- package/dist/components/MapLegend/index.d.ts +1 -1
- package/dist/components/MapLegend/styled.d.ts +13 -1
- package/dist/components/MapLegend/types.d.ts +5 -0
- package/dist/react.cjs.development.js +61 -38
- 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 +63 -39
- package/dist/react.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/react.esm.js
CHANGED
|
@@ -42,7 +42,7 @@ import { GridClusterProvider } from '@evergis/sgis/es/layers/clusterProviders/Gr
|
|
|
42
42
|
import { PointEditor } from '@evergis/sgis/es/controls/PointEditor';
|
|
43
43
|
import { debounce } from '@evergis/sgis/es/utils/utils';
|
|
44
44
|
import styled, { css } from 'styled-components';
|
|
45
|
-
import { Icon } from '@evergis/ui';
|
|
45
|
+
import { Icon, useToggle } from '@evergis/ui';
|
|
46
46
|
import punycode from 'punycode';
|
|
47
47
|
import { TileLayer as TileLayer$1 } from '@evergis/sgis/es/layers/TileLayer';
|
|
48
48
|
|
|
@@ -2835,7 +2835,7 @@ function getSymbolRenders(symbol, size, features) {
|
|
|
2835
2835
|
const featuresToRender = _extends({}, MOCK_FEATURES, features);
|
|
2836
2836
|
|
|
2837
2837
|
if (isSGisPolygonSymbol(symbol)) {
|
|
2838
|
-
return symbol.renderFunctionAsync(featuresToRender.
|
|
2838
|
+
return symbol.renderFunctionAsync(featuresToRender.h3grid, resolution, plain);
|
|
2839
2839
|
}
|
|
2840
2840
|
|
|
2841
2841
|
if (isSGisPolylineSymbol(symbol)) {
|
|
@@ -2843,7 +2843,7 @@ function getSymbolRenders(symbol, size, features) {
|
|
|
2843
2843
|
}
|
|
2844
2844
|
|
|
2845
2845
|
if (isSGisH3Symbol(symbol)) {
|
|
2846
|
-
return symbol.renderFunctionAsync(featuresToRender.
|
|
2846
|
+
return symbol.renderFunctionAsync(featuresToRender.polygon, resolution, plain);
|
|
2847
2847
|
}
|
|
2848
2848
|
|
|
2849
2849
|
return symbol.renderFunctionAsync(featuresToRender.point, resolution, plain);
|
|
@@ -4671,9 +4671,9 @@ const EvergisSelect = _ref => {
|
|
|
4671
4671
|
var _templateObject$2, _templateObject2$1, _templateObject3$1, _templateObject4$1, _templateObject5$1;
|
|
4672
4672
|
const LegendContainer = /*#__PURE__*/styled.div(_templateObject$2 || (_templateObject$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: #fff;\n\n canvas {\n border-radius: 0.125rem;\n }\n"])));
|
|
4673
4673
|
const LegendSectionContainer = /*#__PURE__*/styled.div(_templateObject2$1 || (_templateObject2$1 = /*#__PURE__*/_taggedTemplateLiteralLoose([""])));
|
|
4674
|
-
const LegendSymbolTitle = /*#__PURE__*/styled.p(_templateObject3$1 || (_templateObject3$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n
|
|
4675
|
-
const LegendValueContainer = /*#__PURE__*/styled.div(_templateObject4$1 || (_templateObject4$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n font-size: 0.
|
|
4676
|
-
const LegendSectionHeader = /*#__PURE__*/styled.div(_templateObject5$1 || (_templateObject5$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n
|
|
4674
|
+
const LegendSymbolTitle = /*#__PURE__*/styled.p(_templateObject3$1 || (_templateObject3$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 0;\n text-overflow: ellipsis;\n white-space: nowrap;\n overflow: hidden;\n"])));
|
|
4675
|
+
const LegendValueContainer = /*#__PURE__*/styled.div(_templateObject4$1 || (_templateObject4$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n font-size: 0.75rem;\n padding: 0.125rem 0;\n\n ", " {\n padding-left: 0.5rem;\n }\n"])), LegendSymbolTitle);
|
|
4676
|
+
const LegendSectionHeader = /*#__PURE__*/styled.div(_templateObject5$1 || (_templateObject5$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: 0.75rem;\n font-weight: 500;\n"])));
|
|
4677
4677
|
|
|
4678
4678
|
const LegendSection = _ref => {
|
|
4679
4679
|
let {
|
|
@@ -4936,39 +4936,39 @@ const Fullscreen = () => {
|
|
|
4936
4936
|
}));
|
|
4937
4937
|
};
|
|
4938
4938
|
|
|
4939
|
-
var _templateObject$6, _templateObject2$5, _templateObject3$5, _templateObject4$4, _templateObject5$4;
|
|
4939
|
+
var _templateObject$6, _templateObject2$5, _templateObject3$5, _templateObject4$4, _templateObject5$4, _templateObject6$2, _templateObject7$2, _templateObject8$2, _templateObject9$1, _templateObject10$1, _templateObject11$1;
|
|
4940
4940
|
const MapLegendControl = /*#__PURE__*/styled(MapControl)(_templateObject$6 || (_templateObject$6 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n cursor: default;\n"])));
|
|
4941
|
-
const MapLegendContainer = /*#__PURE__*/styled.div(_templateObject2$5 || (_templateObject2$5 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n width:
|
|
4942
|
-
const MapLegendHeader = /*#__PURE__*/styled(LegendSectionHeader)(_templateObject3$5 || (_templateObject3$5 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 0;\n"])));
|
|
4943
|
-
const
|
|
4944
|
-
const
|
|
4945
|
-
|
|
4946
|
-
const MAX_SIZE$2 = 100;
|
|
4947
|
-
const MapLegendSymbol = _ref => {
|
|
4941
|
+
const MapLegendContainer = /*#__PURE__*/styled.div(_templateObject2$5 || (_templateObject2$5 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n width: 100%;\n box-sizing: border-box;\n\n canvas {\n height: 1rem;\n width: 1rem;\n }\n"])));
|
|
4942
|
+
const MapLegendHeader = /*#__PURE__*/styled(LegendSectionHeader)(_templateObject3$5 || (_templateObject3$5 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-bottom: 0.25rem;\n font-weight: 500;\n"])));
|
|
4943
|
+
const MapLegendValueDescr = /*#__PURE__*/styled.div(_templateObject4$4 || (_templateObject4$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-bottom: 0.25rem;\n font-size: 0.75rem;\n font-weight: 500;\n"])));
|
|
4944
|
+
const MapLegendItems = /*#__PURE__*/styled.div(_templateObject5$4 || (_templateObject5$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n width: 100%;\n border-radius: 0.125rem;\n overflow: hidden;\n"])));
|
|
4945
|
+
const MapLegendItem = /*#__PURE__*/styled.div(_templateObject6$2 || (_templateObject6$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n flex: 1;\n height: 1rem;\n background-color: ", ";\n border: 1px rgba(48, 69, 79, 0.1) solid;\n"])), _ref => {
|
|
4948
4946
|
let {
|
|
4949
|
-
value
|
|
4950
|
-
parameter
|
|
4947
|
+
value
|
|
4951
4948
|
} = _ref;
|
|
4952
|
-
return
|
|
4953
|
-
|
|
4954
|
-
|
|
4955
|
-
|
|
4956
|
-
|
|
4957
|
-
|
|
4958
|
-
|
|
4959
|
-
|
|
4960
|
-
|
|
4949
|
+
return value;
|
|
4950
|
+
});
|
|
4951
|
+
const MapLegendOther = /*#__PURE__*/styled(MapLegendItem)(_templateObject7$2 || (_templateObject7$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n flex: none;\n width: 1rem;\n margin-left: 0.25rem;\n border-radius: 0.125rem;\n overflow: hidden;\n"])));
|
|
4952
|
+
const MapLegendValues = /*#__PURE__*/styled.div(_templateObject8$2 || (_templateObject8$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n width: 100%;\n font-size: 0.75rem;\n color: rgba(48, 69, 79, 0.65);\n"])));
|
|
4953
|
+
const MapLegendValuesRange = /*#__PURE__*/styled.div(_templateObject9$1 || (_templateObject9$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: space-between;\n width: 100%;\n"])));
|
|
4954
|
+
const MapLegendValuesOther = /*#__PURE__*/styled(MapLegendOther)(_templateObject10$1 || (_templateObject10$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border: 0;\n text-align: center;\n overflow: visible;\n"])));
|
|
4955
|
+
const MapLegendExpandButton = /*#__PURE__*/styled.div(_templateObject11$1 || (_templateObject11$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n cursor: pointer;\n margin: 0.1rem 0 0.5rem;\n font-size: 0.625rem;\n color: #1FB3AA;\n"])));
|
|
4956
|
+
|
|
4957
|
+
const getValueFromLegendTitle = (title, minOrMax) => {
|
|
4958
|
+
const result = title == null ? void 0 : title.split(" - ");
|
|
4959
|
+
return minOrMax === "min" ? result == null ? void 0 : result[0] : result == null ? void 0 : result[1];
|
|
4961
4960
|
};
|
|
4962
4961
|
|
|
4963
|
-
const DEFAULT_FROM_TO = ['Выше', 'Ниже'];
|
|
4964
4962
|
const MapLegend = _ref => {
|
|
4963
|
+
var _symbol$fill, _item$values$, _item$values;
|
|
4964
|
+
|
|
4965
4965
|
let {
|
|
4966
4966
|
layer,
|
|
4967
4967
|
config,
|
|
4968
|
-
fromToTitle = DEFAULT_FROM_TO,
|
|
4969
4968
|
className
|
|
4970
4969
|
} = _ref;
|
|
4971
4970
|
const legend = useMapLegend(layer, config);
|
|
4971
|
+
const [isExpanded, toggleExpanded] = useToggle();
|
|
4972
4972
|
|
|
4973
4973
|
if (!legend) {
|
|
4974
4974
|
return null;
|
|
@@ -4982,11 +4982,35 @@ const MapLegend = _ref => {
|
|
|
4982
4982
|
symbol: symbol
|
|
4983
4983
|
}, React.createElement(MapLegendControl, {
|
|
4984
4984
|
className: className
|
|
4985
|
-
}, React.createElement(
|
|
4985
|
+
}, React.createElement(MapLegendHeader, null, layer == null ? void 0 : layer.alias), React.createElement(MapLegendContainer, null, isExpanded ? React.createElement(Legend, {
|
|
4986
|
+
layer: layer
|
|
4987
|
+
}) : React.createElement(React.Fragment, null, React.createElement(MapLegendValueDescr, null, item.title), React.createElement(MapLegendItems, null, item.values.map(value => React.createElement(MapLegendItem, {
|
|
4986
4988
|
key: value.title,
|
|
4987
|
-
|
|
4988
|
-
|
|
4989
|
-
})), React.createElement(
|
|
4989
|
+
title: value.title,
|
|
4990
|
+
value: value.parameterValue
|
|
4991
|
+
})), React.createElement(MapLegendOther, {
|
|
4992
|
+
title: "\u0414\u0440\u0443\u0433\u043E\u0435",
|
|
4993
|
+
value: (_symbol$fill = symbol.fill) == null ? void 0 : _symbol$fill.color
|
|
4994
|
+
})), React.createElement(MapLegendValues, null, React.createElement(MapLegendValuesRange, null, React.createElement("div", null, getValueFromLegendTitle((_item$values$ = item.values[0]) == null ? void 0 : _item$values$.title, "max")), React.createElement("div", null, getValueFromLegendTitle((_item$values = item.values[item.values.length - 1]) == null ? void 0 : _item$values.title, "min"))), React.createElement(MapLegendValuesOther, null, "-"))), React.createElement(MapLegendExpandButton, {
|
|
4995
|
+
onClick: toggleExpanded
|
|
4996
|
+
}, isExpanded ? "Свернуть" : "Развернуть"))));
|
|
4997
|
+
};
|
|
4998
|
+
|
|
4999
|
+
const MAX_SIZE$2 = 100;
|
|
5000
|
+
const MapLegendSymbol = _ref => {
|
|
5001
|
+
let {
|
|
5002
|
+
value,
|
|
5003
|
+
parameter
|
|
5004
|
+
} = _ref;
|
|
5005
|
+
return React.createElement(LegendSymbol, {
|
|
5006
|
+
key: value.title,
|
|
5007
|
+
parameter: parameter,
|
|
5008
|
+
parameterValue: value.parameterValue
|
|
5009
|
+
}, symbol => React.createElement(Symbol, {
|
|
5010
|
+
render: getMapLegendSymbolRenders,
|
|
5011
|
+
symbol: symbol,
|
|
5012
|
+
size: MAX_SIZE$2
|
|
5013
|
+
}));
|
|
4990
5014
|
};
|
|
4991
5015
|
|
|
4992
5016
|
let MeasureTool = /*#__PURE__*/function (_React$Component) {
|
|
@@ -5254,7 +5278,7 @@ const ZoomLevel = () => {
|
|
|
5254
5278
|
}, level || 0);
|
|
5255
5279
|
};
|
|
5256
5280
|
|
|
5257
|
-
var _templateObject$8, _templateObject2$7, _templateObject3$7, _templateObject4$5, _templateObject5$5, _templateObject6$
|
|
5281
|
+
var _templateObject$8, _templateObject2$7, _templateObject3$7, _templateObject4$5, _templateObject5$5, _templateObject6$3, _templateObject7$3, _templateObject8$3, _templateObject9$2, _templateObject10$2, _templateObject11$2;
|
|
5258
5282
|
|
|
5259
5283
|
const cornerBottom = cornerSize => css(_templateObject$8 || (_templateObject$8 = _taggedTemplateLiteralLoose(["\n &:before {\n left: 50%;\n transform: translate(-50%, 100%);\n bottom: 0;\n border-left: ", " solid transparent;\n border-right: ", " solid transparent;\n border-top: ", " solid rgba(28, 33, 48, 0.8);\n }\n"])), cornerSize, cornerSize, cornerSize);
|
|
5260
5284
|
|
|
@@ -5266,21 +5290,21 @@ const cornerTop = cornerSize => css(_templateObject4$5 || (_templateObject4$5 =
|
|
|
5266
5290
|
|
|
5267
5291
|
const top = (distance, cornerSize) => css(_templateObject5$5 || (_templateObject5$5 = _taggedTemplateLiteralLoose(["\n transform: translate(-50%, 0);\n left: -50%;\n bottom: ", ";\n ", "\n"])), distance, cornerSize && cornerBottom(cornerSize));
|
|
5268
5292
|
|
|
5269
|
-
const right = (distance, cornerSize) => css(_templateObject6$
|
|
5293
|
+
const right = (distance, cornerSize) => css(_templateObject6$3 || (_templateObject6$3 = _taggedTemplateLiteralLoose(["\n transform: translate(0, -50%);\n top: -50%;\n left: ", ";\n ", "\n"])), distance, cornerSize && cornerLeft(cornerSize));
|
|
5270
5294
|
|
|
5271
|
-
const left = (distance, cornerSize) => css(_templateObject7$
|
|
5295
|
+
const left = (distance, cornerSize) => css(_templateObject7$3 || (_templateObject7$3 = _taggedTemplateLiteralLoose(["\n transform: translate(0, -50%);\n top: -50%;\n right: ", ";\n ", "\n"])), distance, cornerSize && cornerRight(cornerSize));
|
|
5272
5296
|
|
|
5273
|
-
const bottom = (distance, cornerSize) => css(_templateObject8$
|
|
5297
|
+
const bottom = (distance, cornerSize) => css(_templateObject8$3 || (_templateObject8$3 = _taggedTemplateLiteralLoose(["\n transform: translate(-50%, 0);\n left: -50%;\n top: ", ";\n ", "\n"])), distance, cornerSize && cornerTop(cornerSize));
|
|
5274
5298
|
|
|
5275
5299
|
const placementMixin$1 = function placementMixin(placement, distance, cornerSize) {
|
|
5276
5300
|
if (placement === void 0) {
|
|
5277
5301
|
placement = 'top';
|
|
5278
5302
|
}
|
|
5279
5303
|
|
|
5280
|
-
return css(_templateObject9$
|
|
5304
|
+
return css(_templateObject9$2 || (_templateObject9$2 = _taggedTemplateLiteralLoose(["\n ", "\n ", "\n ", "\n ", "\n"])), placement === 'top' && top(distance, cornerSize), placement === 'right' && right(distance, cornerSize), placement === 'left' && left(distance, cornerSize), placement === 'bottom' && bottom(distance, cornerSize));
|
|
5281
5305
|
};
|
|
5282
|
-
const corner = /*#__PURE__*/css(_templateObject10$
|
|
5283
|
-
const TooltipComponent = /*#__PURE__*/styled.div(_templateObject11$
|
|
5306
|
+
const corner = /*#__PURE__*/css(_templateObject10$2 || (_templateObject10$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n &:before {\n content: '';\n width: 0;\n height: 0;\n position: absolute;\n }\n"])));
|
|
5307
|
+
const TooltipComponent = /*#__PURE__*/styled.div(_templateObject11$2 || (_templateObject11$2 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n z-index: 999;\n display: flex;\n font-size: 0.625rem;\n color: #fff;\n background-color: rgba(28, 33, 48, 0.8);\n padding: 0.4em 0.6em;\n border-radius: 2px;\n user-select: none;\n box-sizing: border-box;\n white-space: pre;\n ", "\n ", "\n"])), _ref => {
|
|
5284
5308
|
let {
|
|
5285
5309
|
placement,
|
|
5286
5310
|
distance = '0.5rem',
|
|
@@ -5355,5 +5379,5 @@ const DraggableMarker = _ref => {
|
|
|
5355
5379
|
return React.createElement(Fragment, null);
|
|
5356
5380
|
};
|
|
5357
5381
|
|
|
5358
|
-
export { ArrowLineMiterRender, BaseMeasureToolCreator, BaseMeasureToolEditor, CRS_MAP, CardAttributes, CardHeader, CircleLineMiterRender, ClassificationCondition, ClassificationManager, ClusterLayer, CompoundIcon, DEFAULT_CRS, DEFAULT_SRID, DEFAULT_SYMBOL_SIZE, DraggableMarker, EvergisCard, EvergisCardAttribute, AttributeContainer as EvergisCardAttributeContainer, AttributeTitle as EvergisCardAttributeTitle, AttributeValueContainer as EvergisCardAttributeValueContainer, CardControls as EvergisCardCardControls, CardTitle as EvergisCardCardTitle, CloseIcon as EvergisCardCloseIcon, EvergisCardContainer, CurrentFeatureIndex as EvergisCardCurrentFeatureIndex, FeatureName as EvergisCardFeatureName, LayerName as EvergisCardLayerName, NextIcon as EvergisCardNextIcon, CardPagination as EvergisCardPagination, PaginationDescription as EvergisCardPaginationDescription, PrevIcon as EvergisCardPrevIcon, SimpleAttribute as EvergisCardSimpleValue, StickyHeader as EvergisCardStickyHeader, ValueLink as EvergisCardValueLink, ZoomIcon as EvergisCardZoomIcon, EvergisDynamicLayer, EvergisFeature, EvergisLayer, EvergisProvider, EvergisSelect, EvergisSelectLayer, EvergisSelectProvider, EvergisStyle, EvergisTileLayer, FeatureLayer, Fullscreen, LabelSymbol, Legend, LegendContainer, LegendProvider, LegendSection, LegendSectionContainer, LegendSymbol, LegendValue, LegendValueContainer, LineMiterKind, LineMiterRender, Map, MapControl, MapControls, MapLegend, MapLegendContainer, MapLegendHeader,
|
|
5382
|
+
export { ArrowLineMiterRender, BaseMeasureToolCreator, BaseMeasureToolEditor, CRS_MAP, CardAttributes, CardHeader, CircleLineMiterRender, ClassificationCondition, ClassificationManager, ClusterLayer, CompoundIcon, DEFAULT_CRS, DEFAULT_SRID, DEFAULT_SYMBOL_SIZE, DraggableMarker, EvergisCard, EvergisCardAttribute, AttributeContainer as EvergisCardAttributeContainer, AttributeTitle as EvergisCardAttributeTitle, AttributeValueContainer as EvergisCardAttributeValueContainer, CardControls as EvergisCardCardControls, CardTitle as EvergisCardCardTitle, CloseIcon as EvergisCardCloseIcon, EvergisCardContainer, CurrentFeatureIndex as EvergisCardCurrentFeatureIndex, FeatureName as EvergisCardFeatureName, LayerName as EvergisCardLayerName, NextIcon as EvergisCardNextIcon, CardPagination as EvergisCardPagination, PaginationDescription as EvergisCardPaginationDescription, PrevIcon as EvergisCardPrevIcon, SimpleAttribute as EvergisCardSimpleValue, StickyHeader as EvergisCardStickyHeader, ValueLink as EvergisCardValueLink, ZoomIcon as EvergisCardZoomIcon, EvergisDynamicLayer, EvergisFeature, EvergisLayer, EvergisProvider, EvergisSelect, EvergisSelectLayer, EvergisSelectProvider, EvergisStyle, EvergisTileLayer, FeatureLayer, Fullscreen, LabelSymbol, Legend, LegendContainer, LegendProvider, LegendSection, LegendSectionContainer, LegendSymbol, LegendValue, LegendValueContainer, LineMiterKind, LineMiterRender, Map, MapControl, MapControls, MapLegend, MapLegendContainer, MapLegendHeader, MapLegendSymbol, MapProvider, Measure, MeasureTool, Measurer, NO_CONTENT_VALUE, Noop, PREVIEW_LIMITS, SGisBrushFill, SGisImageFill, SGisPolygonSymbol, SGisPolylineSymbol, SOLID_INTERVALS, SVGPoly, ScaleRuler, ScaleRulerBlock, ScaleRulerContainer, Search, SelectedPointSymbol, SelectedPolySymbol, ShadowedPointSymbol, ShadowedPolySymbol, SquareLineMiterRender, SrId, StyleSymbol, Symbol, TextContainer, TileLayer, Tooltip, TooltipComponent, TooltipProvider, Zoom, ZoomLevel, adjustSymbol, applyParameterValue, clamp, copyRings, createCompositeSymbol, createLabelSymbol, createStyleLegend, createValueTitle, defaultOffset, defineStrokeStylePreset, deserializeSymbol, evaluateFeature, extractStyle, extractSymbol, findChildFeatureStyle, findChildFeatureSymbol, formatArea, formatAttributeValue, formatLength, formatPolygonMeasure, getAttributeNameFromClassified, getAttributeNameFromCondition, getChildSymbols, getCrs, getDashStylePreset, getFeatureSymbol, getLegendSymbolRenders, getLineDash, getLineMiterRender, getMapLegendSymbolRenders, getMapState, getParameterValue, getScale, getSymbolRenders, isArrowLineMiter, isCalculatedParameter, isCircleLineMiter, isCompositeSymbol, isDashedBrush, isFilledLineMitter, isHatchBrush, isImageSymbol, isLabelSymbol, isMaskedImageSymbol, isMiterExist, isParameterByAttribute, isParameterValueSimple, isParameterValueSymbol, isPatternBrush, isPointLabelSymbol, isPointSymbol, isPolygonHasHatchBrush, isPolygonHasPatternBrush, isPolygonLabelSymbol, isPolygonSymbol, isPolylineLabelSymbol, isPolylineLikePolygon, isPolylineSymbol, isPolylineSymbols, isRangeClass, isRasterSymbol, isSGisH3Symbol, isSGisImageSymbol, isSGisPointSymbol, isSGisPolygonSymbol, isSGisPolylineSymbol, isScalablePolylineSymbol, isSimpleOffset, isSimplePolylineSymbol, isSimpleSymbol, isSizableSymbol, isSolidBrush, isSquareLineMiter, isSquareSymbol, isStaticImageSymbol, isStringParameterValue, isStrokeStyledSymbol, isStyle, isSymbolWithOffset, isTwoDimensionalSymbol, isUniqueClass, measureAreaSymbol, measureLengthSymbol, measurePolygonSnapSymbol, metersToPixels, numberWithSpaces, packStyle, polygonCircleFromPoint, printRangeClass, renderSymbolToCanvas, selectedPoint, selectedPolygon, selectedPolyline, setDefaultParameterValue, setParameterValue, shouldUpdateMapState, solidStrokeStylePreset, strokeStylePresets, symbolParameterWalker, symbolTypeGuard, toIntervals, toLineDash, unClassify, updateMapResolution, useCanvas, useClusterLayer, useCrs, useDebouncedCallback, useDraggableMarker, useEventPoint, useEvergisContext, useEvergisDynamicLayer, useEvergisSelect, useEvergisSelectContext, useEvergisTileLayer, useFeatureLayer, useLayerLegend, useLayerOrder, useLayerVisibility, useLegend, useLegendContext, useLegendValueSymbol, useMapBboxChange, useMapContext, useMapLegend, useMapLevel, useMapPick, useMapResize, useMapState, useMapView, useMapViewActions, useMapWrapper, useMaxMinScale, useMetersToPixels, useMetersToPixelsCb, useMount, useProperty, useScale, useSymbol, useTooltip, useTooltipContext, useUpdate, useUpdateMapView };
|
|
5359
5383
|
//# sourceMappingURL=react.esm.js.map
|