AsGml (type de données geometry)
S’applique à : SQL Server Azure SQL Database Azure SQL Managed Instance
Retourne la représentation GML (Geography Markup Language) d’une instance geometry.
Pour plus d’informations sur le langage GML, consultez la spécification OGC (Open Geospatial Consortium) suivante : OGC Specifications, Geography Markup Language.
Syntaxe
.AsGml ( )
Types de retour
Type de retour SQL Server : xml
Type de retour CLR : SqlXml
Notes
Exemples
L'exemple suivant crée une instance LineString
et utilise AsGML()
pour retourner la description GML de l'instance.
DECLARE @g geometry;
SET @g = geometry::STGeomFromText('LINESTRING(0 0, 0 1, 1 0)', 0)
SELECT @g.AsGml();
Cette méthode retourne la description en tant qu'instance LineString
.
<LineString xmlns="http://www.opengis.net/gml">
<posList>0 0 0 1 1 0</posList></LineString>