1. ホーム
  2. javascript

[解決済み] OpenLayers-3でSVG画像をレイヤーとして使用するには?

2022-03-03 05:24:15

質問

OpenLayers-3で、SVG画像をレイヤーとして使うにはどうしたらよいでしょうか。

のいずれかを使用しても、SVG 画像の出力を得ることができませんでした。 ol.source.Vectorol.format.Feature のインスタンスを作成します。

小さな例です。

var mapLayer = new ol.layer.Vector({
    source: new ol.source.Vector({
        url: 'image.svg',
        format: new ol.format.Feature() // http://openlayers.org/en/v3.12.1/apidoc/ol.format.Feature.html
    }),
}); 

ImageStaticレイヤーを使うと出力できたのですが、これは静止画を使う/生成する(?)ので、SVGの利点がなくなってしまいます。

// Not sure if I need this for SVG, but is is required for an image
var extent = [0, 0, 1000, 1000]; // random image size
var projection = new ol.proj.Projection({
    code: 'test',
    units: 'pixels',
    extent: extent
});

var mapLayer = new ol.layer.Image({
    source: new ol.source.ImageStatic({
        url: 'image.svg',
        projection: projection,
        imageExtent: extent
    })
});

を設定するトリックは既に試した。 Content-type: から image/svg+xml が、これは全く役に立ちませんでした。

そこで、もう一度。 OpenLayers-3でSVG画像をレイヤーとして使うには、どうすればいいでしょうか(可能であれば)?

解決方法は?

を使用することはできません。 ol.source.Vector は、svg ファイルを画像として表示することができます。

ズームしても画像がシャープに保たれる。

公式の 静止画の例 で、png ファイルを svg ファイルに置き換えた。以下の実行可能な例をご覧ください。

var extent = [0, 0, 512, 512];
var projection = new ol.proj.Projection({
  code: 'static-image',
  units: 'pixels',
  extent: extent
});

var map = new ol.Map({
  layers: [
    new ol.layer.Image({
      source: new ol.source.ImageStatic({
        url: 'https://upload.wikimedia.org/wikipedia/commons/f/fd/Ghostscript_Tiger.svg',
        projection: projection,
        imageExtent: extent
      })
    })
  ],
  target: 'map',
  view: new ol.View({
    projection: projection,
    center: ol.extent.getCenter(extent),
    zoom: 0
  })
});
<script src="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/build/ol.js"></script>
<link href="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/css/ol.css" rel="stylesheet"/>
<div id="map" class="map"></div>