OpenLayers => 功能为空
2011-10-09
1862
这是我的 GeoJSON 结果。 PasteBin 但是当我加载它时,我在 firebug 中得到的结果是 feature is null。这是为什么,我的结果有什么错误吗?JSON 中的坐标是用投影 WGS84 编写的,并且在代码中我也将 externalProjection 设置为 WGS84。那么为什么我会得到“feature is null”的返回值? 我用来管理地图的代码是:
$(document).ready(function() {
var wgs84 = new OpenLayers.Projection('EPSG:4326');
var layer = null;
var map = new OpenLayers.Map('map',{projection: wgs84});
layer = new OpenLayers.Layer.OSM( "Simple OSM Map");
var baseProjection = layer.projection;
map.addLayer(layer);
map.setCenter(new OpenLayers.LonLat(10,10), 4);
map.events.register("moveend", null, function(){
if(map.zoom == 10)
{
var bounds = map.getExtent();
console.log(bounds);
var ne = new OpenLayers.LonLat(bounds.right,bounds.top).transform(map.getProjectionObject(),wgs84);
var sw = new OpenLayers.LonLat(bounds.left,bounds.bottom).transform(map.getProjectionObject(),wgs84);
var vectorLayer = new OpenLayers.Layer.Vector();
map.addLayer(vectorLayer);
$.getJSON('ajax.php?a=markers&type=json&sw=('+sw.lon+','+sw.lat+')&ne=('+ne.lon+','+ne.lat+')',function(data){
//$.getJSON('test.json',function(data){
var geojson_format = new OpenLayers.Format.GeoJSON({
'externalProjection': wgs84,
'internalProjection': baseProjection
});
vectorLayer.addFeatures(geojson_format.read(data));
});
}
});
});
1个回答
您的示例 OpenLayer 代码运行正常,问题出在您的 GeoJSON 中:您将 coordinates 拼写错误为 “coordninates”
Niels
2011-10-12