2

私は OpenGeo の OpenLayers チュートリアルに従っており、GeoRSS でエンコードされた地震の場所の XML ファイルを読み取るベクター レイヤーに苦労しています。これは、この種のチュートリアルで多く使用されているようです。マップは 1 つのポイント (0,0) を生成します。詳しく調べると、ファイル内のすべてのポイントが互いに積み重なって表示されるため、XML 内のポイントの変換と OpenLayers の間で何か問題が発生していることは明らかです。

コードは次のとおりです。

var geographic = new OpenLayers.Projection("EPSG:4326");
var mercator = new OpenLayers.Projection("EPSG:900913");

var world = new OpenLayers.Bounds(-180, -89, 180, 89).transform(
    geographic, mercator
);

var center = new OpenLayers.LonLat('.$centerMapLat.','.$centerMapLon.').transform(
    geographic, mercator
);

var options = {
    projection: mercator,
    units: "m",
    maxExtent: world
};

var map = new OpenLayers.Map("map-id", options);

var osm = new OpenLayers.Layer.OSM();
map.addLayer(osm);
map.addControl(new OpenLayers.Control.LayerSwitcher()); 
map.setCenter(center, 2);

var mapdata = new OpenLayers.Layer.Vector("Map Data", {
    strategies: [new OpenLayers.Strategy.Fixed()],
    protocol: new OpenLayers.Protocol.HTTP({
        url: "7day-M2.5.xml",
        format: new OpenLayers.Format.GeoRSS()
    })
});
map.addLayer(mapdata);

XML ファイルの形式は次のとおりです。

<feed xmlns="http://www.w3.org/2005/Atom" xmlns:georss="http://www.georss.org/georss">

<updated>2012-01-23T09:43:22Z</updated>
<title>USGS M 2.5+ Earthquakes</title>
<subtitle>Real-time, worldwide earthquake list for the past 7 days</subtitle>
<link rel="self" href="http://earthquake.usgs.gov/earthquakes/catalogs/7day-M2.5.xml"/>
<link href="http://earthquake.usgs.gov/earthquakes/"/>
<author><name>U.S. Geological Survey</name></author>

<id>http://earthquake.usgs.gov/</id>
<icon>/favicon.ico</icon>
<entry>
    <id>urn:earthquake-usgs-gov:ak:10395995</id>
    <title>M 2.7, Alaska Peninsula</title>
    <updated>2012-01-23T09:38:43Z</updated>
    <link rel="alternate" type="text/html" href="http://earthquake.usgs.gov/earthquakes/recenteqsww/Quakes/ak10395995.php"/>
    <summary type="html">
    <![CDATA[<img src="http://earthquake.usgs.gov/images/globes/60_-155.jpg" alt="57.806&#176;N 156.412&#176;W" align="left" hspace="20" />
    <p>Monday, January 23, 2012 09:38:43 UTC<br>Monday, January 23, 2012 12:38:43 AM at epicenter</p>
    <p><strong>Depth</strong>: 122.70 km (76.24 mi)</p>]]></summary><georss:point>57.8058 -156.4123</georss:point>
    <georss:elev>-122700</georss:elev>
    <category label="Age" term="Past hour"/>
</entry>

[:]

</feed>

タグの間にどのような値が配置されていても、または切り取ったフィールドの数は問題ではないようです。ポイントは常に 0,0 に表示されます。firebug で座標を手動で編集することでスポットを移動できます。これは、各ポイントの html でレンダリングされるものです。

<circle id="OpenLayers.Geometry.Point_424" 
    cx="4.738678387182473" cy="237.58907791425827" 
    r="6" fill="#ee9900" fill-opacity="0.4" stroke="#ee9900" stroke-opacity="1" stroke-width="1" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="none" pointer-events="visiblePainted" cursor="inherit">

何か間違ったことをした疑いがあるので、健全性チェックをお願いします

4

1 に答える 1

3

問題は、マップと背景レイヤー (OSM) の投影が "EPSG:900913" であるのに対し、GeoRSS から読み込んでいるポイントが "EPSG:4326" にあることです。

EPSG:900913 の座標は次のようになります: 20037508, 20037508. EPSG:4326 では、座標の範囲は -180 から 180 の間であるため、マップ上のすべてのポイントが 0,0 付近にあるように見えます。

解決策は、ベクター レイヤーを作成するときに投影を指定して、GeoRSS ポイントを再投影することです。

var mapdata = new OpenLayers.Layer.Vector("Map Data", {
    strategies: [new OpenLayers.Strategy.Fixed()],
    protocol: new OpenLayers.Protocol.HTTP({
        url: "7day-M2.5.xml",
        format: new OpenLayers.Format.GeoRSS()
    }),
    projection: geographic
});
于 2012-01-23T14:57:19.010 に答える