Visualize a Scene Layer with continuous color
This sample shows how to visualize a SceneLayer in 3D, using visual variables to appy a color ramp based on the SceneLayer's attributes.
Yellow features represent buildings constructed prior to 1915 and deep blue features represent a buildings built in or after 2015. The color visual variable is set on the visual variables property of the renderer. The stops
property sets up a color ramp by mapping min and max values to specific colors and interpolating intermediate values. Buildings built between 1915 and 2015 will be assigned a color proportional to the provided min and max colors.
var renderer = new SimpleRenderer({
symbol: new MeshSymbol3D(),
visualVariables: [{
type: "color",
field: "CNSTRCT_YR",
stops: [
{ value: 1915, color: "#FBE789" },
{ value: 2015, color: "#1B90A7" }
]
}]
});
Keep in mind that attributes used in data-driven visualizations with visual variables must be accessible to a SceneLayer's cache. Keeping the number of cached attributes to a minimum improves the performance of the SceneLayer. Therefore it is best practice to be judicious with the attributes you make available through the service cache. See the ArcGIS Pro documenation to learn how to configure cached attributes in a Scene Service.
Additional visualization samples and resources