- 另见:
方法概述
名称 | 返回类型 | 总结 | 对象 | |
---|---|---|---|---|
ColorRamp[] | 更多信息 返回 smartMapping 颜色方案中可用的所有颜色渐变。 | 更多信息 | colorRamps | |
ColorRamp | 更多信息 返回与给定名称匹配的 smartMapping 颜色方案中可用的色带。 | 更多信息 | colorRamps | |
ColorRamp[] | 更多信息 返回与给定标签匹配的 smartMapping 颜色方案中可用的颜色渐变。 | 更多信息 | colorRamps | |
String[] | 更多信息 返回 smartMapping 颜色方案中可用的所有颜色渐变的名称。 | 更多信息 | colorRamps |
方法详述
-
返回 smartMapping 颜色方案中可用的所有颜色渐变。
返回:类型 描述 ColorRamp[] smartMapping 颜色方案中可用的所有颜色渐变的数组。 例如:// returns all color ramps available in the JS API const ramps = colorRamps.all();
// Renders all color ramps as continuous color ramps in the body of the html const ramps = colorRamps.all(); ramps.forEach( ramp => { const colorRamp = symbolUtils.renderColorRampPreviewHTML(ramp.colors, { align: "horizontal" }); body.appendChild(colorRamp); });
-
byName(name){ColorRamp}
-
返回与给定名称匹配的 smartMapping 颜色方案中可用的色带。
参数:name String所需的四色曲线图的名称。
返回:类型 描述 ColorRamp 与给定名称匹配的颜色渐变。 例如:// returns the colors of the Flower Field color ramp const flowerFieldRamp = colorRamps.byName("Flower Field"); const colorRamp = symbolUtils.renderColorRampPreviewHTML(flowerFieldRamp.colors, { align: "horizontal" }); body.appendChild(colorRamp);
-
返回与给定标签匹配的 smartMapping 颜色方案 中可用的颜色渐变。
参数:规范:params Object有关可能传递给此函数的每个参数的详细信息,请参见下表。
详述:optional 提供时,只会返回包含所有匹配标签的坡道。
已知标签: light | dark | reds | yellows | oranges | greens | blues | purples | pinks | browns | grays | bright | subdued | colorblind-friendly | diverging | sequential | categorical | heatmap | 3d
optional 提供时,只会返回缺少所有提供的标签的坡道。
已知标签: light | dark | reds | yellows | oranges | greens | blues | purples | pinks | browns | grays | bright | subdued | colorblind-friendly | diverging | sequential | categorical | heatmap | 3d
返回:类型 描述 ColorRamp[] 与给定标签匹配的颜色渐变。 例子:// returns all bright red color ramps available in the JS API const ramps = colorRamps.byTag({ includedTags: [ "reds", "bright" ] });
-
返回 smartMapping 颜色方案中可用的所有颜色渐变的名称。 任何返回的名称都可用于使用 colorSchemes.getSchemeByName() 或使用 byName() 来查询颜色方案。
返回:类型 描述 String[] smartMapping 颜色方案中可用的所有颜色渐变名称的数组。 例如:// returns all color ramp names available in the JS API const rampNames = colorRamps.names();
类型定义
-
ColorRamp
-
定义用于在图表、渲染器 或 ColorVariable 中可视化数据的颜色渐变。