viewof inputOptions = inputs({
title: "Options",
className: "inputs",
inputs: {
units: select({
title: "units",
options: ["degrees", "radians", "miles", "kilometers"],
value: "kilometers",
description: "in which maxDistance is<br> expressed, default: kilometers"
}),
mutate: checkbox({
title: "mutate",
options: [""],
value: "mutate",
description: "Allows GeoJSON input<br> to be mutated, default :false"
}),
minPoints: slider({
title: "minPoints",
min: 1,
max: 20,
step: 1,
value: 3,
description:
"Minimum number of points to generate a single<br> cluster, points which do not meet this requirement<br> will be classified as an 'edge' or 'noise'. default: 3"
})
}
})