2011-02-11 73 views
1

我使用的Wordpress插件在每個<item>的末尾添加<georss:point>數據到標準RSS提要。如何自定義來自kmlLayer的infoWindow內容

當作爲kmlLayer添加到Google地圖時,它一切正常,默認顯示RSS提要中的<title><description>字段。

但是,我想要顯示來自RSS提要的其他數據,例如一個鏈接回到原來的帖子,和一個圖像。我添加了<author><name>my name</name></author>作爲實驗,在<georss:point>之前添加 - 但它不會顯示在疊加層中。

請問我的飼料必須格式化正是因爲每:

{ 
author: { 
email: "[email protected]", 
name: "Mr Nobody", 
uri: "http://example.com" 
}, 
description: "description", 
id: "id", 
infoWindowHtml: "html", 
name: "name", 
snippet: "snippet" 
} 

以定製infoWindow內容,還是有辦法從RSS Feed中獲取額外的數據和操作infoWindow顯示之前的內容?

有關信息,這裏的飼料產量:

<item> 
    <title>Helen Robotham profiled on Italian Vogue</title> 
    <link>http://blogs.fashion.arts.ac.uk/snapshot/2010/03/22/helen-robotham-profiled-on-italian-vogue/</link> 
    <comments>http://blogs.fashion.arts.ac.uk/snapshot/2010/03/22/helen-robotham-profiled-on-italian-vogue/#comments</comments> 

    <pubDate>Mon, 22 Mar 2010 09:36:07 +0000</pubDate> 
    <dc:creator>alastair</dc:creator> 
    <guid isPermaLink="false">http://www.fashion.arts.ac.uk/snapshot/?p=1746</guid> 
    <description><![CDATA[MA Fashion Artefact alumna Helen Robotham has a detailed profile on vogue.it, complete with biography and gallery. Helen graduated in 2009 and last May won the Fashion Fringe at Covent Garden Accessories Award. View course information]]></description> 
    <content:encoded><![CDATA[<p><img class="alignnone size-large wp-image-1747" src="http://blogs.fashion.arts.ac.uk/snapshot/files/2010/03/vogue-it-robotham-469x288.jpg" alt="" width="469" height="288" /></p> 
    <p><a href="http://www.fashion.arts.ac.uk/courses/postgraduate/ma_fashion_artefact.htm">MA Fashion Artefact</a> alumna Helen Robotham has a detailed <a href="http://www.vogue.it/en/talents/graduated-from/2010/03/helen-robotham">profile on vogue.it</a>, complete with biography and gallery. Helen graduated in 2009 and <a href="http://www.fashion.arts.ac.uk/snapshot/2009/05/helen-robotham-wins-fashion-fringe/">last May won</a> the Fashion Fringe at Covent Garden Accessories Award.</p>]]></content:encoded> 
     <wfw:commentRss>http://blogs.fashion.arts.ac.uk/snapshot/2010/03/22/helen-robotham-profiled-on-italian-vogue/feed/</wfw:commentRss> 
    <slash:comments>0</slash:comments> 
    <author><name>name</name></author> 
    <georss:point>45.4636889 9.1881408</georss:point> 
    <georss:featurename>Milan, Italy</georss:featurename> 
    <link rel="enclosure" type="image/jpeg" href="http://farm1.static.flickr.com/74/228310988_33a56d0108_o.jpg" /> 
</item> 

回答

相關問題