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

    LineEdgeBundlingLayerの初期化オプション

    interface LineEdgeBundlingLayerOptions {
        animateForce?: boolean;
        attr?: LayerAttr;
        bundlingStrength?: number;
        controlPointSize?: number;
        data:
            | Feature<Geometry, GeoJsonProperties>
            | FeatureCollection<Geometry, GeoJsonProperties>
            | Feature<Geometry, GeoJsonProperties>[];
        endpointSize?: number;
        forceStrength?: number;
        segmentSteps?: number | "auto";
        showControlPoints?: boolean;
        showOriginalLines?: boolean;
        style?: LayerStyle;
    }
    Index

    Properties

    animateForce?: boolean

    Force layoutをアニメーションするか(デフォルト: true)

    attr?: LayerAttr

    レイヤーの属性設定

    bundlingStrength?: number

    バンドリング強度(0-1、デフォルト: 0.85)

    controlPointSize?: number

    制御点のサイズ(デフォルト: 3)

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

    GeoJSONデータ(LineString/MultiLineString)

    endpointSize?: number

    端点のサイズ(デフォルト: 6)

    forceStrength?: number

    Force-directed layoutの強度(デフォルト: 20)

    segmentSteps?: number | "auto"

    制御点の数(デフォルト: 'auto'、自動計算)

    showControlPoints?: boolean

    制御点を表示するか(デフォルト: false)

    showOriginalLines?: boolean

    元のラインも表示するか(デフォルト: false)

    style?: LayerStyle

    レイヤーのCSS style属性設定