new ugmp.service.uGisGetFeature(opt_options){jQuery.Deferred}
WFS getFeature 서비스 객체.
OGC 표준의 WFS getFeature 서비스를 요청하는 객체.
| Name | Type | Description | |||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
opt_options |
Object |
|
Returns:
jQuery.Deferred.Example
var ugFeatures = new ugmp.service.uGisGetFeature( {
useProxy : true,
srsName : 'EPSG:3857',
maxFeatures : 100,
typeName : 'world_country',
serviceURL : 'http://mapstudio.uitgis.com/ms/wfs?KEY=key',
filter : new ol.format.filter.like( 'NAME', 'South*' )
} );
ugFeatures.then( function(res) {
console.log( res.features );
} );
OpenLayers - uGisMapPlatForm API