Subversion Repositories eFlore/Applications.moissonnage

Compare Revisions

No changes between revisions

Ignore whitespace Rev 33 → Rev 34

/trunk/services/bibliotheque/squelettes/GetFeature.tpl.xml
New file
0,0 → 1,30
<?php echo '<?xml version="1.0" encoding="UTF-8"?>'."\n"; ?>
<wfs:FeatureCollection
xmlns:ms="http://mapserver.gis.umn.edu/mapserver"
xmlns:gml="http://www.opengis.net/gml"
xmlns:wfs="http://www.opengis.net/wfs"
xmlns:ogc="http://www.opengis.net/ogc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://mapserver.gis.umn.edu/mapserver <?php echo Config::get('url_service_base'); ?>wfs?service=wfs&amp;version=1.1.0&amp;request=DescribeFeatureType&amp;typename=<?php echo $listeSources; ?> http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.1.0/wfs.xsd">
<gml:boundedBy>
<gml:Box srsName="EPSG:4326">
<gml:coordinates decimal="." cs="," ts=" "><?=$enveloppe['ouest']?>,<?=$enveloppe['sud']?>,<?=$enveloppe['est']?>,<?=$enveloppe['nord']?></gml:coordinates>
</gml:Box>
</gml:boundedBy>
<?php foreach ($stations as $station) { ?>
<gml:featureMember>
<ms:<?=$station['source']?>>
<ms:coordonnees>
<gml:Point srsName="EPSG:4326">
<gml:coordinates decimal="." cs="," ts=" "><?=$station['longitude']?>,<?=$station['latitude']?></gml:coordinates>
</gml:Point>
</ms:coordonnees>
<ms:nomStation><?=$station['nom_station']?></ms:nomStation>
<ms:precision><?=$station['type_site']?></ms:precision>
<ms:codeInsee><?=$station['code_insee']?></ms:codeInsee>
<ms:departement><?=$station['departement']?></ms:departement>
<ms:taxons><?=$station['taxons']?></ms:taxons>
</ms:<?=$station['source']?>>
</gml:featureMember>
<?php } ?>
</wfs:FeatureCollection>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property