root/tools/routingservice/trunk/templates/multilinestring_gml.st

Revision 171, 0.6 KB (checked in by anton, 2 years ago)

Output templates

Line 
1<wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs">
2$edges:{ e |
3        <gml:featureMember xmlns:gml="http://www.opengis.net/gml">
4                <feature:features xmlns:feature="http://mapserver.gis.umn.edu/mapserver" fid="$e.id$">
5                        <feature:geometry>
6                                <gml:MultiLineString>
7                                        <gml:lineStringMember>
8                                                <gml:LineString>
9                                                        <gml:coordinates decimal="." cs="," ts="+">
10                                                        $e.edge$
11                                                        </gml:coordinates>
12                                                </gml:LineString>
13                                        </gml:lineStringMember>
14                                </gml:MultiLineString>
15                        </feature:geometry>
16                </feature:features>
17        </gml:featureMember>
18}$
19</wfs:FeatureCollection>
Note: See TracBrowser for help on using the browser.