1<!-- Copyright 2020 the V8 project authors. All rights reserved.
2Use of this source code is governed by a BSD-style license that can be
3found in the LICENSE file. -->
4
5<head>
6  <link href="./index.css" rel="stylesheet">
7</head>
8<style>
9  #searchBarInput {
10    width: 200px;
11  }
12</style>
13<div class="panel">
14  <input type="checkbox" id="closer" class="panelCloserInput" checked>
15  <label class="panelCloserLabel" for="closer">▼</label>
16  <h2>Map Panel</h2>
17  <div class="selection">
18    <input type="radio" id="show-all" name="selectionType" value="all">
19    <label for="show-all">All</label>
20    <input type="radio" id="show-timerange" name="selectionType" value="timerange">
21    <label for="show-timerange">Time Range</label>
22    <input type="radio" id="show-selection" name="selectionType" value="selection">
23    <label for="show-selection">Last Selection</label>
24  </div>
25  <h3>All Transitions</h3>
26  <map-transitions id="map-transitions"></map-transitions>
27  <h3>Search Map by Address</h3>
28  <section id="searchBar"></section>
29  <input type="search" id="searchBarInput"></input>
30  <button id="searchBarBtn">Search</button>
31
32  <h3>Details Transitions</h3>
33  <map-transitions id="map-details-transitions"></map-transitions>
34  <h3>Details</h3>
35  <map-details id="map-details"></map-details>
36</div>
37