@wemap/routers 12.11.6 → 12.12.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.d.ts +4 -2
- package/dist/index.js +10 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9061 -264
- package/dist/index.mjs.map +1 -1
- package/dist/src/graph/Graph.d.ts +6 -1
- package/dist/src/graph/Vertex.d.ts +6 -0
- package/dist/src/import/geojson/GeoJsonGraphUtils.d.ts +12 -0
- package/dist/src/import/geojson/GeoJsonUtils.d.ts +6 -0
- package/dist/src/{wemap-osm → import/osm}/OsmGraphUtils.d.ts +4 -3
- package/dist/src/types.d.ts +3 -0
- package/dist/src/wemap-multi/CustomGraphMap.d.ts +5 -14
- package/dist/src/wemap-multi/CustomGraphMapTester.d.ts +15 -10
- package/package.json +7 -5
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export type { LevelChange } from './src/model/LevelChange.js';
|
|
|
6
6
|
export type { StepExtra } from './src/model/StepExtra.js';
|
|
7
7
|
export { type TransitMode, areTransitAndTravelModeConsistent } from './src/model/TransitMode.js';
|
|
8
8
|
export { type TravelMode, type TravelModePreference } from './src/model/TravelMode.js';
|
|
9
|
-
/** Graph */
|
|
9
|
+
/** Graph and Wemap Router */
|
|
10
10
|
export { default as Graph } from './src/graph/Graph.js';
|
|
11
11
|
export { default as Vertex } from './src/graph/Vertex.js';
|
|
12
12
|
export { default as Edge } from './src/graph/Edge.js';
|
|
@@ -16,10 +16,12 @@ export { default as GraphRouter } from './src/graph/GraphRouter.js';
|
|
|
16
16
|
export { type GraphRouterOptions } from './src/graph/GraphRouterOptions.js';
|
|
17
17
|
export { default as GraphRouterOptionsBuilder } from './src/graph/GraphRouterOptionsBuilder.js';
|
|
18
18
|
export { default as NoRouteFoundError } from './src/graph/NoRouteFoundError.js';
|
|
19
|
-
export { default as OsmGraphUtils } from './src/wemap-osm/OsmGraphUtils.js';
|
|
20
19
|
export { default as WemapMultiRouter } from './src/wemap-multi/WemapMultiRouter.js';
|
|
21
20
|
export { default as CustomGraphMap } from './src/wemap-multi/CustomGraphMap.js';
|
|
22
21
|
export { default as CustomGraphMapTester, type Report as CustomGraphMapTesterReport } from './src/wemap-multi/CustomGraphMapTester.js';
|
|
22
|
+
export { default as OsmGraphUtils } from './src/import/osm/OsmGraphUtils.js';
|
|
23
|
+
export { default as GeoJsonGraphUtils } from './src/import/geojson/GeoJsonGraphUtils.js';
|
|
24
|
+
export * as GeoJsonUtils from './src/import/geojson/GeoJsonUtils.js';
|
|
23
25
|
export { default as OsrmRemoteRouter } from './src/remote/osrm/OsrmRemoteRouter.js';
|
|
24
26
|
export { default as OtpRemoteRouter } from './src/remote/otp/OtpRemoteRouter.js';
|
|
25
27
|
export { default as CitywayRemoteRouter } from './src/remote/cityway/CitywayRemoteRouter.js';
|