Announcement: All noncommercial projects registered to use Earth Engine before April 15, 2025 must verify noncommercial eligibility to maintain Earth Engine access.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[[["\u003cp\u003e\u003ccode\u003eui.util.setTimeout\u003c/code\u003e executes a provided function after a specified delay.\u003c/p\u003e\n"],["\u003cp\u003eIt returns a unique key that can be used with \u003ccode\u003eui.util.clearTimeout\u003c/code\u003e to cancel the scheduled execution.\u003c/p\u003e\n"],["\u003cp\u003eThe delay is defined in milliseconds, controlling the time before the function is triggered.\u003c/p\u003e\n"]]],[],null,["\u003cbr /\u003e\n\nCalls a function after a fixed time delay.\n\n\u003cbr /\u003e\n\nReturns a key that can be passed to ui.util.clearTimeout to remove the timeout.\n\n| Usage | Returns |\n|-----------------------------------|---------|\n| `ui.util.setTimeout(func, delay)` | Number |\n\n| Argument | Type | Details |\n|----------|----------|-------------------------------------------------------------------------------------------------------------------------|\n| `func` | Function | The function to run at the specified interval. |\n| `delay` | Number | The time, in milliseconds (thousandths of a second), the timer should delay before execution of the specified function. |"]]