/* * @license * Copyright 2025 Google LLC. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ /* [START maps_map_drawing_terradraw] */ html, body { height: 100%; margin: 0; padding: 0; font-family: Arial, sans-serif; } #map { height: 100%; width: 100%; } #mode-ui { position: absolute; top: 10px; right: 10px; background: white; padding: 10px; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); z-index: 1000; display: flex; flex-direction: column; } #mode-ui button { margin: 5px 0; cursor: pointer; } .mode-button { width: 30px; height: 30px; border: 1px solid #ccc; background-color: white; padding: 2px; box-sizing: border-box; } .mode-button img { width: 100%; height: 100%; display: block; user-select: none; } /* Active state for shape modes */ .mode-button.active { background-color: #e0e0e0; /* light grey */ } /* Special buttons default state */ #select-mode, #clear-mode, #delete-selected-button, #undo-button, #redo-button, #export-button, #upload-button, #resize-button { background-color: #000000; } /* Special buttons icon default state */ #select-mode img, #clear-mode img, #delete-selected-button img, #undo-button img, #redo-button img, #export-button img, #upload-button img, #resize-button img { filter: brightness(0) invert(1); } /* Special buttons active/click states */ #select-mode.active { background-color: #A9A9A9; /* dark grey */ } #clear-mode:active, #delete-selected-button:active, #undo-button:active, #redo-button:active, #export-button:active, #upload-button:active, #resize-button.active { background-color: #A9A9A9; /* dark grey */ } /* [END maps_map_drawing_terradraw] */