new mapboxgl.supermap.FeatureService(url, options)
| Name | Type | Description | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
url |
string |
The url of service. |
||||||||||||||||||||||||
options |
Object |
The optional parameters.
|
Example
new mapboxgl.supermap.FeatureService(url)
.getFeaturesByIDs(param,function(result){
//doSomething
})
Extends
Events
-
inherited initialized
ServiceBase.js, line 23 -
Triggered after the constructor construct succeeds.
Properties:
Name Type Description thisObject This object.
Methods
-
editFeatures(params, callback)
FeatureService.js, line 148 -
Edit features.
Name Type Description paramsSuperMap.EditFeaturesParameters The EditFeaturesParameters class.
callbackRequestCallback The callback of result data returned by the server side.
-
getFeaturesByBounds(params, callback, resultFormat, params, callback, resultFormat)
FeatureService.js, line 38 -
Get features by bounds.
Name Type Default Description paramsSuperMap.GetFeaturesByIDsParameters The GetFeaturesByIDsParameters class.
callbackRequestCallback The callback of result data returned by the server side.
resultFormatSuperMap.DataFormat DataFormat.GEOJSON optional The format of result data. getFeaturesByIDs(params, callback, resultFormat) { var me = this; var getFeaturesByIDsService = new GetFeaturesByIDsService(me.url, { proxy: me.options.proxy, withCredentials: me.options.withCredentials, serverType: me.options.serverType, eventListeners: { processCompleted: callback, processFailed: callback }, format: me._processFormat(resultFormat) }); getFeaturesByIDsService.processAsync(me._processParams(params)); }
/**paramsSuperMap.GetFeaturesByBoundsParameters The GetFeaturesByBoundsParameters class.
callbackRequestCallback The callback of result data returned by the server side.
resultFormatSuperMap.DataFormat DataFormat.GEOJSON optional The format of result data.
-
getFeaturesByBuffer(params, callback, resultFormat)
FeatureService.js, line 81 -
Get features by buffer.
Name Type Default Description paramsSuperMap.GetFeaturesByBufferParameters The GetFeaturesByBufferParameters class.
callbackRequestCallback The callback of result data returned by the server side.
resultFormatSuperMap.DataFormat DataFormat.GEOJSON optional The format of result data.
-
getFeaturesByGeometry(params, callback, resultFormat)
FeatureService.js, line 126 -
Get features by geometry.
Name Type Default Description paramsSuperMap.GetFeaturesByGeometryParameters The GetFeaturesByGeometryParameters class.
callbackRequestCallback The callback of result data returned by the server side.
resultFormatSuperMap.DataFormat DataFormat.GEOJSON optional The format of result data.
-
getFeaturesBySQL(params, callback, resultFormat)
FeatureService.js, line 103 -
Get features by SQL.
Name Type Default Description paramsSuperMap.GetFeaturesBySQLParameters The GetFeaturesBySQLParameters class.
callbackRequestCallback The callback of result data returned by the server side.
resultFormatSuperMap.DataFormat SuperMap.DataFormat.GEOJSON optional The format of result data.