Class: uGisDescribeFeatureType

ugmp.service.uGisDescribeFeatureType

new ugmp.service.uGisDescribeFeatureType(opt_options){jQuery.Deferred}

WFS DescribeFeatureType 객체.

OGC 표준의 WFS DescribeFeatureType 서비스를 요청하는 객체.

Name Type Description
opt_options Object
Name Type Description
version String

요청 버전. Default is 1.1.0.

useProxy Boolean

프록시 사용여부. Default is true.

serviceURL String

서비스 URL. Default is "".

dataViewId String

View ID. Default is "".

Returns:
jQuery.Deferred.
Example
var ugDescribeFeatureType = new ugmp.service.uGisDescribeFeatureType( {
	useProxy : true,
	version : '1.1.0',
	serviceURL : 'url',
	dataViewId : ugMap.getDataViewId(),
	typeName : 'LAYER_NAME'
} );

ugDescribeFeatureType.then( function(res_) {
	if ( res_.state ) {
		console.log( res_.data );
	}
} );