dayjournal memo

Total 975 articles!!

OpenLayers #006 – サークル表示

Yasunori Kirimoto's avatar


画像



サークルを表示するメモ。



画像



script.js

import Map from 'ol/Map';
import View from 'ol/View';
import TileLayer from 'ol/layer/Tile';
import XYZ from 'ol/source/XYZ';
import { fromLonLat } from 'ol/proj';

// 各ライブラリ読み込み
import VectorLayer from 'ol/layer/Vector';
import VectorSource from 'ol/source/Vector';
import GeoJSON from 'ol/format/GeoJSON';
import Style from 'ol/style/Style';
import Stroke from 'ol/style/Stroke';
import Fill from 'ol/style/Fill';
import Circle from 'ol/style/Circle';


// サークルGeoJSON設定
const geojsonObject = {
    "type": "FeatureCollection",
    "features": [
        {
            "type": "Feature",
            "properties": {},
            "geometry": {
                "type": "Point",
                "coordinates":  [139.763, 35.681]
            }
        }
    ]
};

// サークルレイヤ設定
const vectorLayer = new VectorLayer({
    source: new VectorSource({
        features: new GeoJSON({
            featureProjection: 'EPSG:3857'
        }).readFeatures(geojsonObject)
    }),
    style: new Style({
        image: new Circle({
            radius: 10,
            stroke: new Stroke({
                color: 'rgba(255, 0, 0, 1.0)',
                width: 5
            }),
            fill: new Fill({
                color: 'rgba(255, 0, 0, 0.4)'
            })
        })
    })
});


// MIERUNE MONO読み込み
const map = new Map ({
    target: 'map',
    layers: [
        new TileLayer({
            source: new XYZ({
                url: 'https://tile.mierune.co.jp/mierune_mono/{z}/{x}/{y}.png',
                attributions: 'Maptiles by <a href="http://mierune.co.jp" target="_blank">MIERUNE</a>, under CC BY. Data by <a href="http://osm.org/copyright" target="_blank">OpenStreetMap</a> contributors, under ODbL.',
                attributionsCollapsible: false,
                tileSize: [256, 256],
                minZoom: 0,
                maxZoom: 18
            })
        }),
        // サークルレイヤ指定
        vectorLayer
    ],
    view: new View ({
        center: fromLonLat([139.767, 35.681]),
        zoom: 14
    })
});



OpenLayersを手軽に始めるビルド環境公開しています。
openlayers-starter



book

Q&A