forked from Raruto/leaflet-elevation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.d.ts
More file actions
512 lines (483 loc) · 13.4 KB
/
index.d.ts
File metadata and controls
512 lines (483 loc) · 13.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
import * as L from "leaflet";
declare module "leaflet" {
namespace control {
/**
* Creates a new elevation control instance
* @param options - Configuration options for the elevation control
*/
function elevation(
options?: L.Control.ElevationOptions
): L.Control.Elevation;
}
namespace Control {
interface ElevationOptions extends L.ControlOptions {
/** Automatically fit map bounds to track extent */
autofitBounds?: boolean;
/** Auto hide chart on mouse leave */
autohide?: boolean;
/** Auto hide marker when chart is not hovered */
autohideMarker?: boolean;
/** Enable "almost over" integration for better mouse tracking */
almostover?: boolean;
/** Display altitude data */
altitude?: boolean | "disabled" | "enabled" | "summary";
/** Show close/toggle button */
closeBtn?: boolean;
/** Start collapsed */
collapsed?: boolean;
/** Detached chart (not as map control) */
detached?: boolean;
/** Display distance data */
distance?: boolean | "disabled" | "enabled" | "summary";
/** Distance markers configuration */
distanceMarkers?:
| boolean
| { lazy?: boolean; distance?: boolean; direction?: boolean };
/** Enable chart dragging/brushing */
dragging?: boolean;
/** Download link type */
downloadLink?: boolean | "link" | "modal";
/** Elevation chart container selector (when detached) */
elevationDiv?: string;
/** Edge scale configuration */
edgeScale?: boolean | { bar?: boolean; icon?: boolean; coords?: boolean };
/** Follow marker on map */
followMarker?: boolean;
/** Use imperial units */
imperial?: boolean;
/** Show chart legend */
legend?: boolean;
/** Data handlers to load */
handlers?: string[];
/** Hotline visualization property */
hotline?: boolean | string;
/** Marker type */
marker?: string;
/** Custom marker icon */
markerIcon?: L.DivIcon;
/** Polyline style options */
polyline?: L.PolylineOptions & { className?: string };
/** Polyline segments style for highlighting */
polylineSegments?: L.PolylineOptions & { className?: string };
/** Prefer canvas renderer */
preferCanvas?: boolean;
/** Reverse coordinate order */
reverseCoords?: boolean;
/** Enable ruler/brush functionality */
ruler?: boolean;
/** Chart theme */
theme?: string;
/** Summary display mode */
summary?: boolean | "inline" | "multiline";
/** Display slope data */
slope?: boolean | "disabled" | "enabled" | "summary";
/** Display speed data */
speed?: boolean | "disabled" | "enabled" | "summary";
/** Display time data */
time?: boolean | "disabled" | "enabled" | "summary";
/** Time factor for calculations */
timeFactor?: number;
/** Show timestamps */
timestamps?: boolean;
/** Track start marker options */
trkStart?: L.CircleMarkerOptions;
/** Track end marker options */
trkEnd?: L.CircleMarkerOptions;
/** Display waypoints */
waypoints?: boolean | "dots" | "markers";
/** Waypoint icon configuration */
wptIcons?: boolean | { [key: string]: L.DivIcon };
/** Show waypoint labels */
wptLabels?: boolean | "dots" | "markers";
/** X-axis attribute */
xAttr?: string;
/** X-axis label */
xLabel?: string;
/** Y-axis attribute */
yAttr?: string;
/** Y-axis label */
yLabel?: string;
/** Zoom level for follow marker */
zFollow?: boolean | number;
/** Enable chart zooming */
zooming?: boolean;
// Advanced options
/** Chart margins */
margins?: {
top?: number;
right?: number;
bottom?: number;
left?: number;
};
/** Chart height */
height?: number;
/** Chart width */
width?: number;
/** Number of X-axis ticks */
xTicks?: number;
/** Number of Y-axis ticks */
yTicks?: number;
/** X-axis decimal places */
decimalsX?: number;
/** Y-axis decimal places */
decimalsY?: number;
/** Force axis bounds */
forceAxisBounds?: boolean;
/** D3 interpolation method */
interpolation?: string;
/** Y-axis maximum value */
yAxisMax?: number;
/** Y-axis minimum value */
yAxisMin?: number;
}
interface ElevationTrackInfo {
/** Track name */
name?: string;
/** Elevation statistics */
elevation_min?: number;
elevation_max?: number;
elevation_avg?: number;
/** Distance statistics */
distance?: number;
/** Time statistics */
time?: number;
/** Slope statistics */
slope_min?: number;
slope_max?: number;
slope_avg?: number;
/** Speed statistics */
speed_min?: number;
speed_max?: number;
speed_avg?: number;
/** Ascent/descent */
ascent?: number;
descent?: number;
[key: string]: any;
}
interface ElevationPoint {
/** Latitude */
x: number;
/** Longitude */
y: number;
/** Elevation */
z: number;
/** Leaflet LatLng object */
latlng: L.LatLng;
/** Distance from start */
dist?: number;
/** Time from start */
time?: number;
/** Slope */
slope?: number;
/** Speed */
speed?: number;
/** Additional metadata */
[key: string]: any;
}
interface ElevationEventData {
/** Event data point */
data?: ElevationPoint;
/** Chart X coordinate */
xCoord?: number;
/** Track layer */
layer?: L.Layer;
/** Track name */
name?: string;
/** Track information */
track_info?: ElevationTrackInfo;
/** Track index */
index?: number;
}
class Elevation extends L.Control {
/** Elevation control options */
options: ElevationOptions;
/** Current elevation data points */
_data: ElevationPoint[];
/** Track information and statistics */
track_info: ElevationTrackInfo;
constructor(options?: ElevationOptions);
/**
* Add elevation data to the control
* @param data - Elevation data (GeoJSON, GPX, KML, TCX)
* @param layer - Optional layer to associate with data
*/
addData(data: any, layer?: L.Layer): void;
/**
* Clear all elevation data and reset the control
*/
clear(): void;
/**
* Load elevation data from URL or object
* @param data - URL string or data object
*/
load(data: string | object): void;
/**
* Hide the elevation chart
*/
hide(): void;
/**
* Show the elevation chart
*/
show(): void;
/**
* Redraw the elevation chart
*/
redraw(): void;
/**
* Enable chart brushing/selection
*/
enableBrush(): void;
/**
* Disable chart brushing/selection
*/
disableBrush(): void;
/**
* Enable chart zooming
*/
enableZoom(): void;
/**
* Disable chart zooming
*/
disableZoom(): void;
/**
* Fit map bounds to elevation track
* @param bounds - Optional bounds to fit to
*/
fitBounds(bounds?: L.LatLngBounds): void;
/**
* Get track bounds
* @param data - Optional data to get bounds from
*/
getBounds(data?: ElevationPoint[]): L.LatLngBounds;
/**
* Get zoom level for follow marker
*/
getZFollow(): boolean | number;
/**
* Set zoom level for follow marker
* @param zoom - Zoom level
*/
setZFollow(zoom: boolean | number): void;
// Events
on(type: "add", fn: (e: L.LeafletEvent) => void, context?: any): this;
on(type: "remove", fn: (e: L.LeafletEvent) => void, context?: any): this;
on(
type: "modules_loaded",
fn: (e: L.LeafletEvent) => void,
context?: any
): this;
on(
type: "eledata_added",
fn: (e: ElevationEventData) => void,
context?: any
): this;
on(
type: "eledata_loaded",
fn: (e: ElevationEventData) => void,
context?: any
): this;
on(
type: "eledata_clear",
fn: (e: L.LeafletEvent) => void,
context?: any
): this;
on(
type: "eledata_updated",
fn: (e: ElevationEventData) => void,
context?: any
): this;
on(
type: "elechart_init",
fn: (e: L.LeafletEvent) => void,
context?: any
): this;
on(
type: "elechart_change",
fn: (e: ElevationEventData) => void,
context?: any
): this;
on(
type: "elechart_hover",
fn: (e: ElevationEventData) => void,
context?: any
): this;
on(
type: "elechart_enter",
fn: (e: L.LeafletEvent) => void,
context?: any
): this;
on(
type: "elechart_leave",
fn: (e: L.LeafletEvent) => void,
context?: any
): this;
on(
type: "elechart_updated",
fn: (e: L.LeafletEvent) => void,
context?: any
): this;
on(
type: "elechart_dragged",
fn: (e: L.LeafletEvent) => void,
context?: any
): this;
on(type: string, fn: (e: any) => void, context?: any): this;
off(type: "add", fn?: (e: L.LeafletEvent) => void, context?: any): this;
off(
type: "remove",
fn?: (e: L.LeafletEvent) => void,
context?: any
): this;
off(
type: "modules_loaded",
fn?: (e: L.LeafletEvent) => void,
context?: any
): this;
off(
type: "eledata_added",
fn?: (e: ElevationEventData) => void,
context?: any
): this;
off(
type: "eledata_loaded",
fn?: (e: ElevationEventData) => void,
context?: any
): this;
off(
type: "eledata_clear",
fn?: (e: L.LeafletEvent) => void,
context?: any
): this;
off(
type: "eledata_updated",
fn?: (e: ElevationEventData) => void,
context?: any
): this;
off(
type: "elechart_init",
fn?: (e: L.LeafletEvent) => void,
context?: any
): this;
off(
type: "elechart_change",
fn?: (e: ElevationEventData) => void,
context?: any
): this;
off(
type: "elechart_hover",
fn?: (e: ElevationEventData) => void,
context?: any
): this;
off(
type: "elechart_enter",
fn?: (e: L.LeafletEvent) => void,
context?: any
): this;
off(
type: "elechart_leave",
fn?: (e: L.LeafletEvent) => void,
context?: any
): this;
off(
type: "elechart_updated",
fn?: (e: L.LeafletEvent) => void,
context?: any
): this;
off(
type: "elechart_dragged",
fn?: (e: L.LeafletEvent) => void,
context?: any
): this;
off(type: string, fn?: (e: any) => void, context?: any): this;
once(type: "add", fn: (e: L.LeafletEvent) => void, context?: any): this;
once(
type: "remove",
fn: (e: L.LeafletEvent) => void,
context?: any
): this;
once(
type: "modules_loaded",
fn: (e: L.LeafletEvent) => void,
context?: any
): this;
once(
type: "eledata_added",
fn: (e: ElevationEventData) => void,
context?: any
): this;
once(
type: "eledata_loaded",
fn: (e: ElevationEventData) => void,
context?: any
): this;
once(
type: "eledata_clear",
fn: (e: L.LeafletEvent) => void,
context?: any
): this;
once(
type: "eledata_updated",
fn: (e: ElevationEventData) => void,
context?: any
): this;
once(
type: "elechart_init",
fn: (e: L.LeafletEvent) => void,
context?: any
): this;
once(
type: "elechart_change",
fn: (e: ElevationEventData) => void,
context?: any
): this;
once(
type: "elechart_hover",
fn: (e: ElevationEventData) => void,
context?: any
): this;
once(
type: "elechart_enter",
fn: (e: L.LeafletEvent) => void,
context?: any
): this;
once(
type: "elechart_leave",
fn: (e: L.LeafletEvent) => void,
context?: any
): this;
once(
type: "elechart_updated",
fn: (e: L.LeafletEvent) => void,
context?: any
): this;
once(
type: "elechart_dragged",
fn: (e: L.LeafletEvent) => void,
context?: any
): this;
once(type: string, fn: (e: any) => void, context?: any): this;
fire(type: string, data?: any, propagate?: boolean): this;
}
}
}
// Global registration functions for internationalization
declare global {
namespace L {
/**
* Register a locale for internationalization
* @param locale - Locale code
* @param translations - Translation object
*/
function registerLocale(
locale: string,
translations: { [key: string]: string }
): void;
/**
* Set the active locale
* @param locale - Locale code
*/
function setLocale(locale: string): void;
}
}
export = L;
export as namespace L;