我想要一些帮助,下面有这段代码,它可以正常工作,但是我想将de“ geojsonObject”放在变量中,而不是在.geojson文件中并加载它,我不太熟悉使用javascript和geojson。
import 'ol/ol.css';
import Feature from 'ol/Feature';
import Map from 'ol/Map';
import View from 'ol/View';
import GeoJSON from 'ol/format/GeoJSON';
import Circle from 'ol/geom/Circle';
import {Tile as TileLayer, Vector as VectorLayer} from 'ol/layer';
import {OSM, Vector as VectorSource} from 'ol/source';
import {Circle as CircleStyle, Fill, Stroke, Style} from 'ol/style';
import {Icon} from 'ol/style';
var image = new CircleStyle({
radius: 5,
fill: null,
stroke: new Stroke({color: 'red', width: 1})
});
var styles = {
'Point': new Style({
image: new Icon({
rotation: 180 / 180 * 3.14,
src: 'data/test.svg'
})
})
};
var geojsonObject = {
'type': 'FeatureCollection',
'crs': {
'type': 'name',
'properties': {
'name': 'EPSG:3857'
}
},
'features': [{
'type': 'Feature',
'rotation': 180 / 180 * 3.14,
'geometry': {
'type': 'Point',
'coordinates': [0, 0]
}
}]
};
var styleFunction = function(feature) {
return styles[feature.getGeometry().getType()];
};
var vectorSource = new VectorSource({
features: (new GeoJSON()).readFeatures(geojsonObject)
});
vectorSource.addFeature(new Feature(new Circle([5e6, 7e6], 1e6)));
var vectorLayer = new VectorLayer({
source: vectorSource,
style: styleFunction
});
var map = new Map({
layers: [
new TileLayer({
source: new OSM()
}),
vectorLayer
],
target: 'map',
view: new View({
center: [0, 0],
zoom: 2
})
});
我尝试了下面的test.geojson文件,但我不知道它是否正确,而且我想知道如何更改“ vectorSource”以加载它
{
"type": "FeatureCollection",
"crs": {
"type": "name",
"properties": {
"name": "EPSG:3857"
}
},
"features": [{
"type": "Feature",
"rotation": 90 / 180 * 3.14,
"geometry": {
"type": "Point",
"coordinates": [0, 0]
}
}]
}
答案 0 :(得分:1)
OpenLayers将加载并解析网址
var vectorSource = new VectorSource({
format: new GeoJSON(),
url: 'test.geojson'
});
如果您使用文件扩展名.geojson
,请确保在服务器的MIME类型中启用了该文件扩展名(否则,请使用.json
)
如果要从geojson访问非标准属性,则必须将其放入属性对象
"features": [{
"type": "Feature",
"properties" : {
"rotation": 90 / 180 * 3.14
},
"geometry": {
"type": "Point",
"coordinates": [0, 0]
}
}]