new FeatureService(url, options)
Usage
// 浏览器
<script type="text/javascript" src="https://iclient.supermap.io/dist/leaflet/iclient-leaflet.js"></script>
<script>
new L.supermap.FeatureService(url, options);
// 弃用的写法
L.supermap.featureService(url, options);
</script>
// ES6 Import
import { FeatureService } from '@supermap/iclient-leaflet';
new FeatureService(url, options);
leaflet/services/FeatureService.js, line 14
Name | Type | Description | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
url |
string |
服务地址。 |
||||||||||||||||||||
options |
Object |
参数。
|
Example
new FeatureService(url)
.getFeaturesByIDs(param,function(result){
//doSomething
})
Extends
Events
-
inherited destroy
leaflet/services/ServiceBase.js, line 52 -
资源释放成功后触发。
Properties:
Name Type Description this
ServiceBase this 对象。
-
inherited initialized
leaflet/services/ServiceBase.js, line 39 -
构造函数构造成功后触发。
Properties:
Name Type Description this
ServiceBase this 对象。
Methods
-
inherited destroy()
leaflet/services/ServiceBase.js, line 47 -
释放资源,将引用的资源属性置空。
-
editFeatures(params, callback)
leaflet/services/FeatureService.js, line 101 -
地物编辑服务。
Name Type Description params
EditFeaturesParameters 数据服务中数据集添加、修改、删除参数类。
callback
RequestCallback 回调函数。
-
getFeaturesByBounds(params, callback, resultFormat)
leaflet/services/FeatureService.js, line 53 -
数据集 bounds 查询服务。
Name Type Default Description params
GetFeaturesByBoundsParameters 数据集范围查询参数类。
callback
RequestCallback 回调函数。
resultFormat
DataFormat DataFormat.GEOJSON 可选 返回结果类型。
-
getFeaturesByBuffer(params, callback, resultFormat)
leaflet/services/FeatureService.js, line 65 -
数据集 buffer 查询服务。
Name Type Default Description params
GetFeaturesByBufferParameters 数据集缓冲区查询参数类。
callback
RequestCallback 回调函数。
resultFormat
DataFormat DataFormat.GEOJSON 可选 返回结果类型。
-
getFeaturesByGeometry(params, callback, resultFormat)
leaflet/services/FeatureService.js, line 89 -
数据集几何查询服务类。
Name Type Default Description params
GetFeaturesByGeometryParameters 数据集几何查询参数类。
callback
RequestCallback 回调函数。
resultFormat
DataFormat DataFormat.GEOJSON 可选 返回结果类型。
-
getFeaturesByIDs(params, callback, resultFormat)
leaflet/services/FeatureService.js, line 41 -
数据集 ID 查询服务。
Name Type Default Description params
GetFeaturesByIDsParameters ID 查询参数类。
callback
RequestCallback 回调函数。
resultFormat
DataFormat DataFormat.GEOJSON 可选 返回结果类型。
-
getFeaturesBySQL(params, callback, resultFormat)
leaflet/services/FeatureService.js, line 77 -
数据集 SQL 查询服务。
Name Type Default Description params
GetFeaturesBySQLParameters 数据集 SQL 查询参数类。
callback
RequestCallback 回调函数。
resultFormat
DataFormat DataFormat.GEOJSON 可选 返回结果类型。