@hpcc-js/map 2.79.0 → 3.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +888 -31380
- package/dist/index.js.map +7 -1
- package/package.json +41 -40
- package/src/CanvasPinLayer.ts +2 -2
- package/src/CanvasPins.ts +12 -11
- package/src/Choropleth.ts +13 -5
- package/src/ChoroplethContinents.ts +1 -1
- package/src/ChoroplethCounties.ts +9 -7
- package/src/ChoroplethCountries.ts +2 -2
- package/src/ChoroplethStates.ts +1 -2
- package/src/ChoroplethStatesHeat.ts +1 -1
- package/src/GMap.ts +4 -3
- package/src/GMapCounties.ts +2 -2
- package/src/GMapGraph.ts +1 -1
- package/src/GMapHeat.ts +1 -1
- package/src/GMapLayered.ts +2 -2
- package/src/GMapPin.ts +2 -2
- package/src/GMapPinLine.ts +38 -25
- package/src/GeoHash.ts +31 -17
- package/src/Graph.ts +1 -1
- package/src/Graticule.ts +14 -7
- package/src/Heat.ts +13 -8
- package/src/Layer.ts +28 -19
- package/src/Layered.ts +1 -1
- package/src/Lines.ts +6 -3
- package/src/OpenStreet.ts +7 -4
- package/src/Pins.ts +75 -44
- package/src/Projection.ts +1 -1
- package/src/TestHeatMap.ts +1 -1
- package/src/TopoJSONChoropleth.ts +106 -95
- package/src/__package__.ts +2 -2
- package/src/index.ts +29 -30
- package/src/leaflet/AlbersPR.ts +3 -3
- package/src/leaflet/Blank.ts +1 -1
- package/src/leaflet/Circles.ts +2 -2
- package/src/leaflet/ClusterCircles.ts +2 -2
- package/src/leaflet/Countries.ts +2 -2
- package/src/leaflet/DrawLayer.ts +2 -2
- package/src/leaflet/FeatureLayer.ts +3 -3
- package/src/leaflet/GMap.ts +3 -3
- package/src/leaflet/HeatLayer.ts +2 -2
- package/src/leaflet/Icons.ts +2 -2
- package/src/leaflet/Leaflet.ts +10 -9
- package/src/leaflet/MapBox.ts +2 -2
- package/src/leaflet/Markers.ts +2 -2
- package/src/leaflet/OpenStreet.ts +2 -2
- package/src/leaflet/Path.ts +3 -3
- package/src/leaflet/Pins.ts +2 -2
- package/src/leaflet/Polygons.ts +2 -2
- package/src/leaflet/Region.ts +2 -2
- package/src/leaflet/Text.ts +2 -2
- package/src/leaflet/TileLayer.ts +1 -1
- package/src/leaflet/TopoJSON.ts +3 -3
- package/src/leaflet/US.ts +2 -2
- package/src/leaflet/USCounties.ts +2 -2
- package/src/leaflet/USStates.ts +2 -2
- package/src/leaflet/World.ts +8 -7
- package/src/leaflet/index.ts +18 -18
- package/src/leaflet/leaflet-shim.ts +19 -0
- package/src/leaflet/plugins/BeautifyIcon.css +44 -0
- package/src/leaflet/plugins/BeautifyIcon.ts +190 -0
- package/src/leaflet/plugins/BeutifyIcon.licence +21 -0
- package/src/leaflet/plugins/D3SvgOverlay.css +3 -0
- package/src/leaflet/plugins/D3SvgOverlay.licence +21 -0
- package/src/leaflet/plugins/D3SvgOverlay.ts +175 -0
- package/src/leaflet/plugins/HeatLayer.license +22 -0
- package/src/leaflet/plugins/HeatLayer.ts +224 -0
- package/src/leaflet/plugins/Leaflet.GoogleMutant.ts +425 -0
- package/src/leaflet/plugins/lru_map.ts +352 -0
- package/types/CanvasPinLayer.d.ts +1 -2
- package/types/CanvasPins.d.ts +10 -12
- package/types/Choropleth.d.ts +6 -6
- package/types/ChoroplethContinents.d.ts +1 -2
- package/types/ChoroplethCounties.d.ts +6 -8
- package/types/ChoroplethCountries.d.ts +1 -3
- package/types/ChoroplethStates.d.ts +1 -3
- package/types/ChoroplethStatesHeat.d.ts +1 -2
- package/types/GMap.d.ts +3 -4
- package/types/GMapCounties.d.ts +2 -3
- package/types/GMapGraph.d.ts +1 -2
- package/types/GMapHeat.d.ts +1 -2
- package/types/GMapLayered.d.ts +1 -2
- package/types/GMapPin.d.ts +1 -2
- package/types/GMapPinLine.d.ts +35 -56
- package/types/GeoHash.d.ts +23 -34
- package/types/Graph.d.ts +1 -2
- package/types/Graticule.d.ts +12 -17
- package/types/Heat.d.ts +12 -17
- package/types/IChoropleth.d.ts +0 -1
- package/types/Layer.d.ts +26 -40
- package/types/Layered.d.ts +0 -1
- package/types/Lines.d.ts +5 -6
- package/types/OpenStreet.d.ts +6 -7
- package/types/Pins.d.ts +64 -103
- package/types/Projection.d.ts +0 -1
- package/types/TopoJSONChoropleth.d.ts +15 -4
- package/types/Utility.d.ts +0 -1
- package/types/__package__.d.ts +2 -3
- package/types/index.d.ts +29 -31
- package/types/leaflet/AlbersPR.d.ts +2 -3
- package/types/leaflet/Blank.d.ts +1 -2
- package/types/leaflet/Circles.d.ts +2 -3
- package/types/leaflet/ClusterCircles.d.ts +2 -3
- package/types/leaflet/Countries.d.ts +1 -2
- package/types/leaflet/DrawLayer.d.ts +2 -3
- package/types/leaflet/FeatureLayer.d.ts +3 -4
- package/types/leaflet/GMap.d.ts +2 -3
- package/types/leaflet/HeatLayer.d.ts +2 -3
- package/types/leaflet/Icons.d.ts +2 -3
- package/types/leaflet/Leaflet.d.ts +9 -9
- package/types/leaflet/MapBox.d.ts +2 -3
- package/types/leaflet/Markers.d.ts +2 -3
- package/types/leaflet/OpenStreet.d.ts +2 -3
- package/types/leaflet/Path.d.ts +2 -3
- package/types/leaflet/Pins.d.ts +2 -3
- package/types/leaflet/Polygons.d.ts +2 -3
- package/types/leaflet/Region.d.ts +1 -2
- package/types/leaflet/Text.d.ts +2 -3
- package/types/leaflet/TileLayer.d.ts +1 -2
- package/types/leaflet/TopoJSON.d.ts +2 -3
- package/types/leaflet/US.d.ts +2 -3
- package/types/leaflet/USCounties.d.ts +1 -2
- package/types/leaflet/USStates.d.ts +1 -2
- package/types/leaflet/World.d.ts +5 -8
- package/types/leaflet/index.d.ts +18 -19
- package/types/leaflet/leaflet-shim.d.ts +14 -0
- package/types/leaflet/plugins/BeautifyIcon.d.ts +2 -0
- package/types/leaflet/plugins/D3SvgOverlay.d.ts +36 -0
- package/types/leaflet/plugins/HeatLayer.d.ts +23 -0
- package/types/leaflet/plugins/Leaflet.GoogleMutant.d.ts +1 -0
- package/types/leaflet/plugins/lru_map.d.ts +33 -0
- package/TopoJSON/AT.json +0 -1
- package/TopoJSON/BE.json +0 -1
- package/TopoJSON/BG.json +0 -1
- package/TopoJSON/BR.json +0 -123
- package/TopoJSON/CHLI.json +0 -1
- package/TopoJSON/CY.json +0 -1
- package/TopoJSON/CZ.json +0 -1
- package/TopoJSON/DE.json +0 -1
- package/TopoJSON/DK.json +0 -1
- package/TopoJSON/EE.json +0 -1
- package/TopoJSON/ES.json +0 -1
- package/TopoJSON/FI.json +0 -1
- package/TopoJSON/FR.json +0 -1
- package/TopoJSON/GB.json +0 -1
- package/TopoJSON/GB_idx.json +0 -1
- package/TopoJSON/GE.json +0 -1
- package/TopoJSON/GR.json +0 -1
- package/TopoJSON/HR.json +0 -1
- package/TopoJSON/HU.json +0 -1
- package/TopoJSON/IE.json +0 -1
- package/TopoJSON/IE_idx.json +0 -1
- package/TopoJSON/IS.json +0 -1
- package/TopoJSON/IT.json +0 -1
- package/TopoJSON/KS.json +0 -1
- package/TopoJSON/LT.json +0 -1
- package/TopoJSON/LU.json +0 -1
- package/TopoJSON/LV.json +0 -1
- package/TopoJSON/MD.json +0 -1
- package/TopoJSON/MK.json +0 -1
- package/TopoJSON/MT.json +0 -1
- package/TopoJSON/ND.json +0 -1
- package/TopoJSON/ND_idx.json +0 -1
- package/TopoJSON/NL.json +0 -1
- package/TopoJSON/NO.json +0 -1
- package/TopoJSON/PL.json +0 -1
- package/TopoJSON/PT.json +0 -1
- package/TopoJSON/RO.json +0 -1
- package/TopoJSON/RS.json +0 -1
- package/TopoJSON/SE.json +0 -1
- package/TopoJSON/SI.json +0 -1
- package/TopoJSON/SK.json +0 -1
- package/TopoJSON/UA.json +0 -1
- package/TopoJSON/countries.json +0 -257
- package/TopoJSON/us-counties.json +0 -16550
- package/TopoJSON/us-states.json +0 -458
- package/dist/index.es6.js +0 -31436
- package/dist/index.es6.js.map +0 -1
- package/dist/index.min.js +0 -7
- package/dist/index.min.js.map +0 -1
- package/types/CanvasPinLayer.d.ts.map +0 -1
- package/types/CanvasPins.d.ts.map +0 -1
- package/types/Choropleth.d.ts.map +0 -1
- package/types/ChoroplethContinents.d.ts.map +0 -1
- package/types/ChoroplethCounties.d.ts.map +0 -1
- package/types/ChoroplethCountries.d.ts.map +0 -1
- package/types/ChoroplethStates.d.ts.map +0 -1
- package/types/ChoroplethStatesHeat.d.ts.map +0 -1
- package/types/GMap.d.ts.map +0 -1
- package/types/GMapCounties.d.ts.map +0 -1
- package/types/GMapGraph.d.ts.map +0 -1
- package/types/GMapHeat.d.ts.map +0 -1
- package/types/GMapLayered.d.ts.map +0 -1
- package/types/GMapPin.d.ts.map +0 -1
- package/types/GMapPinLine.d.ts.map +0 -1
- package/types/GeoHash.d.ts.map +0 -1
- package/types/Graph.d.ts.map +0 -1
- package/types/Graticule.d.ts.map +0 -1
- package/types/Heat.d.ts.map +0 -1
- package/types/IChoropleth.d.ts.map +0 -1
- package/types/Layer.d.ts.map +0 -1
- package/types/Layered.d.ts.map +0 -1
- package/types/Lines.d.ts.map +0 -1
- package/types/OpenStreet.d.ts.map +0 -1
- package/types/Pins.d.ts.map +0 -1
- package/types/Projection.d.ts.map +0 -1
- package/types/TestHeatMap.d.ts +0 -5
- package/types/TestHeatMap.d.ts.map +0 -1
- package/types/TopoJSONChoropleth.d.ts.map +0 -1
- package/types/Utility.d.ts.map +0 -1
- package/types/__package__.d.ts.map +0 -1
- package/types/index.d.ts.map +0 -1
- package/types/leaflet/AlbersPR.d.ts.map +0 -1
- package/types/leaflet/Blank.d.ts.map +0 -1
- package/types/leaflet/Circles.d.ts.map +0 -1
- package/types/leaflet/ClusterCircles.d.ts.map +0 -1
- package/types/leaflet/Countries.d.ts.map +0 -1
- package/types/leaflet/DrawLayer.d.ts.map +0 -1
- package/types/leaflet/FeatureLayer.d.ts.map +0 -1
- package/types/leaflet/GMap.d.ts.map +0 -1
- package/types/leaflet/HeatLayer.d.ts.map +0 -1
- package/types/leaflet/Icons.d.ts.map +0 -1
- package/types/leaflet/Leaflet.d.ts.map +0 -1
- package/types/leaflet/MapBox.d.ts.map +0 -1
- package/types/leaflet/Markers.d.ts.map +0 -1
- package/types/leaflet/OpenStreet.d.ts.map +0 -1
- package/types/leaflet/Path.d.ts.map +0 -1
- package/types/leaflet/Pins.d.ts.map +0 -1
- package/types/leaflet/Polygons.d.ts.map +0 -1
- package/types/leaflet/Region.d.ts.map +0 -1
- package/types/leaflet/Text.d.ts.map +0 -1
- package/types/leaflet/TileLayer.d.ts.map +0 -1
- package/types/leaflet/TopoJSON.d.ts.map +0 -1
- package/types/leaflet/US.d.ts.map +0 -1
- package/types/leaflet/USCounties.d.ts.map +0 -1
- package/types/leaflet/USStates.d.ts.map +0 -1
- package/types/leaflet/World.d.ts.map +0 -1
- package/types/leaflet/index.d.ts.map +0 -1
- package/types/test.d.ts +0 -24
- package/types/test.d.ts.map +0 -1
- package/types-3.4/CanvasPinLayer.d.ts +0 -23
- package/types-3.4/CanvasPins.d.ts +0 -72
- package/types-3.4/Choropleth.d.ts +0 -59
- package/types-3.4/ChoroplethContinents.d.ts +0 -6
- package/types-3.4/ChoroplethCounties.d.ts +0 -17
- package/types-3.4/ChoroplethCountries.d.ts +0 -12
- package/types-3.4/ChoroplethStates.d.ts +0 -12
- package/types-3.4/ChoroplethStatesHeat.d.ts +0 -5
- package/types-3.4/GMap.d.ts +0 -137
- package/types-3.4/GMapCounties.d.ts +0 -23
- package/types-3.4/GMapGraph.d.ts +0 -6
- package/types-3.4/GMapHeat.d.ts +0 -6
- package/types-3.4/GMapLayered.d.ts +0 -20
- package/types-3.4/GMapPin.d.ts +0 -33
- package/types-3.4/GMapPinLine.d.ts +0 -72
- package/types-3.4/GeoHash.d.ts +0 -48
- package/types-3.4/Graph.d.ts +0 -14
- package/types-3.4/Graticule.d.ts +0 -30
- package/types-3.4/Heat.d.ts +0 -28
- package/types-3.4/IChoropleth.d.ts +0 -2
- package/types-3.4/Layer.d.ts +0 -58
- package/types-3.4/Layered.d.ts +0 -47
- package/types-3.4/Lines.d.ts +0 -17
- package/types-3.4/OpenStreet.d.ts +0 -22
- package/types-3.4/Pins.d.ts +0 -122
- package/types-3.4/Projection.d.ts +0 -6
- package/types-3.4/TestHeatMap.d.ts +0 -5
- package/types-3.4/TopoJSONChoropleth.d.ts +0 -5
- package/types-3.4/Utility.d.ts +0 -80
- package/types-3.4/__package__.d.ts +0 -4
- package/types-3.4/index.d.ts +0 -32
- package/types-3.4/leaflet/AlbersPR.d.ts +0 -16
- package/types-3.4/leaflet/Blank.d.ts +0 -5
- package/types-3.4/leaflet/Circles.d.ts +0 -56
- package/types-3.4/leaflet/ClusterCircles.d.ts +0 -30
- package/types-3.4/leaflet/Countries.d.ts +0 -7
- package/types-3.4/leaflet/DrawLayer.d.ts +0 -40
- package/types-3.4/leaflet/FeatureLayer.d.ts +0 -40
- package/types-3.4/leaflet/GMap.d.ts +0 -14
- package/types-3.4/leaflet/HeatLayer.d.ts +0 -32
- package/types-3.4/leaflet/Icons.d.ts +0 -26
- package/types-3.4/leaflet/Leaflet.d.ts +0 -53
- package/types-3.4/leaflet/MapBox.d.ts +0 -9
- package/types-3.4/leaflet/Markers.d.ts +0 -38
- package/types-3.4/leaflet/OpenStreet.d.ts +0 -9
- package/types-3.4/leaflet/Path.d.ts +0 -43
- package/types-3.4/leaflet/Pins.d.ts +0 -32
- package/types-3.4/leaflet/Polygons.d.ts +0 -36
- package/types-3.4/leaflet/Region.d.ts +0 -15
- package/types-3.4/leaflet/Text.d.ts +0 -41
- package/types-3.4/leaflet/TileLayer.d.ts +0 -33
- package/types-3.4/leaflet/TopoJSON.d.ts +0 -14
- package/types-3.4/leaflet/US.d.ts +0 -7
- package/types-3.4/leaflet/USCounties.d.ts +0 -6
- package/types-3.4/leaflet/USStates.d.ts +0 -6
- package/types-3.4/leaflet/World.d.ts +0 -59
- package/types-3.4/leaflet/index.d.ts +0 -19
- package/types-3.4/test.d.ts +0 -24
package/types/GMapPinLine.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GMapLayered } from "./GMapLayered";
|
|
1
|
+
import { GMapLayered } from "./GMapLayered.ts";
|
|
2
2
|
export declare class GMapPinLine extends GMapLayered {
|
|
3
3
|
_lines: any;
|
|
4
4
|
_pins: any;
|
|
@@ -14,59 +14,38 @@ export declare class GMapPinLine extends GMapLayered {
|
|
|
14
14
|
exit(domNode: any, element: any): void;
|
|
15
15
|
click(row: any, column: any, selected: any): void;
|
|
16
16
|
dblclick(row: any, column: any, selected: any): void;
|
|
17
|
-
autoScale: {
|
|
18
|
-
(): boolean;
|
|
19
|
-
(_: boolean): GMapPinLine;
|
|
20
|
-
};
|
|
21
|
-
fromPinColor: {
|
|
22
|
-
(): string;
|
|
23
|
-
(_: string): GMapPinLine;
|
|
24
|
-
};
|
|
25
|
-
fromPinColor_exists: () => boolean;
|
|
26
|
-
fromLatitudeColumn: {
|
|
27
|
-
(): string;
|
|
28
|
-
(_: string): GMapPinLine;
|
|
29
|
-
};
|
|
30
|
-
fromLatitudeColumn_exists: () => boolean;
|
|
31
|
-
fromLongitudeColumn: {
|
|
32
|
-
(): string;
|
|
33
|
-
(_: string): GMapPinLine;
|
|
34
|
-
};
|
|
35
|
-
fromLongitudeColumn_exists: () => boolean;
|
|
36
|
-
fromColorColumn: {
|
|
37
|
-
(): string;
|
|
38
|
-
(_: string): GMapPinLine;
|
|
39
|
-
};
|
|
40
|
-
fromColorColumn_exists: () => boolean;
|
|
41
|
-
fromTooltipColumn: {
|
|
42
|
-
(): string;
|
|
43
|
-
(_: string): GMapPinLine;
|
|
44
|
-
};
|
|
45
|
-
fromTooltipColumn_exists: () => boolean;
|
|
46
|
-
toPinColor: {
|
|
47
|
-
(): string;
|
|
48
|
-
(_: string): GMapPinLine;
|
|
49
|
-
};
|
|
50
|
-
toPinColor_exists: () => boolean;
|
|
51
|
-
toLatitudeColumn: {
|
|
52
|
-
(): string;
|
|
53
|
-
(_: string): GMapPinLine;
|
|
54
|
-
};
|
|
55
|
-
toLatitudeColumn_exists: () => boolean;
|
|
56
|
-
toLongitudeColumn: {
|
|
57
|
-
(): string;
|
|
58
|
-
(_: string): GMapPinLine;
|
|
59
|
-
};
|
|
60
|
-
toLongitudeColumn_exists: () => boolean;
|
|
61
|
-
toColorColumn: {
|
|
62
|
-
(): string;
|
|
63
|
-
(_: string): GMapPinLine;
|
|
64
|
-
};
|
|
65
|
-
toColorColumn_exists: () => boolean;
|
|
66
|
-
toTooltipColumn: {
|
|
67
|
-
(): string;
|
|
68
|
-
(_: string): GMapPinLine;
|
|
69
|
-
};
|
|
70
|
-
toTooltipColumn_exists: () => boolean;
|
|
71
17
|
}
|
|
72
|
-
|
|
18
|
+
export interface GMapPinLine {
|
|
19
|
+
autoScale(): boolean;
|
|
20
|
+
autoScale(_: boolean): GMapPinLine;
|
|
21
|
+
fromPinColor(): string;
|
|
22
|
+
fromPinColor(_: string): GMapPinLine;
|
|
23
|
+
fromPinColor_exists(): boolean;
|
|
24
|
+
fromLatitudeColumn(): string;
|
|
25
|
+
fromLatitudeColumn(_: string): GMapPinLine;
|
|
26
|
+
fromLatitudeColumn_exists(): boolean;
|
|
27
|
+
fromLongitudeColumn(): string;
|
|
28
|
+
fromLongitudeColumn(_: string): GMapPinLine;
|
|
29
|
+
fromLongitudeColumn_exists(): boolean;
|
|
30
|
+
fromColorColumn(): string;
|
|
31
|
+
fromColorColumn(_: string): GMapPinLine;
|
|
32
|
+
fromColorColumn_exists(): boolean;
|
|
33
|
+
fromTooltipColumn(): string;
|
|
34
|
+
fromTooltipColumn(_: string): GMapPinLine;
|
|
35
|
+
fromTooltipColumn_exists(): boolean;
|
|
36
|
+
toPinColor(): string;
|
|
37
|
+
toPinColor(_: string): GMapPinLine;
|
|
38
|
+
toPinColor_exists(): boolean;
|
|
39
|
+
toLatitudeColumn(): string;
|
|
40
|
+
toLatitudeColumn(_: string): GMapPinLine;
|
|
41
|
+
toLatitudeColumn_exists(): boolean;
|
|
42
|
+
toLongitudeColumn(): string;
|
|
43
|
+
toLongitudeColumn(_: string): GMapPinLine;
|
|
44
|
+
toLongitudeColumn_exists(): boolean;
|
|
45
|
+
toColorColumn(): string;
|
|
46
|
+
toColorColumn(_: string): GMapPinLine;
|
|
47
|
+
toColorColumn_exists(): boolean;
|
|
48
|
+
toTooltipColumn(): string;
|
|
49
|
+
toTooltipColumn(_: string): GMapPinLine;
|
|
50
|
+
toTooltipColumn_exists(): boolean;
|
|
51
|
+
}
|
package/types/GeoHash.d.ts
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
import { Layer } from "./Layer";
|
|
1
|
+
import { Layer } from "./Layer.ts";
|
|
2
2
|
import "../src/GeoHash.css";
|
|
3
3
|
export declare class GeoHash extends Layer {
|
|
4
|
-
_palette: any;
|
|
5
4
|
_dataMinWeight: any;
|
|
6
5
|
_dataMaxWeight: any;
|
|
7
6
|
geohash: any;
|
|
8
7
|
_geoHashTransform: any;
|
|
9
|
-
_selection: any;
|
|
10
8
|
geoHashPaths: any;
|
|
11
9
|
constructor();
|
|
12
10
|
data(_?: any): any;
|
|
@@ -14,35 +12,26 @@ export declare class GeoHash extends Layer {
|
|
|
14
12
|
layerUpdate(base: any): void;
|
|
15
13
|
click(row: any, column: any, selected: any): void;
|
|
16
14
|
dblclick(row: any, column: any, selected: any): void;
|
|
17
|
-
paletteID: {
|
|
18
|
-
(): string;
|
|
19
|
-
(_: string): GeoHash;
|
|
20
|
-
};
|
|
21
|
-
paletteID_exists: () => boolean;
|
|
22
|
-
useClonedPalette: {
|
|
23
|
-
(): boolean;
|
|
24
|
-
(_: boolean): GeoHash;
|
|
25
|
-
};
|
|
26
|
-
useClonedPalette_exists: () => boolean;
|
|
27
|
-
opacity: {
|
|
28
|
-
(): number;
|
|
29
|
-
(_: number): GeoHash;
|
|
30
|
-
};
|
|
31
|
-
opacity_exists: () => boolean;
|
|
32
|
-
meshVisible: {
|
|
33
|
-
(): boolean;
|
|
34
|
-
(_: boolean): GeoHash;
|
|
35
|
-
};
|
|
36
|
-
meshVisible_exists: () => boolean;
|
|
37
|
-
meshColor: {
|
|
38
|
-
(): string;
|
|
39
|
-
(_: string): GeoHash;
|
|
40
|
-
};
|
|
41
|
-
meshColor_exists: () => boolean;
|
|
42
|
-
meshStrokeWidth: {
|
|
43
|
-
(): number;
|
|
44
|
-
(_: number): GeoHash;
|
|
45
|
-
};
|
|
46
|
-
meshStrokeWidth_exists: () => boolean;
|
|
47
15
|
}
|
|
48
|
-
|
|
16
|
+
export interface GeoHash {
|
|
17
|
+
_palette: any;
|
|
18
|
+
_selection: any;
|
|
19
|
+
paletteID(): string;
|
|
20
|
+
paletteID(_: string): this;
|
|
21
|
+
paletteID_exists(): boolean;
|
|
22
|
+
useClonedPalette(): boolean;
|
|
23
|
+
useClonedPalette(_: boolean): this;
|
|
24
|
+
useClonedPalette_exists(): boolean;
|
|
25
|
+
opacity(): number;
|
|
26
|
+
opacity(_: number): this;
|
|
27
|
+
opacity_exists(): boolean;
|
|
28
|
+
meshVisible(): boolean;
|
|
29
|
+
meshVisible(_: boolean): this;
|
|
30
|
+
meshVisible_exists(): boolean;
|
|
31
|
+
meshColor(): string;
|
|
32
|
+
meshColor(_: string): this;
|
|
33
|
+
meshColor_exists(): boolean;
|
|
34
|
+
meshStrokeWidth(): number;
|
|
35
|
+
meshStrokeWidth(_: number): this;
|
|
36
|
+
meshStrokeWidth_exists(): boolean;
|
|
37
|
+
}
|
package/types/Graph.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Pins } from "./Pins";
|
|
1
|
+
import { Pins } from "./Pins.ts";
|
|
2
2
|
import "../src/Graph.css";
|
|
3
3
|
export declare class Graph extends Pins {
|
|
4
4
|
dataEdges: any[];
|
|
@@ -11,4 +11,3 @@ export declare class Graph extends Pins {
|
|
|
11
11
|
layerUpdate(base: any): void;
|
|
12
12
|
layerZoomed(base: any): void;
|
|
13
13
|
}
|
|
14
|
-
//# sourceMappingURL=Graph.d.ts.map
|
package/types/Graticule.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Layer } from "./Layer";
|
|
1
|
+
import { Layer } from "./Layer.ts";
|
|
2
2
|
import "../src/Graticule.css";
|
|
3
3
|
export declare class Graticule extends Layer {
|
|
4
4
|
_dataMap: {};
|
|
@@ -11,20 +11,15 @@ export declare class Graticule extends Layer {
|
|
|
11
11
|
layerEnter(base: any, svgElement: any, domElement: any): void;
|
|
12
12
|
layerUpdate(base: any): void;
|
|
13
13
|
layerExit(base: any): void;
|
|
14
|
-
opacity: {
|
|
15
|
-
(): number;
|
|
16
|
-
(_: number): Graticule;
|
|
17
|
-
};
|
|
18
|
-
opacity_exists: () => boolean;
|
|
19
|
-
meshColor: {
|
|
20
|
-
(): string;
|
|
21
|
-
(_: string): Graticule;
|
|
22
|
-
};
|
|
23
|
-
meshColor_exists: () => boolean;
|
|
24
|
-
meshStrokeWidth: {
|
|
25
|
-
(): number;
|
|
26
|
-
(_: number): Graticule;
|
|
27
|
-
};
|
|
28
|
-
meshStrokeWidth_exists: () => boolean;
|
|
29
14
|
}
|
|
30
|
-
|
|
15
|
+
export interface Graticule {
|
|
16
|
+
opacity(): number;
|
|
17
|
+
opacity(_: number): this;
|
|
18
|
+
opacity_exists(): boolean;
|
|
19
|
+
meshColor(): string;
|
|
20
|
+
meshColor(_: string): this;
|
|
21
|
+
meshColor_exists(): boolean;
|
|
22
|
+
meshStrokeWidth(): number;
|
|
23
|
+
meshStrokeWidth(_: number): this;
|
|
24
|
+
meshStrokeWidth_exists(): boolean;
|
|
25
|
+
}
|
package/types/Heat.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Layer } from "./Layer";
|
|
1
|
+
import { Layer } from "./Layer.ts";
|
|
2
2
|
import "../src/Heat.css";
|
|
3
3
|
export declare class Heat extends Layer {
|
|
4
4
|
_heatTransform: any;
|
|
@@ -9,20 +9,15 @@ export declare class Heat extends Layer {
|
|
|
9
9
|
layerUpdate(base: any): void;
|
|
10
10
|
layerExit(base: any): void;
|
|
11
11
|
layerZoomed(base: any): void;
|
|
12
|
-
latColumn: {
|
|
13
|
-
(): string;
|
|
14
|
-
(_: string): Heat;
|
|
15
|
-
};
|
|
16
|
-
latColumn_exists: () => boolean;
|
|
17
|
-
longColumn: {
|
|
18
|
-
(): string;
|
|
19
|
-
(_: string): Heat;
|
|
20
|
-
};
|
|
21
|
-
longColumn_exists: () => boolean;
|
|
22
|
-
opacity: {
|
|
23
|
-
(): number;
|
|
24
|
-
(_: number): Heat;
|
|
25
|
-
};
|
|
26
|
-
opacity_exists: () => boolean;
|
|
27
12
|
}
|
|
28
|
-
|
|
13
|
+
export interface Heat {
|
|
14
|
+
latColumn(): string;
|
|
15
|
+
latColumn(_: string): this;
|
|
16
|
+
latColumn_exists(): boolean;
|
|
17
|
+
longColumn(): string;
|
|
18
|
+
longColumn(_: string): this;
|
|
19
|
+
longColumn_exists(): boolean;
|
|
20
|
+
opacity(): number;
|
|
21
|
+
opacity(_: number): this;
|
|
22
|
+
opacity_exists(): boolean;
|
|
23
|
+
}
|
package/types/IChoropleth.d.ts
CHANGED
package/types/Layer.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Layered } from "./Layered";
|
|
1
|
+
import { Layered } from "./Layered.ts";
|
|
3
2
|
export declare class Layer extends Layered {
|
|
4
3
|
_svgElement: any;
|
|
5
4
|
_domElement: any;
|
|
@@ -16,43 +15,30 @@ export declare class Layer extends Layered {
|
|
|
16
15
|
layerPreRender(): Promise<void>;
|
|
17
16
|
render(callback?: (w: this) => void): this;
|
|
18
17
|
layerZoomed(base: any): void;
|
|
18
|
+
}
|
|
19
|
+
export interface Layer {
|
|
19
20
|
tooltip: any;
|
|
20
|
-
tooltipHTML
|
|
21
|
-
tooltipFormat
|
|
22
|
-
tooltipStyle:
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
(): string;
|
|
44
|
-
(_: string): ITooltip;
|
|
45
|
-
};
|
|
46
|
-
tooltipValueColor_exists: () => boolean;
|
|
47
|
-
tooltipTick: {
|
|
48
|
-
(): boolean;
|
|
49
|
-
(_: boolean): ITooltip;
|
|
50
|
-
};
|
|
51
|
-
tooltipTick_exists: () => boolean;
|
|
52
|
-
tooltipOffset: {
|
|
53
|
-
(): number;
|
|
54
|
-
(_: number): ITooltip;
|
|
55
|
-
};
|
|
56
|
-
tooltipOffset_exists: () => boolean;
|
|
21
|
+
tooltipHTML(_: any): any;
|
|
22
|
+
tooltipFormat(opts: any): string;
|
|
23
|
+
tooltipStyle(): string;
|
|
24
|
+
tooltipStyle(_: string): Layer;
|
|
25
|
+
tooltipStyle_exists(): boolean;
|
|
26
|
+
tooltipValueFormat(): string;
|
|
27
|
+
tooltipValueFormat(_: string): Layer;
|
|
28
|
+
tooltipValueFormat_exists(): boolean;
|
|
29
|
+
tooltipSeriesColor(): string;
|
|
30
|
+
tooltipSeriesColor(_: string): Layer;
|
|
31
|
+
tooltipSeriesColor_exists(): boolean;
|
|
32
|
+
tooltipLabelColor(): string;
|
|
33
|
+
tooltipLabelColor(_: string): Layer;
|
|
34
|
+
tooltipLabelColor_exists(): boolean;
|
|
35
|
+
tooltipValueColor(): string;
|
|
36
|
+
tooltipValueColor(_: string): Layer;
|
|
37
|
+
tooltipValueColor_exists(): boolean;
|
|
38
|
+
tooltipTick(): boolean;
|
|
39
|
+
tooltipTick(_: boolean): Layer;
|
|
40
|
+
tooltipTick_exists(): boolean;
|
|
41
|
+
tooltipOffset(): number;
|
|
42
|
+
tooltipOffset(_: number): Layer;
|
|
43
|
+
tooltipOffset_exists(): boolean;
|
|
57
44
|
}
|
|
58
|
-
//# sourceMappingURL=Layer.d.ts.map
|
package/types/Layered.d.ts
CHANGED
package/types/Lines.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Layer } from "./Layer";
|
|
1
|
+
import { Layer } from "./Layer.ts";
|
|
2
2
|
import "../src/Lines.css";
|
|
3
3
|
export declare class Lines extends Layer {
|
|
4
4
|
dataEdges: any;
|
|
@@ -9,9 +9,8 @@ export declare class Lines extends Layer {
|
|
|
9
9
|
_edgesPaths: any;
|
|
10
10
|
layerUpdate(base: any): void;
|
|
11
11
|
layerZoomed(base: any): void;
|
|
12
|
-
opacity: {
|
|
13
|
-
(): number;
|
|
14
|
-
(_: number): Lines;
|
|
15
|
-
};
|
|
16
12
|
}
|
|
17
|
-
|
|
13
|
+
export interface Lines {
|
|
14
|
+
opacity(): number;
|
|
15
|
+
opacity(_: number): this;
|
|
16
|
+
}
|
package/types/OpenStreet.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Layer } from "./Layer";
|
|
1
|
+
import { Layer } from "./Layer.ts";
|
|
2
2
|
import "../src/OpenStreet.css";
|
|
3
3
|
export declare class OpenStreet extends Layer {
|
|
4
4
|
static _copyrightText: string;
|
|
@@ -13,10 +13,9 @@ export declare class OpenStreet extends Layer {
|
|
|
13
13
|
layerEnter(base: any, svgElement: any, domElement: any): void;
|
|
14
14
|
layerUpdate(base: any): void;
|
|
15
15
|
layerZoomed(base: any): void;
|
|
16
|
-
tileProvider: {
|
|
17
|
-
(): string;
|
|
18
|
-
(_: string): OpenStreet;
|
|
19
|
-
};
|
|
20
|
-
tileProvider_exists: () => boolean;
|
|
21
16
|
}
|
|
22
|
-
|
|
17
|
+
export interface OpenStreet {
|
|
18
|
+
tileProvider(): string;
|
|
19
|
+
tileProvider(_: string): this;
|
|
20
|
+
tileProvider_exists(): boolean;
|
|
21
|
+
}
|
package/types/Pins.d.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import { Layer } from "./Layer";
|
|
1
|
+
import { Layer } from "./Layer.ts";
|
|
2
2
|
import "../src/Pins.css";
|
|
3
3
|
export declare class Pins extends Layer {
|
|
4
4
|
_geohash: any;
|
|
5
5
|
_pinsTransform: any;
|
|
6
|
-
_selection: any;
|
|
7
6
|
pinsPaths: any;
|
|
8
7
|
constructor();
|
|
9
8
|
pinsData(): any;
|
|
@@ -18,105 +17,67 @@ export declare class Pins extends Layer {
|
|
|
18
17
|
circlePath(): string;
|
|
19
18
|
click(row: any, column: any, selected: any): void;
|
|
20
19
|
dblclick(row: any, column: any, selected: any): void;
|
|
21
|
-
latColumn: {
|
|
22
|
-
(): string;
|
|
23
|
-
(_: string): Pins;
|
|
24
|
-
};
|
|
25
|
-
latColumn_exists: () => boolean;
|
|
26
|
-
longColumn: {
|
|
27
|
-
(): string;
|
|
28
|
-
(_: string): Pins;
|
|
29
|
-
};
|
|
30
|
-
longColumn_exists: () => boolean;
|
|
31
|
-
geohashColumn: {
|
|
32
|
-
(): string;
|
|
33
|
-
(_: string): Pins;
|
|
34
|
-
};
|
|
35
|
-
geohashColumn_exists: () => boolean;
|
|
36
|
-
tooltipColumn: {
|
|
37
|
-
(): string;
|
|
38
|
-
(_: string): Pins;
|
|
39
|
-
};
|
|
40
|
-
tooltipColumn_exists: () => boolean;
|
|
41
|
-
opacity: {
|
|
42
|
-
(): number;
|
|
43
|
-
(_: number): Pins;
|
|
44
|
-
};
|
|
45
|
-
opacity_exists: () => boolean;
|
|
46
|
-
fillColor: {
|
|
47
|
-
(): string;
|
|
48
|
-
(_: string): Pins;
|
|
49
|
-
};
|
|
50
|
-
fillColor_exists: () => boolean;
|
|
51
|
-
omitNullLatLong: {
|
|
52
|
-
(): boolean;
|
|
53
|
-
(_: boolean): Pins;
|
|
54
|
-
};
|
|
55
|
-
omitNullLatLong_exists: () => boolean;
|
|
56
|
-
strokeWidth: {
|
|
57
|
-
(): number;
|
|
58
|
-
(_: number): Pins;
|
|
59
|
-
};
|
|
60
|
-
strokeWidth_exists: () => boolean;
|
|
61
|
-
strokeColor: {
|
|
62
|
-
(): string;
|
|
63
|
-
(_: string): Pins;
|
|
64
|
-
};
|
|
65
|
-
strokeColor_exists: () => boolean;
|
|
66
|
-
fontSize: {
|
|
67
|
-
(): number;
|
|
68
|
-
(_: number): Pins;
|
|
69
|
-
};
|
|
70
|
-
fontSize_exists: () => boolean;
|
|
71
|
-
fontFamily: {
|
|
72
|
-
(): string;
|
|
73
|
-
(_: string): Pins;
|
|
74
|
-
};
|
|
75
|
-
fontFamily_exists: () => boolean;
|
|
76
|
-
fontColor: {
|
|
77
|
-
(): string;
|
|
78
|
-
(_: string): Pins;
|
|
79
|
-
};
|
|
80
|
-
fontColor_exists: () => boolean;
|
|
81
|
-
pinType: {
|
|
82
|
-
(): string;
|
|
83
|
-
(_: string): Pins;
|
|
84
|
-
};
|
|
85
|
-
pinType_exists: () => boolean;
|
|
86
|
-
arrowWidth: {
|
|
87
|
-
(): number;
|
|
88
|
-
(_: number): Pins;
|
|
89
|
-
};
|
|
90
|
-
arrowWidth_exists: () => boolean;
|
|
91
|
-
arrowHeight: {
|
|
92
|
-
(): number;
|
|
93
|
-
(_: number): Pins;
|
|
94
|
-
};
|
|
95
|
-
arrowHeight_exists: () => boolean;
|
|
96
|
-
pinWidth: {
|
|
97
|
-
(): number;
|
|
98
|
-
(_: number): Pins;
|
|
99
|
-
};
|
|
100
|
-
pinWidth_exists: () => boolean;
|
|
101
|
-
pinHeight: {
|
|
102
|
-
(): number;
|
|
103
|
-
(_: number): Pins;
|
|
104
|
-
};
|
|
105
|
-
pinHeight_exists: () => boolean;
|
|
106
|
-
cornerRadius: {
|
|
107
|
-
(): number;
|
|
108
|
-
(_: number): Pins;
|
|
109
|
-
};
|
|
110
|
-
cornerRadius_exists: () => boolean;
|
|
111
|
-
pinRadius: {
|
|
112
|
-
(): number;
|
|
113
|
-
(_: number): Pins;
|
|
114
|
-
};
|
|
115
|
-
pinRadius_exists: () => boolean;
|
|
116
|
-
textBaseline: {
|
|
117
|
-
(): string;
|
|
118
|
-
(_: string): Pins;
|
|
119
|
-
};
|
|
120
|
-
textBaseline_exists: () => boolean;
|
|
121
20
|
}
|
|
122
|
-
|
|
21
|
+
export interface Pins {
|
|
22
|
+
_selection: any;
|
|
23
|
+
latColumn(): string;
|
|
24
|
+
latColumn(_: string): this;
|
|
25
|
+
latColumn_exists(): boolean;
|
|
26
|
+
longColumn(): string;
|
|
27
|
+
longColumn(_: string): this;
|
|
28
|
+
longColumn_exists(): boolean;
|
|
29
|
+
geohashColumn(): string;
|
|
30
|
+
geohashColumn(_: string): this;
|
|
31
|
+
geohashColumn_exists(): boolean;
|
|
32
|
+
tooltipColumn(): string;
|
|
33
|
+
tooltipColumn(_: string): this;
|
|
34
|
+
tooltipColumn_exists(): boolean;
|
|
35
|
+
opacity(): number;
|
|
36
|
+
opacity(_: number): this;
|
|
37
|
+
opacity_exists(): boolean;
|
|
38
|
+
fillColor(): string;
|
|
39
|
+
fillColor(_: string): this;
|
|
40
|
+
fillColor_exists(): boolean;
|
|
41
|
+
omitNullLatLong(): boolean;
|
|
42
|
+
omitNullLatLong(_: boolean): this;
|
|
43
|
+
omitNullLatLong_exists(): boolean;
|
|
44
|
+
strokeWidth(): number;
|
|
45
|
+
strokeWidth(_: number): this;
|
|
46
|
+
strokeWidth_exists(): boolean;
|
|
47
|
+
strokeColor(): string;
|
|
48
|
+
strokeColor(_: string): this;
|
|
49
|
+
strokeColor_exists(): boolean;
|
|
50
|
+
fontSize(): number;
|
|
51
|
+
fontSize(_: number): this;
|
|
52
|
+
fontSize_exists(): boolean;
|
|
53
|
+
fontFamily(): string;
|
|
54
|
+
fontFamily(_: string): this;
|
|
55
|
+
fontFamily_exists(): boolean;
|
|
56
|
+
fontColor(): string;
|
|
57
|
+
fontColor(_: string): this;
|
|
58
|
+
fontColor_exists(): boolean;
|
|
59
|
+
pinType(): string;
|
|
60
|
+
pinType(_: string): this;
|
|
61
|
+
pinType_exists(): boolean;
|
|
62
|
+
arrowWidth(): number;
|
|
63
|
+
arrowWidth(_: number): this;
|
|
64
|
+
arrowWidth_exists(): boolean;
|
|
65
|
+
arrowHeight(): number;
|
|
66
|
+
arrowHeight(_: number): this;
|
|
67
|
+
arrowHeight_exists(): boolean;
|
|
68
|
+
pinWidth(): number;
|
|
69
|
+
pinWidth(_: number): this;
|
|
70
|
+
pinWidth_exists(): boolean;
|
|
71
|
+
pinHeight(): number;
|
|
72
|
+
pinHeight(_: number): this;
|
|
73
|
+
pinHeight_exists(): boolean;
|
|
74
|
+
cornerRadius(): number;
|
|
75
|
+
cornerRadius(_: number): this;
|
|
76
|
+
cornerRadius_exists(): boolean;
|
|
77
|
+
pinRadius(): number;
|
|
78
|
+
pinRadius(_: number): this;
|
|
79
|
+
pinRadius_exists(): boolean;
|
|
80
|
+
textBaseline(): string;
|
|
81
|
+
textBaseline(_: string): this;
|
|
82
|
+
textBaseline_exists(): boolean;
|
|
83
|
+
}
|
package/types/Projection.d.ts
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
export declare
|
|
3
|
-
|
|
1
|
+
import { Choropleth } from "./Choropleth.ts";
|
|
2
|
+
export declare class TopoJSONChoropleth extends Choropleth {
|
|
3
|
+
protected _prevRegion: string;
|
|
4
|
+
protected choroPaths: any;
|
|
5
|
+
protected _choroTopologyIndex: any;
|
|
6
|
+
protected _choroTopologyFeatures: any;
|
|
7
|
+
constructor();
|
|
8
|
+
layerEnter(base: any, svgElement: any, domElement: any): void;
|
|
9
|
+
layerUpdate(base: any): void;
|
|
10
|
+
layerPreRender(): any;
|
|
11
|
+
}
|
|
12
|
+
export interface TopoJSONChoropleth {
|
|
13
|
+
region(): string;
|
|
14
|
+
region(_: string): this;
|
|
15
|
+
region_exists(): boolean;
|
|
4
16
|
}
|
|
5
|
-
//# sourceMappingURL=TopoJSONChoropleth.d.ts.map
|
package/types/Utility.d.ts
CHANGED
package/types/__package__.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
export declare const PKG_NAME = "@hpcc-js/map";
|
|
2
|
-
export declare const PKG_VERSION = "
|
|
3
|
-
export declare const BUILD_VERSION = "2.
|
|
4
|
-
//# sourceMappingURL=__package__.d.ts.map
|
|
2
|
+
export declare const PKG_VERSION = "3.1.1";
|
|
3
|
+
export declare const BUILD_VERSION = "3.2.1";
|
package/types/index.d.ts
CHANGED
|
@@ -1,32 +1,30 @@
|
|
|
1
|
-
export * from "./__package__";
|
|
2
|
-
export * from "./CanvasPinLayer";
|
|
3
|
-
export * from "./CanvasPins";
|
|
4
|
-
export * from "./Choropleth";
|
|
5
|
-
export * from "./ChoroplethContinents";
|
|
6
|
-
export * from "./ChoroplethCounties";
|
|
7
|
-
export * from "./ChoroplethCountries";
|
|
8
|
-
export * from "./ChoroplethStates";
|
|
9
|
-
export * from "./ChoroplethStatesHeat";
|
|
10
|
-
export * from "./GeoHash";
|
|
11
|
-
export * from "./GMap";
|
|
12
|
-
export * from "./GMapCounties";
|
|
13
|
-
export * from "./GMapGraph";
|
|
14
|
-
export * from "./GMapHeat";
|
|
15
|
-
export * from "./GMapLayered";
|
|
16
|
-
export * from "./GMapPin";
|
|
17
|
-
export * from "./GMapPinLine";
|
|
18
|
-
export * from "./Graph";
|
|
19
|
-
export * from "./Graticule";
|
|
20
|
-
export * from "./Heat";
|
|
21
|
-
export * from "./IChoropleth";
|
|
22
|
-
export * from "./Layer";
|
|
23
|
-
export * from "./Layered";
|
|
24
|
-
export * from "./Lines";
|
|
25
|
-
export * from "./OpenStreet";
|
|
26
|
-
export * from "./Pins";
|
|
27
|
-
export * from "./Projection";
|
|
28
|
-
export * from "./
|
|
29
|
-
|
|
30
|
-
import * as Leaflet from "./leaflet/index";
|
|
1
|
+
export * from "./__package__.ts";
|
|
2
|
+
export * from "./CanvasPinLayer.ts";
|
|
3
|
+
export * from "./CanvasPins.ts";
|
|
4
|
+
export * from "./Choropleth.ts";
|
|
5
|
+
export * from "./ChoroplethContinents.ts";
|
|
6
|
+
export * from "./ChoroplethCounties.ts";
|
|
7
|
+
export * from "./ChoroplethCountries.ts";
|
|
8
|
+
export * from "./ChoroplethStates.ts";
|
|
9
|
+
export * from "./ChoroplethStatesHeat.ts";
|
|
10
|
+
export * from "./GeoHash.ts";
|
|
11
|
+
export * from "./GMap.ts";
|
|
12
|
+
export * from "./GMapCounties.ts";
|
|
13
|
+
export * from "./GMapGraph.ts";
|
|
14
|
+
export * from "./GMapHeat.ts";
|
|
15
|
+
export * from "./GMapLayered.ts";
|
|
16
|
+
export * from "./GMapPin.ts";
|
|
17
|
+
export * from "./GMapPinLine.ts";
|
|
18
|
+
export * from "./Graph.ts";
|
|
19
|
+
export * from "./Graticule.ts";
|
|
20
|
+
export * from "./Heat.ts";
|
|
21
|
+
export * from "./IChoropleth.ts";
|
|
22
|
+
export * from "./Layer.ts";
|
|
23
|
+
export * from "./Layered.ts";
|
|
24
|
+
export * from "./Lines.ts";
|
|
25
|
+
export * from "./OpenStreet.ts";
|
|
26
|
+
export * from "./Pins.ts";
|
|
27
|
+
export * from "./Projection.ts";
|
|
28
|
+
export * from "./TopoJSONChoropleth.ts";
|
|
29
|
+
import * as Leaflet from "./leaflet/index.ts";
|
|
31
30
|
export { Leaflet };
|
|
32
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { CRS, LatLng, LatLngBounds, Point, Transformation } from "
|
|
2
|
-
import { TileLayer } from "./TileLayer";
|
|
1
|
+
import { CRS, LatLng, LatLngBounds, Point, Transformation } from "./leaflet-shim.ts";
|
|
2
|
+
import { TileLayer } from "./TileLayer.ts";
|
|
3
3
|
export declare class AlbersLayer extends TileLayer {
|
|
4
4
|
_crs: typeof CRS & {
|
|
5
5
|
projection: {
|
|
@@ -13,4 +13,3 @@ export declare class AlbersLayer extends TileLayer {
|
|
|
13
13
|
hasBounds(): boolean;
|
|
14
14
|
getBounds(): LatLngBounds;
|
|
15
15
|
}
|
|
16
|
-
//# sourceMappingURL=AlbersPR.d.ts.map
|