Skip to content

Instantly share code, notes, and snippets.

@RalucaNicola
Created October 18, 2019 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RalucaNicola/370c61a27310126f8ce89211a96c6f31 to your computer and use it in GitHub Desktop.
Save RalucaNicola/370c61a27310126f8ce89211a96c6f31 to your computer and use it in GitHub Desktop.
renderer.visualVariables = [
new OpacityVariable({
valueExpression: "$feature.pred_percent",
stops: [
{ value: 40, opacity: 0.3, label: "< 40%" },
{ value: 70, opacity: 1.0, label: "> 70%" }
]
}),
new SizeVariable({
valueExpression: "$feature.pred_absolute",
minDataValue: 100,
maxDataValue: 15000,
minSize: "10px",
maxSize: "40px"
})
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment