@fleet-frontend/mower-maps
Version:
a mower maps in google maps
17 lines • 487 B
TypeScript
import React from 'react';
import { DragCallbacks } from '../../types/renderer';
interface MapDragProps {
map: google.maps.Map;
dragCallbacks?: DragCallbacks;
onBoundaryLabelsCollapse?: () => void;
onTransformChange?: (transform: {
x: number;
y: number;
rotate: number;
}) => void;
isDragMap?: boolean;
canRotateMap?: boolean;
}
declare const MapDrag: React.FC<MapDragProps>;
export default MapDrag;
//# sourceMappingURL=index.d.ts.map