ee.Geometry.MultiPoint.evaluate
Asynchronously retrieves the value of this object from the server and passes it to the provided callback function.
Usage | Returns |
---|
MultiPoint.evaluate(callback) | |
Argument | Type | Details |
---|
this: computedobject | ComputedObject | The ComputedObject instance. |
callback | Function | A function of the form function(success, failure), called when the server returns an answer. If the request succeeded, the success argument contains the evaluated result. If the request failed, the failure argument will contains an error message. |
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."],[[["MultiPoint's `evaluate` function retrieves its value from the server asynchronously."],["The retrieved value is then passed to a user-defined callback function."],["The callback function handles both successful retrieval (using the `success` argument) and failures (using the `failure` argument)."]]],["The `MultiPoint.evaluate` method asynchronously fetches an object's value from the server. It takes a callback function as an argument. This function receives two arguments, `success` and `failure`. If the server request succeeds, `success` will hold the evaluated result. If it fails, `failure` will contain an error message. This action is performed on a `ComputedObject` instance. No return value is specified.\n"]]