new SuperMap.Format.GeoJSON(options)
Name | Type | Description | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object |
可选
参数。
|
Extends
Members
-
dataObject
-
当 keepData 属性设置为 true,这是传递给 read 操作的要被解析的字符串。
-
ignoreExtraDimsboolean
-
忽略维度超过 2 的几何要素。
- Default Value: true
indentstring
用于格式化输出,indent 字符串会在每次缩进的时候使用一次。
- Default Value: " "
keepDataObject
保持最近读到的数据的引用(通过 属性)。
levelinteger
用于格式化输出, 表示的是缩进级别。
nativeJSONboolean
判断浏览器是否原生支持 JSON 格式数据。
newlinestring
用于格式化输出, newline 字符串会用在每一个名值对或数组项末尾。
- Default Value: "\n"
prettyboolean
是否在序列化的时候使用额外的空格控制结构。在 write 方法中使用。
serialize
提供一些类型对象转 JSON 字符串的方法。
spacestring
用于格式化输出,space 字符串会在名值对的 ":" 后边添加。
- Default Value: " "
Methods
-
inherited destroy()
common/format/Format.js, line 38 -
销毁该格式类,释放相关资源。
-
fromGeoJSON(json, type, filter){Object}
common/format/GeoJSON.js, line 496 -
将 GeoJSON 对象或者GeoJSON 对象字符串转换为iServer Feature JSON。
Name Type Default Description json
GeoJSONObject GeoJSON 对象。
type
string 'FeaureCollection' 可选 可选的字符串,它决定了输出的格式。支持的值有:"Geometry","Feature",和 "FeatureCollection",如果此值为null。
filter
function 对象中每个层次每个键值对都会调用此函数得出一个结果。每个值都会被 filter 函数的结果所替换掉。这个函数可被用来将某些对象转化成某个类相应的对象,或者将日期字符串转化成Date对象。
- Version:
- 9.1.1
Returns:
Type Description Object iServer Feature JSON。 -
read(json, type, filter){Object}
common/format/GeoJSON.js, line 405 -
将 GeoJSON 对象或者GeoJSON 对象字符串转换为 SuperMap Feature 对象。
Name Type Default Description json
GeoJSONObject GeoJSON 对象。
type
string 'FeaureCollection' 可选 可选的字符串,它决定了输出的格式。支持的值有:"Geometry","Feature",和 "FeatureCollection",如果此值为null。
filter
function 对象中每个层次每个键值对都会调用此函数得出一个结果。每个值都会被 filter 函数的结果所替换掉。这个函数可被用来将某些对象转化成某个类相应的对象,或者将日期字符串转化成Date对象。
Returns:
Type Description Object 返回值依赖于 type 参数的值。 -如果 type 等于 "FeatureCollection",返回值将会是 SuperMap.Feature.Vector 数组。 -如果 type 为 "Geometry",输入的 JSON 对象必须表示一个唯一的几何体,然后返回值就会是 SuperMap.Feature.Geometry。 -如果 type 为 "Feature",输入的 JSON 对象也必须表示的一个要素,这样返回值才会是 SuperMap.Feature.Vector。 -
toGeoJSON(obj){GeoJSONObject}
common/format/GeoJSON.js, line 515 -
将 iServer Feature JSON 对象转换为 GeoJSON 对象。
Name Type Description obj
Object iServer Feature JSON。
- Version:
- 9.1.1
Returns:
Type Description GeoJSONObject GeoJSON 对象。 -
write(obj, pretty){GeoJSONObject}
common/format/GeoJSON.js, line 486 -
iServer Geometry JSON 对象 转 GeoJSON对象字符串。
Name Type Default Description obj
Object iServer Geometry JSON 对象。
pretty
boolean false 可选 是否使用换行和缩进来控制输出。
Returns:
Type Description GeoJSONObject 一个 GeoJSON 字符串,它表示了输入的几何对象,要素对象,或者要素对象数组。