@hpcc-js/map 2.79.0 → 3.1.0
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-3.4/Pins.d.ts
DELETED
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
import { Layer } from "./Layer";
|
|
2
|
-
import "../src/Pins.css";
|
|
3
|
-
export declare class Pins extends Layer {
|
|
4
|
-
_geohash: any;
|
|
5
|
-
_pinsTransform: any;
|
|
6
|
-
_selection: any;
|
|
7
|
-
pinsPaths: any;
|
|
8
|
-
constructor();
|
|
9
|
-
pinsData(): any;
|
|
10
|
-
layerEnter(base: any, svgElement: any, domElement: any): void;
|
|
11
|
-
layerUpdate(base: any): void;
|
|
12
|
-
layerZoomed(base: any): void;
|
|
13
|
-
pinTextDY(): number;
|
|
14
|
-
svgPinPath(): string;
|
|
15
|
-
rectanglePinPath(): string;
|
|
16
|
-
rectanglePath(): string;
|
|
17
|
-
circlePinPath(): string;
|
|
18
|
-
circlePath(): string;
|
|
19
|
-
click(row: any, column: any, selected: any): void;
|
|
20
|
-
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
|
-
}
|
|
122
|
-
//# sourceMappingURL=Pins.d.ts.map
|
package/types-3.4/Utility.d.ts
DELETED
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
export declare class Geohash {
|
|
2
|
-
private static base32;
|
|
3
|
-
/**
|
|
4
|
-
* Encodes latitude/longitude to geohash, either to specified precision or to automatically
|
|
5
|
-
* evaluated precision.
|
|
6
|
-
*
|
|
7
|
-
* @param {number} lat - Latitude in degrees.
|
|
8
|
-
* @param {number} lon - Longitude in degrees.
|
|
9
|
-
* @param {number} [precision] - Number of characters in resulting geohash.
|
|
10
|
-
* @returns {string} Geohash of supplied latitude/longitude.
|
|
11
|
-
* @throws Invalid geohash.
|
|
12
|
-
*
|
|
13
|
-
* @example
|
|
14
|
-
* var geohash = Geohash.encode(52.205, 0.119, 7); // geohash: "u120fxw"
|
|
15
|
-
*/
|
|
16
|
-
encode(lat: any, lon: any, precision: any): any;
|
|
17
|
-
/**
|
|
18
|
-
* Decode geohash to latitude/longitude (location is approximate centre of geohash cell,
|
|
19
|
-
* to reasonable precision).
|
|
20
|
-
*
|
|
21
|
-
* @param {string} geohash - Geohash string to be converted to latitude/longitude.
|
|
22
|
-
* @returns {{lat:number, lon:number}} (Center of) geohashed location.
|
|
23
|
-
* @throws Invalid geohash.
|
|
24
|
-
*
|
|
25
|
-
* @example
|
|
26
|
-
* var latlon = Geohash.decode("u120fxw"); // latlon: { lat: 52.205, lon: 0.1188 }
|
|
27
|
-
*/
|
|
28
|
-
decode(geohash: any): {
|
|
29
|
-
lat: number;
|
|
30
|
-
lon: number;
|
|
31
|
-
};
|
|
32
|
-
/**
|
|
33
|
-
* Returns SW/NE latitude/longitude bounds of specified geohash.
|
|
34
|
-
*
|
|
35
|
-
* @param {string} geohash - Cell that bounds are required of.
|
|
36
|
-
* @returns {{sw: {lat: number, lon: number}, ne: {lat: number, lon: number}}}
|
|
37
|
-
* @throws Invalid geohash.
|
|
38
|
-
*/
|
|
39
|
-
bounds(geohash: any): {
|
|
40
|
-
sw: {
|
|
41
|
-
lat: number;
|
|
42
|
-
lon: number;
|
|
43
|
-
};
|
|
44
|
-
ne: {
|
|
45
|
-
lat: number;
|
|
46
|
-
lon: number;
|
|
47
|
-
};
|
|
48
|
-
};
|
|
49
|
-
/**
|
|
50
|
-
* Determines adjacent cell in given direction.
|
|
51
|
-
*
|
|
52
|
-
* @param geohash - Cell to which adjacent cell is required.
|
|
53
|
-
* @param direction - Direction from geohash (N/S/E/W).
|
|
54
|
-
* @returns {string} Geocode of adjacent cell.
|
|
55
|
-
* @throws Invalid geohash.
|
|
56
|
-
*/
|
|
57
|
-
adjacent(geohash: any, direction: any): string;
|
|
58
|
-
/**
|
|
59
|
-
* Returns all 8 adjacent cells to specified geohash.
|
|
60
|
-
*
|
|
61
|
-
* @param {string} geohash - Geohash neighbours are required of.
|
|
62
|
-
* @returns {{n,ne,e,se,s,sw,w,nw: string}}
|
|
63
|
-
* @throws Invalid geohash.
|
|
64
|
-
*/
|
|
65
|
-
neighbours(geohash: any): {
|
|
66
|
-
n: string;
|
|
67
|
-
ne: string;
|
|
68
|
-
e: string;
|
|
69
|
-
se: string;
|
|
70
|
-
s: string;
|
|
71
|
-
sw: string;
|
|
72
|
-
w: string;
|
|
73
|
-
nw: string;
|
|
74
|
-
};
|
|
75
|
-
contained(w: any, n: any, e: any, s: any, precision: any): any[];
|
|
76
|
-
calculateWidthDegrees(n: any): number;
|
|
77
|
-
width(n: any): number;
|
|
78
|
-
}
|
|
79
|
-
export declare function albersUsaPr(): any;
|
|
80
|
-
//# sourceMappingURL=Utility.d.ts.map
|
package/types-3.4/index.d.ts
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
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 "./TestHeatMap";
|
|
29
|
-
export * from "./TopoJSONChoropleth";
|
|
30
|
-
import * as Leaflet from "./leaflet/index";
|
|
31
|
-
export { Leaflet };
|
|
32
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { CRS, LatLng, LatLngBounds, Point, Transformation } from "@hpcc-js/leaflet-shim";
|
|
2
|
-
import { TileLayer } from "./TileLayer";
|
|
3
|
-
export declare class AlbersLayer extends TileLayer {
|
|
4
|
-
_crs: typeof CRS & {
|
|
5
|
-
projection: {
|
|
6
|
-
project(latLng: any): Point;
|
|
7
|
-
unproject(point: any): LatLng;
|
|
8
|
-
};
|
|
9
|
-
transformation: Transformation;
|
|
10
|
-
infinite: boolean;
|
|
11
|
-
};
|
|
12
|
-
constructor();
|
|
13
|
-
hasBounds(): boolean;
|
|
14
|
-
getBounds(): LatLngBounds;
|
|
15
|
-
}
|
|
16
|
-
//# sourceMappingURL=AlbersPR.d.ts.map
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import { Map } from "@hpcc-js/leaflet-shim";
|
|
2
|
-
import { ClusterLayer, D3SurfaceLayer } from "./FeatureLayer";
|
|
3
|
-
export declare class Circles extends ClusterLayer {
|
|
4
|
-
hasBounds(): boolean;
|
|
5
|
-
layerUpdate(map: Map): void;
|
|
6
|
-
clickHandler(e: any, row: any): void;
|
|
7
|
-
}
|
|
8
|
-
export interface Circles {
|
|
9
|
-
latitudeColumn(): string;
|
|
10
|
-
latitudeColumn(_: string): any;
|
|
11
|
-
longitudeColumn(): string;
|
|
12
|
-
longitudeColumn(_: string): any;
|
|
13
|
-
radius(): number;
|
|
14
|
-
radius(_: number): any;
|
|
15
|
-
strokeColor(): string;
|
|
16
|
-
strokeColor(_: string): any;
|
|
17
|
-
strokeColorColumn(): string;
|
|
18
|
-
strokeColorColumn(_: string): any;
|
|
19
|
-
strokColorColumn_exists(): boolean;
|
|
20
|
-
fillColor(): string;
|
|
21
|
-
fillColor(_: string): any;
|
|
22
|
-
fillColorColumn(): string;
|
|
23
|
-
fillColorColumn(_: string): any;
|
|
24
|
-
fillColorColumn_exists(): boolean;
|
|
25
|
-
fillOpacity(): number;
|
|
26
|
-
fillOpacity(_: number): any;
|
|
27
|
-
omitNullLatLong(): boolean;
|
|
28
|
-
omitNullLatLong(_: boolean): any;
|
|
29
|
-
}
|
|
30
|
-
export declare class D3Circles extends D3SurfaceLayer {
|
|
31
|
-
layerUpdate(map: Map, projection?: any): void;
|
|
32
|
-
clickHandler(e: any, row: any): void;
|
|
33
|
-
}
|
|
34
|
-
export interface D3Circles {
|
|
35
|
-
latitudeColumn(): string;
|
|
36
|
-
latitudeColumn(_: string): any;
|
|
37
|
-
longitudeColumn(): string;
|
|
38
|
-
longitudeColumn(_: string): any;
|
|
39
|
-
radius(): number;
|
|
40
|
-
radius(_: number): any;
|
|
41
|
-
strokeColor(): string;
|
|
42
|
-
strokeColor(_: string): any;
|
|
43
|
-
strokeColorColumn(): string;
|
|
44
|
-
strokeColorColumn(_: string): any;
|
|
45
|
-
strokColorColumn_exists(): boolean;
|
|
46
|
-
fillColor(): string;
|
|
47
|
-
fillColor(_: string): any;
|
|
48
|
-
fillColorColumn(): string;
|
|
49
|
-
fillColorColumn(_: string): any;
|
|
50
|
-
fillColorColumn_exists(): boolean;
|
|
51
|
-
fillOpacity(): number;
|
|
52
|
-
fillOpacity(_: number): any;
|
|
53
|
-
omitNullLatLong(): boolean;
|
|
54
|
-
omitNullLatLong(_: boolean): any;
|
|
55
|
-
}
|
|
56
|
-
//# sourceMappingURL=Circles.d.ts.map
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { DivIcon, Map } from "@hpcc-js/leaflet-shim";
|
|
2
|
-
import { FeatureLayer } from "./FeatureLayer";
|
|
3
|
-
import "../../src/leaflet/ClusterCircles.css";
|
|
4
|
-
export declare class ClusterCircles extends FeatureLayer {
|
|
5
|
-
_palette: any;
|
|
6
|
-
protected createIcon(childCount: number, backColor: string, format: (_: any) => any): DivIcon;
|
|
7
|
-
layerUpdate(map: Map): void;
|
|
8
|
-
clickHandler(e: any, row: any): void;
|
|
9
|
-
}
|
|
10
|
-
export interface ClusterCircles {
|
|
11
|
-
paletteID(): string;
|
|
12
|
-
paletteID(_: string): this;
|
|
13
|
-
paletteID_exists(): boolean;
|
|
14
|
-
useClonedPalette(): boolean;
|
|
15
|
-
useClonedPalette(_: boolean): this;
|
|
16
|
-
useClonedPalette_exists(): boolean;
|
|
17
|
-
latitudeColumn(): string;
|
|
18
|
-
latitudeColumn(_: string): this;
|
|
19
|
-
longitudeColumn(): string;
|
|
20
|
-
longitudeColumn(_: string): this;
|
|
21
|
-
weightColumn(): string;
|
|
22
|
-
weightColumn(_: string): this;
|
|
23
|
-
weightFormat(): string;
|
|
24
|
-
weightFormat(_: string): this;
|
|
25
|
-
opacity(): number;
|
|
26
|
-
opacity(_: number): this;
|
|
27
|
-
opacity_default(_: number): this;
|
|
28
|
-
opacity_exists(): boolean;
|
|
29
|
-
}
|
|
30
|
-
//# sourceMappingURL=ClusterCircles.d.ts.map
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { Circle, Control, LatLng, LatLngBounds, LatLngExpression, Map, Polygon, Polyline, Rectangle } from "@hpcc-js/leaflet-shim";
|
|
2
|
-
import { FeatureLayer } from "./FeatureLayer";
|
|
3
|
-
export interface DrawState {
|
|
4
|
-
polylines: LatLngExpression[][];
|
|
5
|
-
polygons: Array<LatLng[] | LatLng[][] | LatLng[][][]>;
|
|
6
|
-
rectangles: LatLngBounds[];
|
|
7
|
-
circles: Array<{
|
|
8
|
-
center: LatLng;
|
|
9
|
-
radius: number;
|
|
10
|
-
}>;
|
|
11
|
-
}
|
|
12
|
-
export declare class DrawLayer extends FeatureLayer {
|
|
13
|
-
protected _polylines: Polyline[];
|
|
14
|
-
protected _polygons: Polygon[];
|
|
15
|
-
protected _rectangles: Rectangle[];
|
|
16
|
-
protected _circles: Circle[];
|
|
17
|
-
private _drawControl;
|
|
18
|
-
hasBounds(): boolean;
|
|
19
|
-
drawOptions(): Control.DrawOptions;
|
|
20
|
-
save(): DrawState;
|
|
21
|
-
restore(_: DrawState): void;
|
|
22
|
-
private _drawOptionsHash;
|
|
23
|
-
layerEnter(map: Map): void;
|
|
24
|
-
layerUpdate(map: Map): void;
|
|
25
|
-
layerExit(map: Map): void;
|
|
26
|
-
changed(type: "ADD" | "UPDATE" | "DELETE", items: any): void;
|
|
27
|
-
}
|
|
28
|
-
export interface DrawLayer {
|
|
29
|
-
opacity(): number;
|
|
30
|
-
opacity(_: number): this;
|
|
31
|
-
enablePolyline(): boolean;
|
|
32
|
-
enablePolyline(_: boolean): this;
|
|
33
|
-
enablePolygon(): boolean;
|
|
34
|
-
enablePolygon(_: boolean): this;
|
|
35
|
-
enableRectangle(): boolean;
|
|
36
|
-
enableRectangle(_: boolean): this;
|
|
37
|
-
enableCircle(): boolean;
|
|
38
|
-
enableCircle(_: boolean): this;
|
|
39
|
-
}
|
|
40
|
-
//# sourceMappingURL=DrawLayer.d.ts.map
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { HTMLWidget, Utility } from "@hpcc-js/common";
|
|
2
|
-
import { D3SvgOverlay, FeatureGroup, LatLngBounds, LeafletEvent, Map, MarkerClusterGroup } from "@hpcc-js/leaflet-shim";
|
|
3
|
-
import { Leaflet } from "./Leaflet";
|
|
4
|
-
import { ILayer } from "./TileLayer";
|
|
5
|
-
export declare class FeatureLayer extends Leaflet implements ILayer {
|
|
6
|
-
protected _layer: FeatureGroup | MarkerClusterGroup;
|
|
7
|
-
protected _selection: Utility.SimpleSelection;
|
|
8
|
-
constructor(cluster?: boolean);
|
|
9
|
-
owner(_: HTMLWidget): void;
|
|
10
|
-
valid(): boolean;
|
|
11
|
-
clear(): void;
|
|
12
|
-
add(layer: any): void;
|
|
13
|
-
maxZoom(): any;
|
|
14
|
-
zoom(): any;
|
|
15
|
-
visibleBounds(): any;
|
|
16
|
-
protected _initPromise: any;
|
|
17
|
-
init(): Promise<void>;
|
|
18
|
-
hasBounds(): boolean;
|
|
19
|
-
getBounds(): LatLngBounds;
|
|
20
|
-
style(id: string, _?: number | string | boolean): this | number | string | boolean;
|
|
21
|
-
protected propValue(colIdx: any, row: any, defaultValue: any): any;
|
|
22
|
-
layerEnter(map: Map): void;
|
|
23
|
-
layerUpdate(map: Map): void;
|
|
24
|
-
layerExit(map: Map): void;
|
|
25
|
-
zoomEnd(e: LeafletEvent): void;
|
|
26
|
-
moveEnd(e: LeafletEvent): void;
|
|
27
|
-
viewReset(e: LeafletEvent): void;
|
|
28
|
-
}
|
|
29
|
-
export declare class ClusterLayer extends FeatureLayer {
|
|
30
|
-
constructor(cluster?: boolean);
|
|
31
|
-
}
|
|
32
|
-
export declare class D3SurfaceLayer extends FeatureLayer {
|
|
33
|
-
protected _lfd3: D3SvgOverlay;
|
|
34
|
-
hasBounds(): boolean;
|
|
35
|
-
getBounds(): LatLngBounds;
|
|
36
|
-
layerEnter(map: Map): void;
|
|
37
|
-
layerUpdate(map: Map, projection?: any): void;
|
|
38
|
-
clickHandler(e: any, row: any): void;
|
|
39
|
-
}
|
|
40
|
-
//# sourceMappingURL=FeatureLayer.d.ts.map
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Map } from "@hpcc-js/leaflet-shim";
|
|
2
|
-
import { TileLayer } from "./TileLayer";
|
|
3
|
-
export declare class GMapLayer extends TileLayer {
|
|
4
|
-
constructor();
|
|
5
|
-
init(): Promise<void>;
|
|
6
|
-
attribution(): string;
|
|
7
|
-
getMaxZoom(): number;
|
|
8
|
-
layerEnter(map: Map): void;
|
|
9
|
-
}
|
|
10
|
-
export interface GMapLayer {
|
|
11
|
-
googleMapStyles(): object;
|
|
12
|
-
googleMapStyles(_: object): this;
|
|
13
|
-
}
|
|
14
|
-
//# sourceMappingURL=GMap.d.ts.map
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { Map } from "@hpcc-js/leaflet-shim";
|
|
2
|
-
import { FeatureLayer } from "./FeatureLayer";
|
|
3
|
-
export declare class HeatLayer extends FeatureLayer {
|
|
4
|
-
hasBounds(): boolean;
|
|
5
|
-
layerUpdate(map: Map): void;
|
|
6
|
-
}
|
|
7
|
-
export interface HeatLayer {
|
|
8
|
-
latitudeColumn(): string;
|
|
9
|
-
latitudeColumn(_: string): any;
|
|
10
|
-
latitudeColumn_exists(): boolean;
|
|
11
|
-
longitudeColumn(): string;
|
|
12
|
-
longitudeColumn(_: string): any;
|
|
13
|
-
longitudeColumn_exists(): boolean;
|
|
14
|
-
weightColumn(): string;
|
|
15
|
-
weightColumn(_: string): any;
|
|
16
|
-
weightColumn_exists(): boolean;
|
|
17
|
-
omitNullLatLong(): boolean;
|
|
18
|
-
omitNullLatLong(_: boolean): any;
|
|
19
|
-
opacity(): number;
|
|
20
|
-
opacity(_: number): any;
|
|
21
|
-
minOpacity(): number;
|
|
22
|
-
minOpacity(_: number): any;
|
|
23
|
-
max(): number;
|
|
24
|
-
max(_: number): any;
|
|
25
|
-
radius(): number;
|
|
26
|
-
radius(_: number): any;
|
|
27
|
-
blur(): number;
|
|
28
|
-
blur(_: number): any;
|
|
29
|
-
gradient(): object;
|
|
30
|
-
gradient(_: object): any;
|
|
31
|
-
}
|
|
32
|
-
//# sourceMappingURL=HeatLayer.d.ts.map
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { Map } from "@hpcc-js/leaflet-shim";
|
|
2
|
-
import { Markers } from "./Markers";
|
|
3
|
-
export declare class Icons extends Markers {
|
|
4
|
-
constructor(cluster?: boolean);
|
|
5
|
-
layerUpdate(map: Map): void;
|
|
6
|
-
}
|
|
7
|
-
export interface Icons {
|
|
8
|
-
iconUrl(): string;
|
|
9
|
-
iconUrl(_: string): any;
|
|
10
|
-
iconUrl_exists(): boolean;
|
|
11
|
-
iconUrlColumn(): string;
|
|
12
|
-
iconUrlColumn(_: string): any;
|
|
13
|
-
iconUrlColumn_exists(): boolean;
|
|
14
|
-
iconWidth(): number;
|
|
15
|
-
iconWidth(_: number): any;
|
|
16
|
-
iconHeight(): number;
|
|
17
|
-
iconHeight(_: number): any;
|
|
18
|
-
iconAnchorX(): number;
|
|
19
|
-
iconAnchorX(_: number): any;
|
|
20
|
-
iconAnchorY(): number;
|
|
21
|
-
iconAnchorY(_: number): any;
|
|
22
|
-
}
|
|
23
|
-
export declare class ClusterIcons extends Icons {
|
|
24
|
-
constructor();
|
|
25
|
-
}
|
|
26
|
-
//# sourceMappingURL=Icons.d.ts.map
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
import { HTMLWidget, IconBar, publish, Widget } from "@hpcc-js/common";
|
|
2
|
-
import { AlbersLayer } from "./AlbersPR";
|
|
3
|
-
import { BlankLayer } from "./Blank";
|
|
4
|
-
import { GMapLayer } from "./GMap";
|
|
5
|
-
import { MapBoxLayer } from "./MapBox";
|
|
6
|
-
import { OpenStreetLayer } from "./OpenStreet";
|
|
7
|
-
import { ILayer, TileLayer } from "./TileLayer";
|
|
8
|
-
import "../../src/leaflet/Leaflet.css";
|
|
9
|
-
export declare class Leaflet extends HTMLWidget {
|
|
10
|
-
protected _leafletElement: any;
|
|
11
|
-
private _leafletMap;
|
|
12
|
-
protected _iconBar: IconBar;
|
|
13
|
-
_blankLayer: BlankLayer;
|
|
14
|
-
_albersLayer: AlbersLayer;
|
|
15
|
-
_mapBoxLayer: MapBoxLayer;
|
|
16
|
-
_openStreetLayer: OpenStreetLayer;
|
|
17
|
-
_gmapLayer: GMapLayer;
|
|
18
|
-
constructor();
|
|
19
|
-
zoom(): number;
|
|
20
|
-
zoomPlus(): void;
|
|
21
|
-
zoomMinus(): void;
|
|
22
|
-
zoomToDefault(): void;
|
|
23
|
-
zoomToFit(): void;
|
|
24
|
-
syncLayers(sLayers: ILayer[], domNode: any, element: any): void;
|
|
25
|
-
protected _owner: HTMLWidget;
|
|
26
|
-
isLayer(): boolean;
|
|
27
|
-
baseLayer(): BlankLayer | AlbersLayer | MapBoxLayer | OpenStreetLayer | GMapLayer;
|
|
28
|
-
enter(domNode: any, element: any): void;
|
|
29
|
-
private _prevCRS;
|
|
30
|
-
update(domNode: any, element: any): void;
|
|
31
|
-
exit(domNode: any, element: any): void;
|
|
32
|
-
render(callback?: (w: Widget) => void): this;
|
|
33
|
-
}
|
|
34
|
-
export interface Leaflet {
|
|
35
|
-
showToolbar(): boolean;
|
|
36
|
-
showToolbar(_: boolean): this;
|
|
37
|
-
mapType(): "None" | "AlbersPR" | "MapBox" | "OpenStreet" | "Google";
|
|
38
|
-
mapType(_: "None" | "AlbersPR" | "MapBox" | "OpenStreet" | "Google"): this;
|
|
39
|
-
mapType_default(_: "None" | "AlbersPR" | "MapBox" | "OpenStreet" | "Google"): this;
|
|
40
|
-
map(): TileLayer;
|
|
41
|
-
map(_: TileLayer): this;
|
|
42
|
-
layers(): ILayer[];
|
|
43
|
-
layers(_: ILayer[]): this;
|
|
44
|
-
layers_default(_: ILayer[]): this;
|
|
45
|
-
defaultLat(): number;
|
|
46
|
-
defaultLat(_: number): this;
|
|
47
|
-
defaultLong(): number;
|
|
48
|
-
defaultLong(_: number): this;
|
|
49
|
-
defaultZoom(): number;
|
|
50
|
-
defaultZoom(_: number): this;
|
|
51
|
-
autoZoomToFit: publish<this, boolean>;
|
|
52
|
-
}
|
|
53
|
-
//# sourceMappingURL=Leaflet.d.ts.map
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Map } from "@hpcc-js/leaflet-shim";
|
|
2
|
-
import { TileLayer } from "./TileLayer";
|
|
3
|
-
export declare class MapBoxLayer extends TileLayer {
|
|
4
|
-
constructor();
|
|
5
|
-
attribution(): string;
|
|
6
|
-
getMaxZoom(): number;
|
|
7
|
-
layerEnter(map: Map): void;
|
|
8
|
-
}
|
|
9
|
-
//# sourceMappingURL=MapBox.d.ts.map
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { Map, Direction } from "@hpcc-js/leaflet-shim";
|
|
2
|
-
import { ClusterLayer } from "./FeatureLayer";
|
|
3
|
-
export declare class Markers extends ClusterLayer {
|
|
4
|
-
constructor(cluster?: boolean);
|
|
5
|
-
hasBounds(): boolean;
|
|
6
|
-
tooltipText(row: object, tooltip: string): string;
|
|
7
|
-
popupText(row: object, popup: string): string;
|
|
8
|
-
private _hashSum;
|
|
9
|
-
layerUpdate(map: Map, markerOptions?: (row: any) => object): void;
|
|
10
|
-
_currSelRow: any;
|
|
11
|
-
clickHandler(e: any, marker: any, row: any): void;
|
|
12
|
-
click(row: any, col: any, sel: any): void;
|
|
13
|
-
}
|
|
14
|
-
export interface Markers {
|
|
15
|
-
latitudeColumn(): string;
|
|
16
|
-
latitudeColumn(_: string): any;
|
|
17
|
-
longitudeColumn(): string;
|
|
18
|
-
longitudeColumn(_: string): any;
|
|
19
|
-
omitNullLatLong(): boolean;
|
|
20
|
-
omitNullLatLong(_: boolean): any;
|
|
21
|
-
tooltipColumn(): string;
|
|
22
|
-
tooltipColumn(_: string): any;
|
|
23
|
-
tooltipColumn_exists(): boolean;
|
|
24
|
-
tooltipDirection(): Direction;
|
|
25
|
-
tooltipDirection(_: Direction): any;
|
|
26
|
-
tooltipOffsetX(): number;
|
|
27
|
-
tooltipOffsetX(_: number): any;
|
|
28
|
-
tooltipOffsetY(): number;
|
|
29
|
-
tooltipOffsetY(_: number): any;
|
|
30
|
-
popupColumn(): string;
|
|
31
|
-
popupColumn(_: string): any;
|
|
32
|
-
popupColumn_exists(): boolean;
|
|
33
|
-
popupOffsetX(): number;
|
|
34
|
-
popupOffsetX(_: number): any;
|
|
35
|
-
popupOffsetY(): number;
|
|
36
|
-
popupOffsetY(_: number): any;
|
|
37
|
-
}
|
|
38
|
-
//# sourceMappingURL=Markers.d.ts.map
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Map } from "@hpcc-js/leaflet-shim";
|
|
2
|
-
import { TileLayer } from "./TileLayer";
|
|
3
|
-
export declare class OpenStreetLayer extends TileLayer {
|
|
4
|
-
constructor();
|
|
5
|
-
attribution(): string;
|
|
6
|
-
getMaxZoom(): number;
|
|
7
|
-
layerEnter(map: Map): void;
|
|
8
|
-
}
|
|
9
|
-
//# sourceMappingURL=OpenStreet.d.ts.map
|