слои Geojson не отображаются на OpenLayers - PullRequest
0 голосов
/ 11 февраля 2019

Я новичок в OpenLayers.Я делаю веб-карту, но я не знаю, почему слои геоджона не отображаются, отображается только базовая карта.У меня есть следующий код:

<!DOCTYPE html>
<html>
  <head>
    <title>Flood Plain Risks</title>
    <link rel="stylesheet" href="https://openlayers.org/en/v5.3.0/css/ol.css" type="text/css">
    <script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script>
<script src="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/build/ol.js"></script>
<link rel="stylesheet" href="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/css/ol.css">
  </head>
  <body>
    <div id="map" class="map"></div>
    <button> <a id="export-png" class="btn btn-default"><i class="fa fa-download"></i> Save Map</a></button>
    <script>
 var map = new ol.Map({
        target: 'map',
        layers: [
          new ol.layer.Tile({
            source: new ol.source.OSM()
          }),
        new ol.layer.Vector({
            title: 'added Layer',
            source: new ol.source.Vector({
            url: 'FLOOD_PLAIN.json',
            format: new ol.format.GeoJSON()
            })
        }),
        new ol.layer.Vector({
            title: 'added Layer',
            source: new ol.source.Vector({
            url: 'BUILDING_FOOTPRINT.json',
            format: new ol.format.GeoJSON()
            })
        })
        ],
        view: new ol.View({
          center: ol.proj.fromLonLat([-80.981948,43.370172]),
          zoom: 14
        })
      });
      document.getElementById('export-png').addEventListener('click', function() {
        map.once('rendercomplete', function(event) {
          var canvas = event.context.canvas;
          if (navigator.msSaveBlob) {
            navigator.msSaveBlob(canvas.msToBlob(), 'map.png');
          } else {
            canvas.toBlob(function(blob) {
              saveAs(blob, 'map.png');
            });
          }
        });
        map.renderSync();
      });
    </script>
  </body>
</html>

Проекция данных GeoJSON - это NAD83 / UTM зона 17N (EPSG: 26917).

Предполагается, что они охватывают город Стратфорд, ON.

Полный GeoJSON:

1 Ответ

0 голосов
/ 12 февраля 2019

Вам необходимо включить пользовательский прогноз (NAD83 / UTM зона 17N (EPSG: 26917))

<script src="https://cdnjs.cloudflare.com/ajax/libs/proj4js/2.4.3/proj4.js"></script>
<script src="https://epsg.io/26917.js"></script>

<script>
ol.proj.proj4.register(proj4);

var dataProjection = ol.proj.get('EPSG:26917');
var map = new ol.Map({
  target: 'map',
  layers: [
    new ol.layer.Tile({
      source: new ol.source.OSM()
    }),
    new ol.layer.Vector({
      title: 'added Layer',
      source: new ol.source.Vector({
        url: 'FLOOD_PLAIN.json.txt',
        format: new ol.format.GeoJSON({
          dataProjection: dataProjection,
          featureProjection: 'EPSG:3857'
        })
      })
    }),
    new ol.layer.Vector({
      title: 'added Layer',
      source: new ol.source.Vector({
        url: 'BUILDING_FOOTPRINT.json.txt',
        format: new ol.format.GeoJSON({
          dataProjection: dataProjection,
          featureProjection: 'EPSG:3857'
        })
      })
    })],
  view: new ol.View({
      center: ol.proj.fromLonLat([-80.981948,43.370172]),
      zoom: 14
  })
});

подтверждение концепции

screenshot of resulting map

...