Show / Hide Table of Contents

    Class WfsFeatureTypeInfo

    Inheritance
    System.Object
    WfsFeatureTypeInfo
    Namespace: Mapsui.Providers.Wfs.Utilities
    Assembly: Mapsui.Desktop.dll
    Syntax
    public class WfsFeatureTypeInfo : object

    Constructors

    | Improve this Doc View Source

    WfsFeatureTypeInfo()

    Initializes a new instance of the WfsFeatureTypeInfo class.

    Declaration
    public WfsFeatureTypeInfo()
    | Improve this Doc View Source

    WfsFeatureTypeInfo(String, String, String, String, String)

    Initializes a new instance of the WfsFeatureTypeInfo class.

    Declaration
    public WfsFeatureTypeInfo(string serviceUri, string nsPrefix, string featureTypeNamespace, string featureType, string geometryName)
    Parameters
    Type Name Description
    System.String serviceUri
    System.String nsPrefix

    Use an empty string or 'null', if there is no prefix for the featuretype.

    System.String featureTypeNamespace

    Use an empty string or 'null', if there is no namespace for the featuretype. You don't need to know the namespace of the feature type, if you use the quick geometries option.

    System.String featureType
    System.String geometryName

    The geometry name is the property of the featuretype from which geometry information can be obtained from. Usually this property is called something like 'Shape' or 'geom'. It is absolutely necessary to give this parameter.

    | Improve this Doc View Source

    WfsFeatureTypeInfo(String, String, String, String, String, GeometryTypeEnum)

    Initializes a new instance of the WfsFeatureTypeInfo class.

    Declaration
    public WfsFeatureTypeInfo(string serviceUri, string nsPrefix, string featureTypeNamespace, string featureType, string geometryName, GeometryTypeEnum geometryType)
    Parameters
    Type Name Description
    System.String serviceUri
    System.String nsPrefix

    Use an empty string or 'null', if there is no prefix for the featuretype.

    System.String featureTypeNamespace

    Use an empty string or 'null', if there is no namespace for the featuretype. You don't need to know the namespace of the feature type, if you use the quick geometries option.

    System.String featureType
    System.String geometryName

    The geometry name is the property of the featuretype from which geometry information can be obtained from. Usually this property is called something like 'Shape' or 'geom'. It is absolutely necessary to give this parameter.

    GeometryTypeEnum geometryType

    Specifying the geometry type helps to accelerate the rendering process.

    Properties

    | Improve this Doc View Source

    BBox

    Gets or sets the spatial extent of the featuretype - defined as minimum bounding rectangle.

    Declaration
    public WfsFeatureTypeInfo.BoundingBox BBox { get; set; }
    Property Value
    Type Description
    WfsFeatureTypeInfo.BoundingBox
    | Improve this Doc View Source

    Cs

    Separator for coordinate values (for gml:coordinates)

    Declaration
    public string Cs { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    DecimalDel

    Decimal separator (for gml:coordinates)

    Declaration
    public string DecimalDel { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    FeatureTypeNamespace

    Gets or sets the featuretype namespace. This argument is obligatory for data retrieving, except when using the quick geometries option.

    Declaration
    public string FeatureTypeNamespace { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    Geometry

    Gets or sets information about the geometry of the featuretype. Setting at least the geometry name is obligatory for data retrieving.

    Declaration
    public WfsFeatureTypeInfo.GeometryInfo Geometry { get; set; }
    Property Value
    Type Description
    WfsFeatureTypeInfo.GeometryInfo
    | Improve this Doc View Source

    LableField

    Declaration
    public string LableField { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    Name

    Gets or sets the name of the featuretype. This argument is obligatory for data retrieving.

    Declaration
    public string Name { get; set; }
    Property Value
    Type Description
    System.String

    The name.

    | Improve this Doc View Source

    Prefix

    Gets or sets the prefix of the featuretype and it's nested elements. This argument is obligatory for data retrieving, if the featuretype is declared with a prefix in 'GetCapabilities'.

    Declaration
    public string Prefix { get; set; }
    Property Value
    Type Description
    System.String

    The prefix.

    | Improve this Doc View Source

    ServiceUri

    Gets or sets the service URI for WFS 'GetFeature' request. This argument is obligatory for data retrieving.

    Declaration
    public string ServiceUri { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    SRID

    Gets or sets the spatial reference ID

    Declaration
    public string SRID { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    Ts

    Tuple separator (for gml:coordinates)

    Declaration
    public string Ts { get; set; }
    Property Value
    Type Description
    System.String
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX