界面
数据
new Data()
实例化
返回:
- 实例化Data对象
详情:
实例化
Data
对象,可以调用数据模块中的方法示例:
js
import KAPI from '@ibrucekong/kapi'
const kapi = await KAPI.build('Your Auth Token')
const scene = new kapi.Scene('kapi-container', { server: 'Your Service URL' } )
const data = new kapi.Data()
console.log(data)
parseGeoJSON()
添加GeoJSON数据
参数:
{FileList} fileList 原生的<input type='file' multiple accept=".json">中的fileList结果
{String} encoding 编码方式,默认UTF-8
返回:
- 添加GeoJSON数据后的回调
详情:
添加GeoJSON数据
示例:
js
import KAPI from '@ibrucekong/kapi'
const kapi = await KAPI.build('Your Auth Token')
const scene = new kapi.Scene('kapi-container', { server: 'Your Service URL' } )
const data = new kapi.Data()
const json = await data.parseGeoJSON()
console.log(json)