ComplexTypegml:PointType
gml:PointType
定義
点を表現するための型。
属性/関連役割
属性/関連役割の名称
属性/関連役割の型 多重度
gml:metaDataProperty
gml:MetaDataPropertyType [0..*]
gml:description
gml:StringOrRefType [0..1]
gml:name
gml:CodeType [0..*]
以下のいずれかを選択
choice
gml:pos
gml:DirectPositionType [1]
gml:coordinates
gml:CoordinatesType [1]
gml:coord
gml:CoordType [1]
XMLスキーマ
<complexType name="PointType">
	<annotation>
		<documentation>A Point is defined by a single coordinate tuple.</documentation>
	</annotation>
	<complexContent>
		<extension base="gml:AbstractGeometricPrimitiveType">
			<sequence>
				<choice>
					<annotation>
						<documentation>GML supports two different ways to specify the direct poisiton of a point. 1. The "pos" element is of type 
						DirectPositionType.</documentation>
					</annotation>
					<element ref="gml:pos"/>
					<element ref="gml:coordinates">
						<annotation>
							<documentation>Deprecated with GML version 3.1.0 for coordinates with ordinate values that are numbers. Use "pos" 
							instead. The "coordinates" element shall only be used for coordinates with ordinates that require a string 
							representation, e.g. DMS representations.</documentation>
						</annotation>
					</element>
					<element ref="gml:coord">
						<annotation>
							<documentation>Deprecated with GML version 3.0. Use "pos" instead. The "coord" element is included for 
							backwards compatibility with GML 2.</documentation>
						</annotation>
					</element>
				</choice>
			</sequence>
		</extension>
	</complexContent>
</complexType>