我使用JavaScript解析Google Maps RSS,并使用以下代码获取点坐标:
point_coords = items.getElementsByTagName('georss:point')
不幸的是,它可以在FF中使用,但不能在Safari和Chrome中使用(仍未在Opera和IE中进行测试)
XML看起来像:
<item>
<guid isPermaLink="false">guidNo</guid>
<pubDate>Mon, 23 Mar 2009 20:16:41 +0000</pubDate>
<title>title text</title>
<description><![CDATA[text]]></description>
<author>UniCreditBulbank</author>
<georss:point>
42.732342 23.296659
</georss:point>
</item>
最佳答案
最终解决方案可在IE6、7、8,FF,Opera,Chrome和Safari中运行
point_coords = item.getElementsByTagName('georss:point')[0];
if(!point_coords || point_coords == null){
point_coords = item.getElementsByTagName('point')[0];
}
if(!point_coords || point_coords == null){
point_coords = item.getElementsByTagNameNS('http://www.georss.org/georss', 'point')[0];
}
return point_coords
感谢所有暗示,他们做了这项工作)