OpenLayers 3에 GeoJSON 레이어 추가


9

mygeojson.json이라는 GeoJSON 파일이 있는데 Openstreetmap 레이어 위에 OpenLayers 3의 레이어로 추가하고 싶습니다. 지금까지 줌 등을 포함한 오픈 스트리트 맵 세계를 표시 할 수 있었지만 어떤 이유로 mygeojson.json을 얻을 수 없습니다.

geojson에는 많은 다각형이 포함되어 있으며 다음과 같습니다.

{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },

"features": [
      { "type": "Feature", "properties": { "DN": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.559093915055664, 52.545214330050563 ], [ 13.559633429050496, 52.545205649772548 ], [ 13.559633415380715, 52.545214636296755 ], [ 13.559093915055664, 52.545214330050563 ] ] ] } }
]
}

내 main.html :

<!doctype html>
<html lang="en">
  <head>
    <link rel='stylesheet' href='http://ol3js.org/en/master/css/ol.css'>
    <style>
      #map {
        height: 100%;
        width: 100%;
      }
    </style>
    <title>OpenLayers 3 example</title>
    <script src="ol3/ol.js" type="text/javascript"></script>
  </head>
  <body>
    <h1>My Map</h1>
    <div id="map"></div>
    <script type="text/javascript">
      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.GeoJSON({
                 projection : 'EPSG:4326',
                 url: 'mygeojson.json'
              })
           })
        ],
        view: new ol.View({
          center:[52.5243700 , 13.4105300],
          zoom:2

        })
      });
    </script>
  </body>
</html>

또한 투영 정보를 제거하려고했지만 사용하지 않았습니다.

답변:


8

벡터 소스를 정의 할 때 투영 설정을 대상 좌표 참조 시스템을 가리 키도록 설정하십시오 (문서 참조 ).

new ol.layer.Vector({
      title: 'added Layer',
      source: new ol.source.GeoJSON({
         projection : 'EPSG:3857',
         url: 'mygeojson.json'
      })
  })

이 예제를보십시오 (샘플 데이터 사용) : http://jsfiddle.net/zzahmbff/4/

이 리소스는 벡터 데이터를로드하는 다양한 방법을 보는 데 도움이 될 수 있습니다. http://acanimal.github.io/thebookofopenlayers3/chapter03_03_vector_source.html


고마워요! mygeojson.json이 EPSG : 3857 인 경우에도 그렇게해야합니까?
Selphiron

1
나는 그렇게 생각하지 않습니다.
Germán Carrillo

1
구문이 변경되었습니다. @sevenboarder answer를 참조하십시오.
jjmontes


7

OpenLayers Vector API가 많이 바뀌고 있습니다. OpenLayers 3.16.0과 함께 작동하는 샘플이 있습니다.

다음 과 같은 featureProjection: 'EPSG:3857'옵션으로 정의해야합니다 readFeatures.

.readFeatures(_geojson_object, { featureProjection: 'EPSG:3857' })

https://github.com/openlayers/ol3/blob/master/changelog/upgrade-notes.md#v350 에서 참조 할 수 있습니다.

예:

_geojson_vectorSource = new ol.source.Vector({
  features: (new ol.format.GeoJSON()).readFeatures(_geojson_object, { featureProjection: 'EPSG:3857' })
});

_geojson_vectorLayer = new ol.layer.Vector({
  source: _geojson_vectorSource,
  style: styleFunction
});

map.addLayer(_geojson_vectorLayer);

참고 : styleFunction

var image = new ol.style.Circle({
  radius: 5,
  fill: null,
  stroke: new ol.style.Stroke({ color: 'red', width: 1 })
});

var styles = {
  'Point': new ol.style.Style({
    image: image
  }),
  'LineString': new ol.style.Style({
    stroke: new ol.style.Stroke({
      color: 'green',
      width: 1
    })
  }),
  'MultiLineString': new ol.style.Style({
    stroke: new ol.style.Stroke({
      color: 'green',
      width: 1
    })
  }),
  'MultiPoint': new ol.style.Style({
    image: image
  }),
  'MultiPolygon': new ol.style.Style({
    stroke: new ol.style.Stroke({
      color: 'yellow',
      width: 1
    }),
    fill: new ol.style.Fill({
      color: 'rgba(255, 255, 0, 0.1)'
    })
  }),
  'Polygon': new ol.style.Style({
    stroke: new ol.style.Stroke({
      color: 'blue',
      lineDash: [4],
      width: 3
    }),
    fill: new ol.style.Fill({
      color: 'rgba(0, 0, 255, 0.1)'
    })
  }),
  'GeometryCollection': new ol.style.Style({
    stroke: new ol.style.Stroke({
      color: 'magenta',
      width: 2
    }),
    fill: new ol.style.Fill({
      color: 'magenta'
    }),
    image: new ol.style.Circle({
      radius: 10,
      fill: null,
      stroke: new ol.style.Stroke({
        color: 'magenta'
      })
    })
  }),
  'Circle': new ol.style.Style({
    stroke: new ol.style.Stroke({
      color: 'red',
      width: 2
    }),
    fill: new ol.style.Fill({
      color: 'rgba(255,0,0,0.2)'
    })
  })
};

var styleFunction = function (feature) {
  return styles[feature.getGeometry().getType()];
};
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.