dayjournal memo

Total 975 articles!!

Turf.js #015 – ポイントから円弧計算

Yasunori Kirimoto's avatar


画像



ポイントから円弧を計算するメモ。



画像



script.js

// MIERUNE MONO読み込み
var map = new mapboxgl.Map({
    container: "map",
    style: {
        version: 8,
        sources: {
            m_mono: {
                type: "raster",
                tiles: ["https://tile.mierune.co.jp/mierune_mono/{z}/{x}/{y}.png"],
                tileSize: 256
            }
        },
        layers: [{
            id: "m_mono",
            type: "raster",
            source: "m_mono",
            minzoom: 0,
            maxzoom: 18
        }]
    },
    center: [139.770, 35.676],
    zoom: 13
});


map.on("load", function () {
    // ポイント取得
    var point = turf.point([139.7594, 35.6865]);

    // ポイント表示
    map.addSource("FeaturesPoint", {
        type: "geojson",
        data: point
    });
    map.addLayer({
        id: "FeaturesPoint",
        type: "circle",
        source: "FeaturesPoint",
        layout: {},
        paint: {
            "circle-pitch-alignment": "map",
            "circle-stroke-color": "#1253A4",
            "circle-stroke-width": 5,
            "circle-stroke-opacity": 0.8,
            "circle-color": "#1253A4",
            "circle-radius": 5,
            "circle-opacity": 0.5
        }
    });

    // ポイントから円弧計算
    var radius = 2;
    var bearing1 = 60;
    var bearing2 = 200;
    var arc = turf.lineArc(point, radius, bearing1, bearing2);

    // ライン表示
    map.addSource("LineSample", {
        type: "geojson",
        data: arc
    });
    map.addLayer({
        id: "LineSample",
        type: "line",
        source: "LineSample",
        layout: {
            "line-join": "round",
            "line-cap": "round"
        },
        paint: {
            "line-color": "#1253A4",
            "line-width": 5,
            "line-opacity": 0.6
        }
    });

});

// コントロール関係表示
map.addControl(new mapboxgl.NavigationControl());



Turf.jsを手軽に始めるビルド環境公開しています。
turfjs-starter



book

Q&A