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 this
Object This object.
Methods
-
editFeatures(params, callback)
FeatureService.js, line 148 -
Edit features.
Name Type Description params
SuperMap.EditFeaturesParameters The EditFeaturesParameters class.
callback
RequestCallback 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 params
SuperMap.GetFeaturesByIDsParameters The GetFeaturesByIDsParameters class.
callback
RequestCallback The callback of result data returned by the server side.
resultFormat
SuperMap.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)); }
/**
params
SuperMap.GetFeaturesByBoundsParameters The GetFeaturesByBoundsParameters class.
callback
RequestCallback The callback of result data returned by the server side.
resultFormat
SuperMap.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 params
SuperMap.GetFeaturesByBufferParameters The GetFeaturesByBufferParameters class.
callback
RequestCallback The callback of result data returned by the server side.
resultFormat
SuperMap.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 params
SuperMap.GetFeaturesByGeometryParameters The GetFeaturesByGeometryParameters class.
callback
RequestCallback The callback of result data returned by the server side.
resultFormat
SuperMap.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 params
SuperMap.GetFeaturesBySQLParameters The GetFeaturesBySQLParameters class.
callback
RequestCallback The callback of result data returned by the server side.
resultFormat
SuperMap.DataFormat SuperMap.DataFormat.GEOJSON optional The format of result data.