d3-thematika - v0.0.1
    Preparing search index...

    Interface PointSpikeLayerOptions

    PointSpikeLayerの初期化オプション

    interface PointSpikeLayerOptions {
        attr?: LayerAttr;
        data:
            | FeatureCollection<Geometry, GeoJsonProperties>
            | Feature<Geometry, GeoJsonProperties>[];
        direction?: "up" | "down" | "left" | "right";
        length?: number | ((feature: Feature, index: number) => number);
        style?: LayerStyle;
    }
    Index

    Properties

    attr?: LayerAttr

    レイヤーの属性設定

    data:
        | FeatureCollection<Geometry, GeoJsonProperties>
        | Feature<Geometry, GeoJsonProperties>[]

    GeoJSONデータ

    direction?: "up" | "down" | "left" | "right"

    スパイクの方向

    length?: number | ((feature: Feature, index: number) => number)

    スパイクの長さ(固定値または関数)

    style?: LayerStyle

    レイヤーのCSS style属性設定