我尝试从以下位置重新投影 OpenLayers 3 中的 Geojson 文件:
- Geojson 链接
- 有了这些 JS 在头脑中:
<link rel="stylesheet" href="http://openlayers.org/en/v3.15.1/css/ol.css" type="text/css">
<script src="http://openlayers.org/en/v3.15.1/build/ol.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/proj4js/2.2.1/proj4.js"></script>
- 使用此代码使用 newProjCode 设置新的 ol.View:
var newProjCode = 'EPSG:27700'
proj4.defs(newProjCode, '+proj=utm +zone=31 +ellps=WGS84 +datum=WGS84 +units=m +no_defs');
var newProj = ol.proj.get(newProjCode);
var fromLonLat = ol.proj.getTransform('EPSG:4326', newProj);
var newView = new ol.View({
projection: newProj
});
map.setView(newView);
- 但是在设置了新的 ol.View 之后,我只看到了白屏。
问题出在哪里?