@evergis/react 2.0.220 → 2.0.222
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/react.cjs.development.js +113 -85
- 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 -86
- package/dist/react.esm.js.map +1 -1
- package/dist/symbols/Selected/SelectedPointSymbol.d.ts +4 -3
- package/dist/symbols/Selected/SelectedPolySymbol.d.ts +3 -3
- package/dist/symbols/Shadowed/ShadowedPointSymbol.d.ts +6 -6
- package/dist/symbols/Shadowed/ShadowedPolySymbol.d.ts +9 -4
- package/dist/symbols/Shadowed/getEditorPointRenderer.d.ts +2 -2
- package/package.json +5 -5
package/dist/react.esm.js
CHANGED
|
@@ -20,6 +20,7 @@ import { DynamicPointSymbol, Symbol as Symbol$1 } from '@evergis/sgis/es/symbols
|
|
|
20
20
|
import { Poly } from '@evergis/sgis/es/features/Poly';
|
|
21
21
|
import { PointSymbol } from '@evergis/sgis/es/symbols/point/Point';
|
|
22
22
|
import { PointFeature } from '@evergis/sgis/es/features/PointFeature';
|
|
23
|
+
import { Arc } from '@evergis/sgis/es/renders/Arc';
|
|
23
24
|
import { DynamicRender } from '@evergis/sgis/es/renders/Render';
|
|
24
25
|
import { SvgRender } from '@evergis/sgis/es/painters/DomPainter/SvgRender';
|
|
25
26
|
import { MouseEventFlags, mouseEvents } from '@evergis/sgis/es/EventHandler';
|
|
@@ -1649,44 +1650,6 @@ const createLabelSymbol = props => {
|
|
|
1649
1650
|
});
|
|
1650
1651
|
};
|
|
1651
1652
|
|
|
1652
|
-
function createShadowRender(position, _ref) {
|
|
1653
|
-
let {
|
|
1654
|
-
strokeWidth = 2,
|
|
1655
|
-
shadowColor,
|
|
1656
|
-
shadowSize,
|
|
1657
|
-
size = 6
|
|
1658
|
-
} = _ref;
|
|
1659
|
-
const shadowDiameter = size + strokeWidth + shadowSize;
|
|
1660
|
-
return new PolyRender(polygonCircleFromPoint(position, shadowDiameter), {
|
|
1661
|
-
fillColor: 'transparent',
|
|
1662
|
-
strokeColor: shadowColor,
|
|
1663
|
-
strokeWidth: shadowSize,
|
|
1664
|
-
enclosed: true
|
|
1665
|
-
});
|
|
1666
|
-
}
|
|
1667
|
-
function getEditorPointRenderer(position, _ref2) {
|
|
1668
|
-
let {
|
|
1669
|
-
strokeColor,
|
|
1670
|
-
strokeWidth,
|
|
1671
|
-
shadowColor,
|
|
1672
|
-
fillColor,
|
|
1673
|
-
shadowSize,
|
|
1674
|
-
size = 0
|
|
1675
|
-
} = _ref2;
|
|
1676
|
-
return [createShadowRender(position, {
|
|
1677
|
-
strokeWidth,
|
|
1678
|
-
strokeColor,
|
|
1679
|
-
shadowSize,
|
|
1680
|
-
shadowColor,
|
|
1681
|
-
size
|
|
1682
|
-
}), new PolyRender(polygonCircleFromPoint(position, size), {
|
|
1683
|
-
fillColor,
|
|
1684
|
-
strokeColor,
|
|
1685
|
-
strokeWidth,
|
|
1686
|
-
enclosed: true
|
|
1687
|
-
})];
|
|
1688
|
-
}
|
|
1689
|
-
|
|
1690
1653
|
let ShadowedPointSymbol = /*#__PURE__*/function (_PointSymbol) {
|
|
1691
1654
|
_inherits(ShadowedPointSymbol, _PointSymbol);
|
|
1692
1655
|
|
|
@@ -1707,64 +1670,101 @@ let ShadowedPointSymbol = /*#__PURE__*/function (_PointSymbol) {
|
|
|
1707
1670
|
position
|
|
1708
1671
|
} = feature.projectTo(crs);
|
|
1709
1672
|
const pxPosition = [position[0] / resolution + (this.offset[0] || 0), -position[1] / resolution + (this.offset[1] || 0)];
|
|
1710
|
-
const shadowRender = this.getShadow(pxPosition, feature);
|
|
1711
|
-
const pointArc = this.getPoint(pxPosition, feature);
|
|
1673
|
+
const shadowRender = this.getShadow(pxPosition, feature, position);
|
|
1674
|
+
const pointArc = this.getPoint(pxPosition, feature, position);
|
|
1712
1675
|
return shadowRender ? [shadowRender, pointArc] : [pointArc];
|
|
1713
1676
|
}
|
|
1714
1677
|
}, {
|
|
1715
1678
|
key: "getShadow",
|
|
1716
|
-
value: function getShadow(position, _feature) {
|
|
1717
|
-
return ShadowedPointSymbol.getShadowArc(position, this);
|
|
1679
|
+
value: function getShadow(position, _feature, mapCoordinates) {
|
|
1680
|
+
return ShadowedPointSymbol.getShadowArc(position, this, mapCoordinates);
|
|
1718
1681
|
}
|
|
1719
1682
|
}, {
|
|
1720
1683
|
key: "getPoint",
|
|
1721
|
-
value: function getPoint(position, _feature) {
|
|
1722
|
-
return ShadowedPointSymbol.getPointArc(position, this);
|
|
1684
|
+
value: function getPoint(position, _feature, mapCoordinates) {
|
|
1685
|
+
return ShadowedPointSymbol.getPointArc(position, this, mapCoordinates);
|
|
1723
1686
|
}
|
|
1724
1687
|
}], [{
|
|
1725
1688
|
key: "getShadowArc",
|
|
1726
|
-
value: function getShadowArc(position, _ref) {
|
|
1689
|
+
value: function getShadowArc(position, _ref, mapCoordinates) {
|
|
1727
1690
|
let {
|
|
1728
1691
|
strokeWidth = 2,
|
|
1729
1692
|
shadowColor,
|
|
1730
1693
|
shadowSize,
|
|
1731
1694
|
size = 6
|
|
1732
1695
|
} = _ref;
|
|
1733
|
-
return new
|
|
1734
|
-
fillColor:
|
|
1696
|
+
return new Arc(position, {
|
|
1697
|
+
fillColor: "transparent",
|
|
1735
1698
|
strokeColor: shadowColor,
|
|
1736
1699
|
strokeWidth: shadowSize,
|
|
1737
|
-
|
|
1700
|
+
radius: (size + strokeWidth + shadowSize) / 2,
|
|
1701
|
+
mapCoordinates
|
|
1738
1702
|
});
|
|
1739
1703
|
}
|
|
1740
1704
|
}, {
|
|
1741
1705
|
key: "getPointArc",
|
|
1742
|
-
value: function getPointArc(position, _ref2) {
|
|
1706
|
+
value: function getPointArc(position, _ref2, mapCoordinates) {
|
|
1743
1707
|
let {
|
|
1744
1708
|
strokeWidth,
|
|
1745
1709
|
fillColor,
|
|
1746
1710
|
strokeColor,
|
|
1747
1711
|
size = 6
|
|
1748
1712
|
} = _ref2;
|
|
1749
|
-
return new
|
|
1713
|
+
return new Arc(position, {
|
|
1750
1714
|
fillColor,
|
|
1751
1715
|
strokeColor,
|
|
1752
1716
|
strokeWidth,
|
|
1753
|
-
|
|
1717
|
+
radius: size / 2,
|
|
1718
|
+
mapCoordinates
|
|
1754
1719
|
});
|
|
1755
1720
|
}
|
|
1756
|
-
}, {
|
|
1757
|
-
key: "getArcs",
|
|
1758
|
-
value: function getArcs(position, params) {
|
|
1759
|
-
const shadowRender = ShadowedPointSymbol.getShadowArc(position, params);
|
|
1760
|
-
const pointRender = ShadowedPointSymbol.getPointArc(position, params);
|
|
1761
|
-
return shadowRender ? [shadowRender, pointRender] : [pointRender];
|
|
1762
|
-
}
|
|
1763
1721
|
}]);
|
|
1764
1722
|
|
|
1765
1723
|
return ShadowedPointSymbol;
|
|
1766
1724
|
}(PointSymbol);
|
|
1767
1725
|
|
|
1726
|
+
const getSimplifiedPolygonCoordinates = function getSimplifiedPolygonCoordinates(feature, crs, tolerance) {
|
|
1727
|
+
if (tolerance === void 0) {
|
|
1728
|
+
tolerance = 1;
|
|
1729
|
+
}
|
|
1730
|
+
|
|
1731
|
+
const projected = feature.crs.equals(crs) ? feature.rings : feature.projectTo(crs).rings;
|
|
1732
|
+
return simplifyCoordinates(projected, tolerance);
|
|
1733
|
+
};
|
|
1734
|
+
function createShadowRender(position, _ref) {
|
|
1735
|
+
let {
|
|
1736
|
+
strokeWidth = 1,
|
|
1737
|
+
shadowColor,
|
|
1738
|
+
shadowSize,
|
|
1739
|
+
size = 3,
|
|
1740
|
+
mapCoordinates
|
|
1741
|
+
} = _ref;
|
|
1742
|
+
const shadowRadius = (size + strokeWidth + shadowSize) / 2;
|
|
1743
|
+
return new Arc(position, {
|
|
1744
|
+
fillColor: "transparent",
|
|
1745
|
+
strokeColor: shadowColor,
|
|
1746
|
+
strokeWidth: shadowSize,
|
|
1747
|
+
radius: shadowRadius,
|
|
1748
|
+
mapCoordinates
|
|
1749
|
+
});
|
|
1750
|
+
}
|
|
1751
|
+
function createPointRender(position, _ref2) {
|
|
1752
|
+
let {
|
|
1753
|
+
strokeColor,
|
|
1754
|
+
strokeWidth,
|
|
1755
|
+
fillColor,
|
|
1756
|
+
size = 3,
|
|
1757
|
+
mapCoordinates
|
|
1758
|
+
} = _ref2;
|
|
1759
|
+
const radius = size / 2;
|
|
1760
|
+
return new Arc(position, {
|
|
1761
|
+
fillColor,
|
|
1762
|
+
strokeColor,
|
|
1763
|
+
strokeWidth,
|
|
1764
|
+
radius,
|
|
1765
|
+
mapCoordinates
|
|
1766
|
+
});
|
|
1767
|
+
}
|
|
1768
1768
|
let ShadowedPolySymbol = /*#__PURE__*/function (_PolylineSymbol) {
|
|
1769
1769
|
_inherits(ShadowedPolySymbol, _PolylineSymbol);
|
|
1770
1770
|
|
|
@@ -1784,9 +1784,10 @@ let ShadowedPolySymbol = /*#__PURE__*/function (_PolylineSymbol) {
|
|
|
1784
1784
|
|
|
1785
1785
|
const coordinates = _get(_getPrototypeOf(ShadowedPolySymbol.prototype), "getRenderedCoordinates", this).call(this, feature, resolution, crs);
|
|
1786
1786
|
|
|
1787
|
-
const
|
|
1788
|
-
const
|
|
1789
|
-
const
|
|
1787
|
+
const simplifiedFeatureCoordinates = getSimplifiedPolygonCoordinates(feature, crs);
|
|
1788
|
+
const polyRender = this.getPolyRender(coordinates, feature, simplifiedFeatureCoordinates);
|
|
1789
|
+
const shadowRender = this.getShadow(coordinates, feature, simplifiedFeatureCoordinates);
|
|
1790
|
+
const vertexRenders = this.getVertexRenders(coordinates, simplifiedFeatureCoordinates);
|
|
1790
1791
|
let renders = [polyRender];
|
|
1791
1792
|
|
|
1792
1793
|
if (shadowRender) {
|
|
@@ -1801,42 +1802,66 @@ let ShadowedPolySymbol = /*#__PURE__*/function (_PolylineSymbol) {
|
|
|
1801
1802
|
}
|
|
1802
1803
|
}, {
|
|
1803
1804
|
key: "getShadow",
|
|
1804
|
-
value: function getShadow(coordinates, _feature) {
|
|
1805
|
+
value: function getShadow(coordinates, _feature, mapCoordinates) {
|
|
1805
1806
|
return new PolyRender(coordinates, {
|
|
1806
1807
|
fillStyle: FillStyle.None,
|
|
1807
1808
|
enclosed: this.enclose,
|
|
1808
1809
|
strokeColor: this.shadowColor,
|
|
1809
1810
|
strokeWidth: this.shadowSize,
|
|
1810
|
-
lineDash: this.lineDash
|
|
1811
|
+
lineDash: this.lineDash,
|
|
1812
|
+
mapCoordinates
|
|
1811
1813
|
});
|
|
1812
1814
|
}
|
|
1813
1815
|
}, {
|
|
1814
1816
|
key: "getPolyRender",
|
|
1815
|
-
value: function getPolyRender(coordinates, _feature) {
|
|
1817
|
+
value: function getPolyRender(coordinates, _feature, mapCoordinates) {
|
|
1816
1818
|
return new PolyRender(coordinates, {
|
|
1817
1819
|
fillStyle: this.enclose ? FillStyle.Color : FillStyle.None,
|
|
1818
1820
|
enclosed: this.enclose,
|
|
1819
1821
|
fillColor: this.fillColor,
|
|
1820
1822
|
strokeColor: this.strokeColor,
|
|
1821
1823
|
strokeWidth: this.strokeWidth,
|
|
1822
|
-
lineDash: this.lineDash
|
|
1824
|
+
lineDash: this.lineDash,
|
|
1825
|
+
mapCoordinates
|
|
1823
1826
|
});
|
|
1824
1827
|
}
|
|
1825
1828
|
}, {
|
|
1826
1829
|
key: "getVertexRenders",
|
|
1827
|
-
value: function getVertexRenders(coordinates) {
|
|
1830
|
+
value: function getVertexRenders(coordinates, mapCoordinates) {
|
|
1828
1831
|
if (!this.showVertex) return;
|
|
1829
|
-
const
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1832
|
+
const pointRenderers = [];
|
|
1833
|
+
const shadowRenderers = [];
|
|
1834
|
+
|
|
1835
|
+
for (let i = 0; i < coordinates.length; i++) {
|
|
1836
|
+
const ring = coordinates[i];
|
|
1837
|
+
|
|
1838
|
+
for (let j = 0; j < ring.length; j++) {
|
|
1839
|
+
const point = ring[j];
|
|
1840
|
+
const featurePoint = mapCoordinates[i][j];
|
|
1841
|
+
const shadowRender = createShadowRender(point, {
|
|
1842
|
+
size: 6,
|
|
1843
|
+
strokeWidth: 2,
|
|
1844
|
+
shadowColor: this.shadowColor,
|
|
1845
|
+
strokeColor: this.strokeColor,
|
|
1846
|
+
shadowSize: this.vertexShadowSize !== undefined ? this.vertexShadowSize : 2,
|
|
1847
|
+
fillColor: 'transparent',
|
|
1848
|
+
mapCoordinates: featurePoint
|
|
1849
|
+
});
|
|
1850
|
+
const pointRender = createPointRender(point, {
|
|
1851
|
+
size: 6,
|
|
1852
|
+
strokeWidth: 2,
|
|
1853
|
+
shadowColor: this.shadowColor,
|
|
1854
|
+
strokeColor: this.strokeColor,
|
|
1855
|
+
shadowSize: this.vertexShadowSize !== undefined ? this.vertexShadowSize : 2,
|
|
1856
|
+
fillColor: '#ffffff',
|
|
1857
|
+
mapCoordinates: featurePoint
|
|
1858
|
+
});
|
|
1859
|
+
shadowRenderers.push(shadowRender);
|
|
1860
|
+
pointRenderers.push(pointRender);
|
|
1861
|
+
}
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
return [...pointRenderers, ...shadowRenderers];
|
|
1840
1865
|
}
|
|
1841
1866
|
}]);
|
|
1842
1867
|
|
|
@@ -1889,15 +1914,15 @@ let SelectedPointSymbol = /*#__PURE__*/function (_ShadowedPointSymbol) {
|
|
|
1889
1914
|
|
|
1890
1915
|
_createClass(SelectedPointSymbol, [{
|
|
1891
1916
|
key: "getShadow",
|
|
1892
|
-
value: function getShadow(position, feature) {
|
|
1917
|
+
value: function getShadow(position, feature, mapCoordinates) {
|
|
1893
1918
|
if (feature.isSelected) {
|
|
1894
|
-
return _get(_getPrototypeOf(SelectedPointSymbol.prototype), "getShadow", this).call(this, position, feature);
|
|
1919
|
+
return _get(_getPrototypeOf(SelectedPointSymbol.prototype), "getShadow", this).call(this, position, feature, mapCoordinates);
|
|
1895
1920
|
}
|
|
1896
1921
|
}
|
|
1897
1922
|
}, {
|
|
1898
1923
|
key: "getPoint",
|
|
1899
|
-
value: function getPoint(position, feature) {
|
|
1900
|
-
const pointRender = _get(_getPrototypeOf(SelectedPointSymbol.prototype), "getPoint", this).call(this, position, feature);
|
|
1924
|
+
value: function getPoint(position, feature, mapCoordinates) {
|
|
1925
|
+
const pointRender = _get(_getPrototypeOf(SelectedPointSymbol.prototype), "getPoint", this).call(this, position, feature, mapCoordinates);
|
|
1901
1926
|
|
|
1902
1927
|
if (feature.isSelected) {
|
|
1903
1928
|
pointRender.strokeColor = this.selectedStrokeColor;
|
|
@@ -1925,15 +1950,15 @@ let SelectedPolySymbol = /*#__PURE__*/function (_ShadowedPolySymbol) {
|
|
|
1925
1950
|
|
|
1926
1951
|
_createClass(SelectedPolySymbol, [{
|
|
1927
1952
|
key: "getShadow",
|
|
1928
|
-
value: function getShadow(coordinates, feature) {
|
|
1953
|
+
value: function getShadow(coordinates, feature, mapCoordinates) {
|
|
1929
1954
|
if (feature.isSelected) {
|
|
1930
|
-
return _get(_getPrototypeOf(SelectedPolySymbol.prototype), "getShadow", this).call(this, coordinates, feature);
|
|
1955
|
+
return _get(_getPrototypeOf(SelectedPolySymbol.prototype), "getShadow", this).call(this, coordinates, feature, mapCoordinates);
|
|
1931
1956
|
}
|
|
1932
1957
|
}
|
|
1933
1958
|
}, {
|
|
1934
1959
|
key: "getPolyRender",
|
|
1935
|
-
value: function getPolyRender(coordinates, feature) {
|
|
1936
|
-
const polyRender = _get(_getPrototypeOf(SelectedPolySymbol.prototype), "getPolyRender", this).call(this, coordinates, feature);
|
|
1960
|
+
value: function getPolyRender(coordinates, feature, mapCoordinates) {
|
|
1961
|
+
const polyRender = _get(_getPrototypeOf(SelectedPolySymbol.prototype), "getPolyRender", this).call(this, coordinates, feature, mapCoordinates);
|
|
1937
1962
|
|
|
1938
1963
|
if (feature.isSelected) {
|
|
1939
1964
|
polyRender.fillColor = this.selectedFillColor;
|
|
@@ -7140,5 +7165,5 @@ const polygonCircleFromPoint = (center, diameter) => {
|
|
|
7140
7165
|
return [coordinates];
|
|
7141
7166
|
};
|
|
7142
7167
|
|
|
7143
|
-
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$1 as 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, MapLegendBadge, 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, classifyParamsReduce, 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$1 as getScale, getServiceConfiguration, getSignFromConditionPart, getSymbolParameterInfo, getSymbolRenders, getSymbolStrokeWidth, getTitleFromCondition, getValueFromConditionPart, isArrowLineMiter, isCalculatedParameter, isCircleLineMiter, isClusterFillColor, isClusterSymbol, isCombinedPolylineSymbol, 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 };
|
|
7168
|
+
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$1 as 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, MapLegendBadge, 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, classifyParamsReduce, convertSvgToBase64, copyRings, createCompositeSymbol, createHiddenCondition, createLabelSymbol, createLegendSymbol, createOtherHiddenCondition, createPointRender, createShadowRender, 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$1 as getScale, getServiceConfiguration, getSignFromConditionPart, getSimplifiedPolygonCoordinates, getSymbolParameterInfo, getSymbolRenders, getSymbolStrokeWidth, getTitleFromCondition, getValueFromConditionPart, isArrowLineMiter, isCalculatedParameter, isCircleLineMiter, isClusterFillColor, isClusterSymbol, isCombinedPolylineSymbol, 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 };
|
|
7144
7169
|
//# sourceMappingURL=react.esm.js.map
|