georss

VEMap and a GeoRSS feed(hosted separately)

The scenario is as follows: A WCF web service exists that outputs a valid GeoRSS feed. This lives in its own domain as a number of different applications have access to it. A web page(on a different site) has been created with an instance of a VEMap(Bing/Virtual Earth map object). Now, VEMap can accept an input feed in this format vi...

Parsing GeoRSS Feed with jQuery

I'm attempting to use the jQuery jFeed plugin for parsing an Atom, GeoRSS feed and I'm running into issues extracting the information I need. For example, I need to extract the summary element and I would like to render the contents in a div on my HTML page. Additionally, I'd like to extract the contents from the georss:point elements an...

how to write a georss that can be used for "google.maps.KmlLayer"

1.the atom is : <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"&gt; <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> <update...

has any simple way to create a geo rss like google georss ..

this is google georss which in "my maps": <?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:georss="http://www.georss.org/georss" xmlns:gml="http://www.opengis.net/gml"&gt; <channel> <link>http://maps.google.com&lt;/link&gt; <title>beijing 1</title> <description><![CDATA[dsad]]></description> <item> <guid isPer...

can feedparser parse geo-rss.

the geo-rss.xml is : <?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:georss="http://www.georss.org/georss" xmlns:gml="http://www.opengis.net/gml"&gt; <channel> <link>http://maps.google.com&lt;/link&gt; <title>beijing 1</title> <description><![CDATA[dsad]]></description> <item> <guid isPermaLink="false">00048b...

how to parse a geo-rss.xml ,any python lib to do this ?

i want to get the content of the geo-rss any python lib to do this ? thanks ...

how to get all Overlays via KmlLayer class on google-maps-v3 not noly when someone click .

i follow this article ,and the code is : var myLatlng = new google.maps.LatLng(40.65, -73.95); var myOptions = { zoom: 12, center: myLatlng, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); var nyLayer = new google.maps.KmlLayer('http://www.searcharoo.ne...

how to get the geo data from geo-rss via google ajax feed api .

this is my code that has geo-rss from google maps rss: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Google AJAX Feed API - Simple ...

RSS with international news and GEO coordinates (GEORSS)

Hello, im developing a programs who can locate point given a coordinate over a map, do you know a rss with international news a geo data to test with? PS: GEODATA EX: GeoRSS-Simple <georss:point>45.256 -71.92</georss:point> GeoRSS-GML <georss:where> <gml:Point> <gml:pos>45.256 -71.92</gml:pos> </gml:Point> </georss:w...

Can't get GeoRSS to work

Hi, I need to create GeoRSS view in Django but only got error Exception Type: TypeError Exception Value: __init__() got an unexpected keyword argument 'feed_guid' Exception Location: /usr/lib/python2.6/site-packages/django/contrib/syndication/views.py in get_feed, line 117 I red GeoFeed and Syndication in Django docs many...

visualizing geoRSS on a globe

What are my options if I'd like to display GeoRSS data on a globe like the one found here. ...

Polymaps.org & KML / Plotting lines in GeoJSON

Has anyone had a play with the Polymaps.org KML parser? To me it seems the example doesn't even work. I have an existing KML file which is being generated from a very simple database - I have a placemark name, and a lat/long in decimal notation for said placemark. I have hundreds of these, that form a route - What I want to do is very ...

New to OOP PHP, need critique on first Geo RSS Class

I'm completely new to OOP PHP and currently reading "PHP Objects, Patterns and Practice". I needed to develop something that will generate a GeoRSS feed. This is what I have (it works perfectly, I would just like some critique as to what I could do different / more efficiently / safer): class RSS { public $channel_title; public $chann...