Class: Format

Format

读写各种格式的格式类基类。其子类应该包含并实现read和write方法。

new SuperMap.Format(options)

common/format/Format.js, line 3
Name Type Description
options Object

可选参数。
keepData - {boolean} 如果设置为true, data属性会指向被解析的对象(例如json或xml数据对象)。

Classes

GeoJSON
JSON
WKT

Members

dataObject

属性设置为true,这是传递给操作的要被解析的字符串。

keepDataObject

保持最近读到的数据的引用(通过 属性)。默认值是false。

optionsObject

可选参数。

Methods

destroy()

common/format/Format.js, line 35

销毁该格式类,释放相关资源。

read(data)

common/format/Format.js, line 43

来从字符串中读取数据。

Name Type Description
data string

读取的数据。

write(object){string}

common/format/Format.js, line 52

将对象写成字符串。

Name Type Description
object Object

可序列化的对象。

Returns:
Type Description
string 对象被写成字符串。