jsonUtils

AMD: require(["geoscene/symbols/support/jsonUtils"], (symbolJsonUtils) => { /* 代码 */ });
ESM: import * as symbolJsonUtils from "@geoscene/core/symbols/support/jsonUtils";
Object: geoscene/symbols/support/jsonUtils
起始版本: GeoScene API for JavaScript 4.22

提供用于反序列化 REST API 返回的 JSON 符号对象的实用工具方法。

方法列表

属性 返回值类型 描述 Object
Symbol更多信息

创建相应 Symbol 类的新实例,并使用从 GeoScene 产品生成的 JSON 对象的值对其进行初始化。

更多信息jsonUtils

方法详细说明

fromJSON(json){Symbol}

创建相应 Symbol 类的新实例,并使用从 GeoScene 产品生成的 JSON 对象的值对其进行初始化。传递到输入 json 参数中的对象通常来自对 REST API 中的查询操作的响应或来自其他 GeoScene 产品的 toJSON() 方法。有关何时以及如何使用此功能的详细信息和示例,请参阅指南中的使用 fromJSON() 主题。

从 JSON 对象创建 MarkerSymbolSimpleMarkerSymbol 或 PictureMarkerSymbol 时,可以指定一个属性角度来旋转符号。请注意,JSON 中的角度与 MarkerSymbol.angle 不同。JSON 中的角度遵循传统的 GeoScene 规范,并逆时针旋转,而符号中的角度顺时针旋转。

参数:
json Object

实例的 JSON 表示形式,采用 GeoScene 格式。有关各种输入 JSON 对象的结构示例,请参阅 GeoScene REST API 文档

返回值:
类型 描述
Symbol 返回相应 Symbol 类的新实例。
示例代码:
// The angle=-30 in the JSON will create a symbol rotated -30 degrees counter-clockwise; that is,
// 30 degrees clockwise, which symbol.angle=30 would also produce.
let symbol = jsonUtils.fromJSON({
   "angle": -30,
   "xoffset": 0,
   "yoffset": 0,
   "type": "esriPMS",
   "url": "https://doc.geoscene.cn/resources/images/Symbols/NPS/npsPictograph_0231b.png",
   "width": 18,
   "height": 18
});

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.