root/tools/routingservice/branches/wrs-2.0/data/templates/catch/catch_gml.st

Revision 297, 0.8 KB (checked in by anton, 19 months ago)

XLS and GPX formats support added

Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<gml:FeatureCollection
3        xmlns:gml="http://www.opengis.net/gml"
4        xsi:schemaLocation="http://www.opengis.net/gml http://schemas.opengis.net/gml/3.1.1/profiles/gmlsfProfile/1.0.0/gmlsf.xsd"
5        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
6$parameters:{ p |
7        <gml:featureMember>     
8                <feature:feature xmlns:feature="http://example.com/feature">
9                        <feature:geometry>
10                        <gml:Polygon>
11                                <gml:outerBoundaryIs>
12                                <gml:LinearRing>
13                                <gml:coordinates>
14                                $p.polygon$
15                                </gml:coordinates>
16                                </gml:LinearRing>
17                                </gml:outerBoundaryIs>
18                        </gml:Polygon>
19                        </feature:geometry>
20                        <feature:id>$p.id$</feature:id>
21                </feature:feature>
22        </gml:featureMember>
23}$
24</gml:FeatureCollection>   
Note: See TracBrowser for help on using the browser.