becomap 1.7.1 → 1.7.21
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/lib/becomap.js +1 -1
- package/lib/index.d.ts +2 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -683,6 +683,7 @@ export interface BCRouteController {
|
|
|
683
683
|
* @param options.customFloorNotification - Custom function to render floor change notification (receives floor and returns HTMLElement)
|
|
684
684
|
* @param options.onComplete - Callback function called when animation completes
|
|
685
685
|
* @param options.onFloorChange - Callback function called when marker changes floor
|
|
686
|
+
* @param options.startImmediately - If true, starts animation immediately without waiting for route/arrow animations (default: false)
|
|
686
687
|
*
|
|
687
688
|
* @example
|
|
688
689
|
* // Animate with default settings (camera follows marker)
|
|
@@ -719,6 +720,7 @@ export interface BCRouteController {
|
|
|
719
720
|
customFloorNotification?: (floor: BCMapFloor) => HTMLElement;
|
|
720
721
|
onComplete?: () => void;
|
|
721
722
|
onFloorChange?: (floor: BCMapFloor) => void;
|
|
723
|
+
startImmediately?: boolean;
|
|
722
724
|
}): void;
|
|
723
725
|
/**
|
|
724
726
|
* Stops the ongoing marker animation.
|