C# 클래스 Mapsui.Providers.Wfs.Utilities.WfsFeatureTypeInfo

파일 보기 프로젝트 열기: pauldendulk/Mapsui 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
WfsFeatureTypeInfo ( )

Initializes a new instance of the WfsFeatureTypeInfo class.

WfsFeatureTypeInfo ( string serviceUri, string nsPrefix, string featureTypeNamespace, string featureType, string geometryName )

Initializes a new instance of the WfsFeatureTypeInfo class.

WfsFeatureTypeInfo ( string serviceUri, string nsPrefix, string featureTypeNamespace, string featureType, string geometryName, GeometryTypeEnum geometryType )

Initializes a new instance of the WfsFeatureTypeInfo class.

메소드 상세

WfsFeatureTypeInfo() 공개 메소드

Initializes a new instance of the WfsFeatureTypeInfo class.
public WfsFeatureTypeInfo ( )

WfsFeatureTypeInfo() 공개 메소드

Initializes a new instance of the WfsFeatureTypeInfo class.
public WfsFeatureTypeInfo ( string serviceUri, string nsPrefix, string featureTypeNamespace, string featureType, string geometryName )
serviceUri string
nsPrefix string /// Use an empty string or 'null', if there is no prefix for the featuretype. ///
featureTypeNamespace string /// 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. ///
featureType string
geometryName string /// 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. ///

WfsFeatureTypeInfo() 공개 메소드

Initializes a new instance of the WfsFeatureTypeInfo class.
public WfsFeatureTypeInfo ( string serviceUri, string nsPrefix, string featureTypeNamespace, string featureType, string geometryName, GeometryTypeEnum geometryType )
serviceUri string
nsPrefix string /// Use an empty string or 'null', if there is no prefix for the featuretype. ///
featureTypeNamespace string /// 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. ///
featureType string
geometryName string /// 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. ///
geometryType GeometryTypeEnum /// Specifying the geometry type helps to accelerate the rendering process. ///