tg-map-vue3 3.4.2 → 3.4.3
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.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type * as CSS from 'csstype';
|
|
1
2
|
import type { Tg } from '../event';
|
|
2
3
|
import type { AbstractEventTargetDelegate } from '../event-target';
|
|
3
4
|
import type { CoordType, CoordTypeSupplier, LatLng, LatLngBounds } from '../lat-lng';
|
|
@@ -98,7 +99,7 @@ export declare abstract class AbstractMap implements CoordTypeSupplier, Tg.Event
|
|
|
98
99
|
* - google: 禁用拖拽后, 不能滚轮缩放
|
|
99
100
|
*/
|
|
100
101
|
abstract setDraggable(draggable: boolean): void;
|
|
101
|
-
abstract setDefaultCursor(cursor:
|
|
102
|
+
abstract setDefaultCursor(cursor: CSS.Property.Cursor): void;
|
|
102
103
|
abstract setDisableDoubleClickZoom(type: boolean): void;
|
|
103
104
|
abstract getCenter(): LatLng;
|
|
104
105
|
/**
|