ParsedMarkerConfig: Omit<MarkerConfig, "rotation" | "scale" | "tooltip" | "hoverScale"> & {
    hoverScale?: {
        amount: number;
        duration: number;
        easing: string;
    };
    rotation?: number;
    scale?: {
        yaw?: [number, number];
        zoom?: [number, number];
    } | ((zoomLevel, position) => number);
    tooltip?: {
        className?: string;
        content: string;
        position?: string;
        trigger?: "hover" | "click";
    };
}

Type declaration

  • Optional hoverScale?: {
        amount: number;
        duration: number;
        easing: string;
    }
    • amount: number
    • duration: number
    • easing: string
  • Optional rotation?: number
  • Optional scale?: {
        yaw?: [number, number];
        zoom?: [number, number];
    } | ((zoomLevel, position) => number)
  • Optional tooltip?: {
        className?: string;
        content: string;
        position?: string;
        trigger?: "hover" | "click";
    }
    • Optional className?: string
    • content: string
    • Optional position?: string
    • Optional trigger?: "hover" | "click"

Generated using TypeDoc