@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/GMap.d.ts
DELETED
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
import { HTMLWidget } from "@hpcc-js/common";
|
|
2
|
-
import "../src/GMap.css";
|
|
3
|
-
export declare let google: any;
|
|
4
|
-
export declare function requireGoogleMapTimeout(ms: number): void;
|
|
5
|
-
export declare function requireGoogleMap(customGoogle?: any): any;
|
|
6
|
-
export declare class GMap extends HTMLWidget {
|
|
7
|
-
_overlay: any;
|
|
8
|
-
_userShapes: any;
|
|
9
|
-
_worldSurface: any;
|
|
10
|
-
_viewportSurface: any;
|
|
11
|
-
_googleMapNode: any;
|
|
12
|
-
_googleMap: any;
|
|
13
|
-
_googleGeocoder: any;
|
|
14
|
-
_prevCenterLat: any;
|
|
15
|
-
_prevCenterLong: any;
|
|
16
|
-
_googleStreetViewService: any;
|
|
17
|
-
_googleMapPanorama: any;
|
|
18
|
-
_prevZoom: any;
|
|
19
|
-
_prevStreetView: any;
|
|
20
|
-
_circleMap: any;
|
|
21
|
-
_pinMap: any;
|
|
22
|
-
_drawingManager: any;
|
|
23
|
-
_prevCenterAddress: any;
|
|
24
|
-
_userShapeSelection: any;
|
|
25
|
-
constructor();
|
|
26
|
-
data(_?: any): any;
|
|
27
|
-
getMapType(): any;
|
|
28
|
-
getMapOptions(): {
|
|
29
|
-
panControl: boolean;
|
|
30
|
-
zoomControl: boolean;
|
|
31
|
-
fullscreenControl: boolean;
|
|
32
|
-
mapTypeControl: boolean;
|
|
33
|
-
scaleControl: boolean;
|
|
34
|
-
streetViewControl: boolean;
|
|
35
|
-
overviewMapControl: boolean;
|
|
36
|
-
overviewMapControlOptions: {
|
|
37
|
-
opened: boolean;
|
|
38
|
-
};
|
|
39
|
-
styles: object;
|
|
40
|
-
};
|
|
41
|
-
size(_?: any): any;
|
|
42
|
-
enter(domNode: any, element: any): void;
|
|
43
|
-
update(domNode: any, element: any): void;
|
|
44
|
-
render(callback?: any): this;
|
|
45
|
-
streetViewAt(pos: any, radius?: number): void;
|
|
46
|
-
updateCircles(): void;
|
|
47
|
-
updatePins(): void;
|
|
48
|
-
createIcon(pinObj: {
|
|
49
|
-
fillColor: string;
|
|
50
|
-
fillOpacity?: number;
|
|
51
|
-
strokeColor?: string;
|
|
52
|
-
}): {
|
|
53
|
-
path: string;
|
|
54
|
-
fillColor: string;
|
|
55
|
-
fillOpacity: number;
|
|
56
|
-
scale: number;
|
|
57
|
-
strokeColor: string;
|
|
58
|
-
strokeWeight: number;
|
|
59
|
-
};
|
|
60
|
-
createMarker(lat: any, lng: any, pinObj: {
|
|
61
|
-
fillColor: string;
|
|
62
|
-
fillOpacity?: number;
|
|
63
|
-
strokeColor?: string;
|
|
64
|
-
title?: string;
|
|
65
|
-
}): any;
|
|
66
|
-
createCircle(lat: any, lng: any, circleObj: {
|
|
67
|
-
radius?: number;
|
|
68
|
-
fillColor?: string;
|
|
69
|
-
strokeColor?: string;
|
|
70
|
-
}): any;
|
|
71
|
-
zoomTo(selection: any, singleMaxZoom?: any): this;
|
|
72
|
-
zoomToFit(): this;
|
|
73
|
-
drawingOptions(_: any): any;
|
|
74
|
-
userShapeSelection(_: any): any;
|
|
75
|
-
deleteUserShape(_: any): void;
|
|
76
|
-
onDrawingComplete(event: any): void;
|
|
77
|
-
statusError(response: any): void;
|
|
78
|
-
}
|
|
79
|
-
export interface GMap {
|
|
80
|
-
type(): string;
|
|
81
|
-
type(_: string): this;
|
|
82
|
-
type_exists(): boolean;
|
|
83
|
-
centerLat(): number;
|
|
84
|
-
centerLat(_: number): any;
|
|
85
|
-
centerLat_exists(): boolean;
|
|
86
|
-
centerLong(): number;
|
|
87
|
-
centerLong(_: number): this;
|
|
88
|
-
centerLong_exists(): boolean;
|
|
89
|
-
centerAddress(): string;
|
|
90
|
-
centerAddress(_: string): this;
|
|
91
|
-
centerAddress_exists(): boolean;
|
|
92
|
-
zoom(): number;
|
|
93
|
-
zoom(_: number): this;
|
|
94
|
-
zoom_exists(): boolean;
|
|
95
|
-
singleZoomToMaxZoom(): number;
|
|
96
|
-
singleZoomToMaxZoom(_: number): this;
|
|
97
|
-
panControl(): boolean;
|
|
98
|
-
panControl(_: boolean): this;
|
|
99
|
-
panControl_exists(): boolean;
|
|
100
|
-
zoomControl(): boolean;
|
|
101
|
-
zoomControl(_: boolean): this;
|
|
102
|
-
zoomControl_exists(): boolean;
|
|
103
|
-
scaleControl(): boolean;
|
|
104
|
-
scaleControl(_: boolean): this;
|
|
105
|
-
scaleControl_exists(): boolean;
|
|
106
|
-
mapTypeControl(): boolean;
|
|
107
|
-
mapTypeControl(_: boolean): this;
|
|
108
|
-
mapTypeControl_exists(): boolean;
|
|
109
|
-
fullscreenControl(): boolean;
|
|
110
|
-
fullscreenControl(_: boolean): this;
|
|
111
|
-
fullscreenControl_exists(): boolean;
|
|
112
|
-
streetViewControl(): boolean;
|
|
113
|
-
streetViewControl(_: boolean): this;
|
|
114
|
-
streetViewControl_exists(): boolean;
|
|
115
|
-
overviewMapControl(): boolean;
|
|
116
|
-
overviewMapControl(_: boolean): this;
|
|
117
|
-
overviewMapControl_exists(): boolean;
|
|
118
|
-
streetView(): boolean;
|
|
119
|
-
streetView(_: boolean): this;
|
|
120
|
-
streetView_exists(): boolean;
|
|
121
|
-
drawingTools(): boolean;
|
|
122
|
-
drawingTools(_: boolean): this;
|
|
123
|
-
drawingTools_exists(): boolean;
|
|
124
|
-
drawingState(): string;
|
|
125
|
-
drawingState(_: string): this;
|
|
126
|
-
drawingState_exists(): boolean;
|
|
127
|
-
googleMapStyles(): object;
|
|
128
|
-
googleMapStyles(_: object): this;
|
|
129
|
-
googleMapStyles_exists(): boolean;
|
|
130
|
-
useComputedHeading(): boolean;
|
|
131
|
-
useComputedHeading(_: boolean): this;
|
|
132
|
-
showStreetViewMarker(): boolean;
|
|
133
|
-
showStreetViewMarker(_: boolean): this;
|
|
134
|
-
outdoorStreetViewOnly(): boolean;
|
|
135
|
-
outdoorStreetViewOnly(_: boolean): this;
|
|
136
|
-
}
|
|
137
|
-
//# sourceMappingURL=GMap.d.ts.map
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { Widget } from "@hpcc-js/common";
|
|
2
|
-
import { ChoroplethCounties } from "./ChoroplethCounties";
|
|
3
|
-
import { GMapLayered } from "./GMapLayered";
|
|
4
|
-
export declare class GMapCounties extends GMapLayered {
|
|
5
|
-
_counties: ChoroplethCounties;
|
|
6
|
-
_view: any;
|
|
7
|
-
_palette: any;
|
|
8
|
-
_dataMinWeight: any;
|
|
9
|
-
_dataMaxWeight: any;
|
|
10
|
-
constructor();
|
|
11
|
-
enter(domNode: any, element: any): void;
|
|
12
|
-
update(domNode: any, element: any): void;
|
|
13
|
-
private _prevBounds;
|
|
14
|
-
render(callback: (w: Widget) => this): this;
|
|
15
|
-
exit(domNode: any, element: any): void;
|
|
16
|
-
click(row: any, column: any, selected: any): void;
|
|
17
|
-
dblclick(row: any, column: any, selected: any): void;
|
|
18
|
-
}
|
|
19
|
-
export interface GMapCounties {
|
|
20
|
-
autoScale(): boolean;
|
|
21
|
-
autoScale(_: boolean): this;
|
|
22
|
-
}
|
|
23
|
-
//# sourceMappingURL=GMapCounties.d.ts.map
|
package/types-3.4/GMapGraph.d.ts
DELETED
package/types-3.4/GMapHeat.d.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { Widget } from "@hpcc-js/common";
|
|
2
|
-
import { GMap } from "./GMap";
|
|
3
|
-
export declare class GMapLayered extends GMap {
|
|
4
|
-
private layered;
|
|
5
|
-
constructor();
|
|
6
|
-
invert(x: number, y: number): {
|
|
7
|
-
lat: number;
|
|
8
|
-
lng: number;
|
|
9
|
-
} | undefined;
|
|
10
|
-
rproject(x: number, y: number): {
|
|
11
|
-
lat: number;
|
|
12
|
-
lng: number;
|
|
13
|
-
} | undefined;
|
|
14
|
-
updateCircles(): void;
|
|
15
|
-
updatePins(): void;
|
|
16
|
-
layers(): Widget[];
|
|
17
|
-
layers(_: Widget[]): this;
|
|
18
|
-
render(callback?: any): this;
|
|
19
|
-
}
|
|
20
|
-
//# sourceMappingURL=GMapLayered.d.ts.map
|
package/types-3.4/GMapPin.d.ts
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { GMapLayered } from "./GMapLayered";
|
|
2
|
-
export declare class GMapPin extends GMapLayered {
|
|
3
|
-
_pins: any;
|
|
4
|
-
_view: any;
|
|
5
|
-
constructor();
|
|
6
|
-
pinsData(): any;
|
|
7
|
-
enter(domNode: any, element: any): void;
|
|
8
|
-
private _prevChecksum;
|
|
9
|
-
update(domNode: any, element: any): void;
|
|
10
|
-
exit(domNode: any, element: any): void;
|
|
11
|
-
click(row: any, column: any, selected: any): void;
|
|
12
|
-
clickStreetView(row: any, column: any, selected: any): void;
|
|
13
|
-
dblclick(row: any, column: any, selected: any): void;
|
|
14
|
-
}
|
|
15
|
-
export interface GMapPin {
|
|
16
|
-
autoScale(): boolean;
|
|
17
|
-
autoScale(_: boolean): this;
|
|
18
|
-
latitudeColumn(): string;
|
|
19
|
-
latitudeColumn(_: string): this;
|
|
20
|
-
latitudeColumn_exists(): boolean;
|
|
21
|
-
longitudeColumn(): string;
|
|
22
|
-
longitudeColumn(_: string): this;
|
|
23
|
-
longitudeColumn_exists(): boolean;
|
|
24
|
-
colorColumn(): string;
|
|
25
|
-
colorColumn(_: string): this;
|
|
26
|
-
colorColumn_exists(): boolean;
|
|
27
|
-
tooltipColumn(): string;
|
|
28
|
-
tooltipColumn(_: string): this;
|
|
29
|
-
tooltipColumn_exists(): boolean;
|
|
30
|
-
streetViewOnClick(): boolean;
|
|
31
|
-
streetViewOnClick(_: boolean): this;
|
|
32
|
-
}
|
|
33
|
-
//# sourceMappingURL=GMapPin.d.ts.map
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { GMapLayered } from "./GMapLayered";
|
|
2
|
-
export declare class GMapPinLine extends GMapLayered {
|
|
3
|
-
_lines: any;
|
|
4
|
-
_pins: any;
|
|
5
|
-
_fromView: any;
|
|
6
|
-
_toView: any;
|
|
7
|
-
_linesView: any;
|
|
8
|
-
constructor();
|
|
9
|
-
pinsData(): any;
|
|
10
|
-
linesData(): any;
|
|
11
|
-
enter(domNode: any, element: any): void;
|
|
12
|
-
private _prevChecksum;
|
|
13
|
-
update(domNode: any, element: any): void;
|
|
14
|
-
exit(domNode: any, element: any): void;
|
|
15
|
-
click(row: any, column: any, selected: any): void;
|
|
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
|
-
}
|
|
72
|
-
//# sourceMappingURL=GMapPinLine.d.ts.map
|
package/types-3.4/GeoHash.d.ts
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { Layer } from "./Layer";
|
|
2
|
-
import "../src/GeoHash.css";
|
|
3
|
-
export declare class GeoHash extends Layer {
|
|
4
|
-
_palette: any;
|
|
5
|
-
_dataMinWeight: any;
|
|
6
|
-
_dataMaxWeight: any;
|
|
7
|
-
geohash: any;
|
|
8
|
-
_geoHashTransform: any;
|
|
9
|
-
_selection: any;
|
|
10
|
-
geoHashPaths: any;
|
|
11
|
-
constructor();
|
|
12
|
-
data(_?: any): any;
|
|
13
|
-
layerEnter(base: any, svgElement: any, domElement: any): void;
|
|
14
|
-
layerUpdate(base: any): void;
|
|
15
|
-
click(row: any, column: any, selected: any): void;
|
|
16
|
-
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
|
-
}
|
|
48
|
-
//# sourceMappingURL=GeoHash.d.ts.map
|
package/types-3.4/Graph.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Pins } from "./Pins";
|
|
2
|
-
import "../src/Graph.css";
|
|
3
|
-
export declare class Graph extends Pins {
|
|
4
|
-
dataEdges: any[];
|
|
5
|
-
_edgesTransform: any;
|
|
6
|
-
constructor();
|
|
7
|
-
importJSON(_: any): any;
|
|
8
|
-
data(_: any): any;
|
|
9
|
-
layerEnter(base: any, svgElement: any, domElement: any): void;
|
|
10
|
-
_edgesPaths: any;
|
|
11
|
-
layerUpdate(base: any): void;
|
|
12
|
-
layerZoomed(base: any): void;
|
|
13
|
-
}
|
|
14
|
-
//# sourceMappingURL=Graph.d.ts.map
|
package/types-3.4/Graticule.d.ts
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { Layer } from "./Layer";
|
|
2
|
-
import "../src/Graticule.css";
|
|
3
|
-
export declare class Graticule extends Layer {
|
|
4
|
-
_dataMap: {};
|
|
5
|
-
_path: any;
|
|
6
|
-
_graticule: any;
|
|
7
|
-
_graticulePath: any;
|
|
8
|
-
_graticuleOutlinePath: any;
|
|
9
|
-
_prevProjection: any;
|
|
10
|
-
constructor();
|
|
11
|
-
layerEnter(base: any, svgElement: any, domElement: any): void;
|
|
12
|
-
layerUpdate(base: any): void;
|
|
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
|
-
}
|
|
30
|
-
//# sourceMappingURL=Graticule.d.ts.map
|
package/types-3.4/Heat.d.ts
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { Layer } from "./Layer";
|
|
2
|
-
import "../src/Heat.css";
|
|
3
|
-
export declare class Heat extends Layer {
|
|
4
|
-
_heatTransform: any;
|
|
5
|
-
heat: any;
|
|
6
|
-
_prevProjection: any;
|
|
7
|
-
constructor();
|
|
8
|
-
layerEnter(base: any, svgElement: any, domElement: any): void;
|
|
9
|
-
layerUpdate(base: any): void;
|
|
10
|
-
layerExit(base: any): void;
|
|
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
|
-
}
|
|
28
|
-
//# sourceMappingURL=Heat.d.ts.map
|
package/types-3.4/Layer.d.ts
DELETED
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { ITooltip } from "@hpcc-js/api";
|
|
2
|
-
import { Layered } from "./Layered";
|
|
3
|
-
export declare class Layer extends Layered {
|
|
4
|
-
_svgElement: any;
|
|
5
|
-
_domElement: any;
|
|
6
|
-
_topoJsonPromise: any;
|
|
7
|
-
constructor();
|
|
8
|
-
svgGlowID(): string;
|
|
9
|
-
layerEnter(base: any, svgElement: any, domElement: any): void;
|
|
10
|
-
enter(domNode: any, element: any): void;
|
|
11
|
-
layerUpdate(base: any, forcePath?: any): void;
|
|
12
|
-
update(domNode: any, element: any): void;
|
|
13
|
-
onZoomed(): void;
|
|
14
|
-
layerExit(base: any): void;
|
|
15
|
-
exit(domNode: any, element: any): void;
|
|
16
|
-
layerPreRender(): Promise<void>;
|
|
17
|
-
render(callback?: (w: this) => void): this;
|
|
18
|
-
layerZoomed(base: any): void;
|
|
19
|
-
tooltip: any;
|
|
20
|
-
tooltipHTML: (_: any) => any;
|
|
21
|
-
tooltipFormat: (opts: any) => string;
|
|
22
|
-
tooltipStyle: {
|
|
23
|
-
(): string;
|
|
24
|
-
(_: string): ITooltip;
|
|
25
|
-
};
|
|
26
|
-
tooltipStyle_exists: () => boolean;
|
|
27
|
-
tooltipValueFormat: {
|
|
28
|
-
(): string;
|
|
29
|
-
(_: string): ITooltip;
|
|
30
|
-
};
|
|
31
|
-
tooltipValueFormat_exists: () => boolean;
|
|
32
|
-
tooltipSeriesColor: {
|
|
33
|
-
(): string;
|
|
34
|
-
(_: string): ITooltip;
|
|
35
|
-
};
|
|
36
|
-
tooltipSeriesColor_exists: () => boolean;
|
|
37
|
-
tooltipLabelColor: {
|
|
38
|
-
(): string;
|
|
39
|
-
(_: string): ITooltip;
|
|
40
|
-
};
|
|
41
|
-
tooltipLabelColor_exists: () => boolean;
|
|
42
|
-
tooltipValueColor: {
|
|
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;
|
|
57
|
-
}
|
|
58
|
-
//# sourceMappingURL=Layer.d.ts.map
|
package/types-3.4/Layered.d.ts
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import { SVGZoomWidget } from "@hpcc-js/common";
|
|
2
|
-
import "./Utility";
|
|
3
|
-
import "../src/Layered.css";
|
|
4
|
-
export declare class Layered extends SVGZoomWidget {
|
|
5
|
-
_autoScaleOnNextRender: any;
|
|
6
|
-
_layersTarget: any;
|
|
7
|
-
_prevAutoScaleMode: any;
|
|
8
|
-
_d3GeoProjection: any;
|
|
9
|
-
constructor();
|
|
10
|
-
data(_?: any): any;
|
|
11
|
-
enter(domNode: any, element: any): void;
|
|
12
|
-
update(domNode: any, element: any): void;
|
|
13
|
-
exit(domNode: any, element: any): void;
|
|
14
|
-
onZoomed(): void;
|
|
15
|
-
preRender(callback?: any): Promise<any[]>;
|
|
16
|
-
render(callback?: any): this;
|
|
17
|
-
project(lat: any, long: any): any;
|
|
18
|
-
invert(x: any, y: any): any;
|
|
19
|
-
getBounds(): {
|
|
20
|
-
x: any;
|
|
21
|
-
y: any;
|
|
22
|
-
width: any;
|
|
23
|
-
height: any;
|
|
24
|
-
};
|
|
25
|
-
autoScale(): void;
|
|
26
|
-
}
|
|
27
|
-
export interface Layered {
|
|
28
|
-
projection(): string;
|
|
29
|
-
projection(_: string): this;
|
|
30
|
-
projection_exists(): boolean;
|
|
31
|
-
centerLat(): number;
|
|
32
|
-
centerLat(_: number): this;
|
|
33
|
-
centerLat_exists(): boolean;
|
|
34
|
-
centerLong(): number;
|
|
35
|
-
centerLong(_: number): this;
|
|
36
|
-
centerLong_exists(): boolean;
|
|
37
|
-
zoom(): number;
|
|
38
|
-
zoom(_: number): this;
|
|
39
|
-
zoom_exists(): boolean;
|
|
40
|
-
autoScaleMode(): string;
|
|
41
|
-
autoScaleMode(_: string): this;
|
|
42
|
-
autoScaleMode_exists(): boolean;
|
|
43
|
-
layers(): any[];
|
|
44
|
-
layers(_: any[]): this;
|
|
45
|
-
layers_exists(): boolean;
|
|
46
|
-
}
|
|
47
|
-
//# sourceMappingURL=Layered.d.ts.map
|
package/types-3.4/Lines.d.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Layer } from "./Layer";
|
|
2
|
-
import "../src/Lines.css";
|
|
3
|
-
export declare class Lines extends Layer {
|
|
4
|
-
dataEdges: any;
|
|
5
|
-
_edgesTransform: any;
|
|
6
|
-
constructor();
|
|
7
|
-
data(_: any): any;
|
|
8
|
-
layerEnter(base: any, svgElement: any, domElement: any): void;
|
|
9
|
-
_edgesPaths: any;
|
|
10
|
-
layerUpdate(base: any): void;
|
|
11
|
-
layerZoomed(base: any): void;
|
|
12
|
-
opacity: {
|
|
13
|
-
(): number;
|
|
14
|
-
(_: number): Lines;
|
|
15
|
-
};
|
|
16
|
-
}
|
|
17
|
-
//# sourceMappingURL=Lines.d.ts.map
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { Layer } from "./Layer";
|
|
2
|
-
import "../src/OpenStreet.css";
|
|
3
|
-
export declare class OpenStreet extends Layer {
|
|
4
|
-
static _copyrightText: string;
|
|
5
|
-
_tile: any;
|
|
6
|
-
_openStreet: any;
|
|
7
|
-
_copyright: any;
|
|
8
|
-
_copyrightBBox: any;
|
|
9
|
-
_prevTileProvider: any;
|
|
10
|
-
_zoomLayerID: number;
|
|
11
|
-
_prevZoomLevel: any;
|
|
12
|
-
constructor();
|
|
13
|
-
layerEnter(base: any, svgElement: any, domElement: any): void;
|
|
14
|
-
layerUpdate(base: any): void;
|
|
15
|
-
layerZoomed(base: any): void;
|
|
16
|
-
tileProvider: {
|
|
17
|
-
(): string;
|
|
18
|
-
(_: string): OpenStreet;
|
|
19
|
-
};
|
|
20
|
-
tileProvider_exists: () => boolean;
|
|
21
|
-
}
|
|
22
|
-
//# sourceMappingURL=OpenStreet.d.ts.map
|