new Mapv(opt_options)
Usage
// 浏览器
<script type="text/javascript" src="https://iclient.supermap.io/dist/openlayers/iclient-ol.js"></script>
<script>
new ol.source.Mapv(opt_options);
</script>
// ES6 Import
import { Mapv } from '@supermapgis/iclient-ol';
new Mapv(opt_options);
openlayers/overlay/Mapv.js, line 12
Name | Type | Description | ||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
opt_options |
Object |
参数。
|
Extends
Methods
-
addData(data, options)
openlayers/overlay/Mapv.js, line 92 -
追加数据。
Name Type Description data
Object 要追加的数据。
options
Object 要追加的值。
-
clearData()
openlayers/overlay/Mapv.js, line 130 -
清除数据。
-
getData(){Mapv.DataSet}
openlayers/overlay/Mapv.js, line 102 -
获取数据。
Returns:
Type Description Mapv.DataSet MapV 数据集。 -
removeData(filter)
openlayers/overlay/Mapv.js, line 114 -
删除符合过滤条件的数据。
Name Type Description filter
function 过滤条件。条件参数为数据项,返回值为 true,表示删除该元素;否则表示不删除。
Example
filter=function(data){ if(data.id=="1"){ return true } return false; }
-
update(options)
openlayers/overlay/Mapv.js, line 139 -
更新数据。
Name Type Description options
Object 待更新的数据。
Name Type Description data
Object mapv 数据集。