Announcement: On
November 13, 2024, all users will need to
use a Cloud project in order to access Earth Engine. After this date, continued individual access without a Cloud project will require
an exception.
ui.Checkbox
A checkbox with a label.
Usage | Returns | ui.Checkbox(label, value, onChange, disabled, style) | ui.Checkbox |
Argument | Type | Details | label | String, optional | The checkbox's label. Defaults to an empty string. |
value | Boolean, optional | Whether the checkbox is checked. A null value indicates that the checkbox is in an indeterminate state. Defaults to false. |
onChange | Function, optional | A callback to fire when the value of the checkbox changes. The callback is passed a boolean indicating whether the checkbox is now checked and the checkbox widget. |
disabled | Boolean, optional | Whether the checkbox is disabled. Defaults to false. |
style | Object, optional | An object of allowed CSS styles with their values to be set for this widget. See style() documentation. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["Create checkboxes with labels using the `ui.Checkbox()` function, customizable with arguments like `label`, `value`, `onChange`, `disabled`, and `style`."],["The `value` argument accepts a boolean (checked/unchecked) or a null value to represent an indeterminate state."],["Utilize the `onChange` callback function to respond to changes in the checkbox's state."],["Customize the appearance using the `style` argument to apply CSS styles."]]],[]]