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

    Interface PointSymbolLayerOptions

    PointSymbolLayerの初期化オプション

    interface PointSymbolLayerOptions {
        attr?: LayerAttr;
        data:
            | FeatureCollection<Geometry, GeoJsonProperties>
            | Feature<Geometry, GeoJsonProperties>[];
        size?: number | ((feature: Feature, index: number) => number);
        style?: LayerStyle;
        symbolType?: SymbolType | ((feature: Feature, index: number) => SymbolType);
    }
    Index

    Properties

    attr?: LayerAttr

    レイヤーの属性設定

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

    GeoJSONデータ

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

    シンボルのサイズ(固定値または関数)

    style?: LayerStyle

    レイヤーのCSS style属性設定

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

    シンボルタイプ(固定値または関数)