interface TrackedLayer {
    events: {
        visibilitychanged: () => void;
        "waze-feature-clicked": (e: { feature: WMEFeature }) => void;
        "waze-feature-in": (e: { feature: WMEFeature }) => void;
        "waze-feature-out": (e: { feature: WMEFeature }) => void;
    };
}

Properties

Properties

events: {
    visibilitychanged: () => void;
    "waze-feature-clicked": (e: { feature: WMEFeature }) => void;
    "waze-feature-in": (e: { feature: WMEFeature }) => void;
    "waze-feature-out": (e: { feature: WMEFeature }) => void;
}