root/tools/routingservice/branches/wrs-2.0/data/templates/geocode/geocode_georss_gml.st

Revision 317, 0.7 KB (checked in by anton, 19 months ago)

Geocoder API changed

Line 
1<?xml version="1.0" encoding="utf-8"?>
2<feed xmlns="http://www.w3.org/2005/Atom"
3                xmlns:georss="http://www.georss.org/georss"
4                xmlns:gml="http://www.opengis.net/gml">
5                       
6        <title></title>
7        <subtitle></subtitle>
8        <link href="http://this-request-url"/>
9        <updated>2005-12-13T18:30:02Z</updated>
10       
11        <author>
12                <name></name>
13                <email></email>
14        </author>
15        <id>http://this-request-url</id>
16
17$parameters:{ p |       
18        <entry>
19                <title></title>
20                <link href="$p.url$"/>
21                <id>$p.url$</id>
22                <updated>2005-08-17T07:02:32Z</updated>
23                <summary>$p.address$</summary>
24               
25                <georss:where>
26                        <gml:Point gml:id="p21" srsName="EPSG:$p.srid$">
27                                <gml:pos dimension="2">$p.point$</gml:pos>
28                        </gml:Point>
29                </georss:where>
30        </entry>
31}$
32</feed>
Note: See TracBrowser for help on using the browser.