/* * @license * Copyright 2025 Google LLC. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ /* * Always set the map height explicitly to define the size of the div element * that contains the map. */ html, map { height: 100%; } body { height: 100%; margin: 0; padding: 0; } .toggleButton { background: rgb(235, 235, 235); color: black; border: none; padding: 10px 20px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; border-radius: 4px; cursor: pointer; position: fixed; bottom: 10px; left: 50%; transform: translateX(-50%); z-index: 1000; } .toggleButton:hover { background-color: #007bff; color: white; }