Fetch and return information about this image. Returns: The return contents vary but will include at least: bands - Array containing metadata about the bands in the image, properties - Dictionary containing the image's metadata properties.
(self)
| 131 | |
| 132 | # pylint: disable-next=useless-parent-delegation |
| 133 | def getInfo(self) -> Any | None: |
| 134 | """Fetch and return information about this image. |
| 135 | |
| 136 | Returns: |
| 137 | The return contents vary but will include at least: |
| 138 | bands - Array containing metadata about the bands in the image, |
| 139 | properties - Dictionary containing the image's metadata properties. |
| 140 | """ |
| 141 | return super().getInfo() |
| 142 | |
| 143 | def getMapId(self, vis_params: Any | None = None) -> dict[str, Any]: |
| 144 | """Fetch and return a map ID dictionary, suitable for use in a Map overlay. |
no outgoing calls