如何编写可用于“google.maps.KmlLayer”的 GeoRSS

发布于 2024-09-08 16:48:51 字数 1757 浏览 1 评论 0原文

  1. 原子是:

    示例 Feed
    <副标题>副标题。
    
    
    urn:uuid:60a76c80-d399-11d9-b91C-0003939e0af6
    <更新>2003-12-13T18:30:02Z
    <作者>
        <姓名>约翰·多伊
        [电子邮件受保护]
    
    
    <条目>
        原子动力机器人横行无忌
        >
        
        />
        urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a
        <更新>2003-12-13T18:30:02Z
        <摘要>一些文字。
    
    

  2. GeoRSS 是:

    <乔治:点>45.256 -71.92< /georss:point>

  3. google.maps.KmlLayer 是:

    var myLatlng = new google.maps.LatLng(49.496675,-102.65625); var myOptions = { 变焦:4, 中心:myLatlng, 地图类型 ID:google.maps.MapTypeId.ROADMAP }

    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

    var georssLayer = new google.maps.KmlLayer('http ://api.flickr.com/services/feeds/geo/?g=322338@N20<=en-us&format=feed-georss'); georssLayer.setMap(map);

如何创建一个包含 1 和 2 for 3 的有用的 GeoRSS?

  1. The atom is:

    <title>Example Feed</title>
    <subtitle>A subtitle.</subtitle>
    <link href="http://example.org/feed/" rel="self" />
    <link href="http://example.org/" />
    <id>urn:uuid:60a76c80-d399-11d9-b91C-0003939e0af6</id>
    <updated>2003-12-13T18:30:02Z</updated>
    <author>
        <name>John Doe</name>
        <email>[email protected]</email>
    </author>
    
    <entry>
        <title>Atom-Powered Robots Run Amok</title>
        <link href="http://example.org/2003/12/13/atom03" />
        <link rel="alternate" type="text/html" href="http://example.org/2003/12/13/atom03.html"/>
        <link rel="edit" href="http://example.org/2003/12/13/atom03/edit"/>
        <id>urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a</id>
        <updated>2003-12-13T18:30:02Z</updated>
        <summary>Some text.</summary>
    </entry>
    

  2. The GeoRSS is:

    < georss:point>45.256 -71.92< /georss:point>

  3. The google.maps.KmlLayer is:

    var myLatlng = new google.maps.LatLng(49.496675,-102.65625);
    var myOptions = {
    zoom: 4,
    center: myLatlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
    }

    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

    var georssLayer = new google.maps.KmlLayer('http://api.flickr.com/services/feeds/geo/?g=322338@N20〈=en-us&format=feed-georss');
    georssLayer.setMap(map);

How can I create a useful GeoRSS that contains 1 and 2 for 3?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文