realmap 1.0.7 → 1.0.9
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/band.d.ts +28 -0
- package/band.js +7 -0
- package/band.mjs +7 -0
- package/chart.d.ts +28 -0
- package/{dist/track.js → chart.js} +2 -2
- package/{dist/track.mjs → chart.mjs} +2 -2
- package/editor.d.ts +6 -0
- package/editor.js +7 -0
- package/editor.mjs +7 -0
- package/{dist/export.js → export.js} +2 -2
- package/{dist/export.mjs → export.mjs} +2 -2
- package/{dist/feature.js → feature.js} +1 -1
- package/{dist/feature.mjs → feature.mjs} +1 -1
- package/{dist/heatmap.js → heatmap.js} +1 -1
- package/{dist/heatmap.mjs → heatmap.mjs} +1 -1
- package/{dist/index.d.ts → index.d.ts} +3299 -3049
- package/index.js +7 -0
- package/index.mjs +7 -0
- package/package.json +59 -35
- package/{dist/styles/realmap-style.css → realmap-style.css} +11 -0
- package/{dist/sankey.js → sankey.js} +1 -1
- package/{dist/sankey.mjs → sankey.mjs} +1 -1
- package/table.d.ts +28 -0
- package/table.js +7 -0
- package/table.mjs +7 -0
- package/{dist/tiledweb.js → tiledweb.js} +1 -1
- package/{dist/tiledweb.mjs → tiledweb.mjs} +1 -1
- package/track.d.ts +39 -0
- package/track.js +7 -0
- package/track.mjs +7 -0
- package/{dist/vector.js → vector.js} +1 -1
- package/{dist/vector.mjs → vector.mjs} +1 -1
- package/dist/index.js +0 -7
- package/dist/index.mjs +0 -7
- package/dist/track.d.ts +0 -28
- /package/{dist/export.d.ts → export.d.ts} +0 -0
- /package/{dist/feature.d.ts → feature.d.ts} +0 -0
- /package/{dist/heatmap.d.ts → heatmap.d.ts} +0 -0
- /package/{dist/styles/realmap-export-style.css → realmap-export-style.css} +0 -0
- /package/{dist/sankey.d.ts → sankey.d.ts} +0 -0
- /package/{dist/tiledweb.d.ts → tiledweb.d.ts} +0 -0
- /package/{dist/vector.d.ts → vector.d.ts} +0 -0
package/dist/track.d.ts
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import * as RealMap from 'realmap';
|
|
2
|
-
import { MarkerSeries, TrackSeriesOptions, MarkerSeriesPoint, PointViewPosition, ISeries } from 'realmap';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
*/
|
|
6
|
-
declare class TrackSeriesPoint extends MarkerSeriesPoint {
|
|
7
|
-
position: PointViewPosition;
|
|
8
|
-
protected _readObject(series: ISeries<TrackSeriesPoint>, v: any): void;
|
|
9
|
-
}
|
|
10
|
-
/**
|
|
11
|
-
* Track 시리즈 모델.<br/>
|
|
12
|
-
* {@page op.SeriesOptions#type}은 {@page config.series.track 'track'}이고,
|
|
13
|
-
* {@page options 설정} 모델은 {@page op.TrackSeriesOptions}이다.
|
|
14
|
-
*
|
|
15
|
-
* @modules track
|
|
16
|
-
*/
|
|
17
|
-
declare class TrackSeries extends MarkerSeries<TrackSeriesOptions> {
|
|
18
|
-
static type: string;
|
|
19
|
-
static defaults: TrackSeriesOptions;
|
|
20
|
-
private _root;
|
|
21
|
-
protected _doApply(options: TrackSeriesOptions): void;
|
|
22
|
-
protected _createPoint(source: any): TrackSeriesPoint;
|
|
23
|
-
protected _defLabelOff(): number;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
declare function registerSeries(chart: typeof RealMap): void;
|
|
27
|
-
|
|
28
|
-
export { TrackSeries, registerSeries as default };
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|