7149623d1f
- Move map stats into a separate panel - Don't handle selection events twice - Simplify map-stats panel html Change-Id: I0cd135727e69c8e42d34af3b75d42861ce06f8e4 Bug: v8:10644 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2485075 Reviewed-by: Sathya Gunasekaran <gsathya@chromium.org> Commit-Queue: Camillo Bruni <cbruni@chromium.org> Cr-Commit-Position: refs/heads/master@{#70717}
22 lines
607 B
HTML
22 lines
607 B
HTML
<!-- Copyright 2020 the V8 project authors. All rights reserved.
|
|
Use of this source code is governed by a BSD-style license that can be
|
|
found in the LICENSE file. -->
|
|
|
|
<head>
|
|
<link href="./index.css" rel="stylesheet">
|
|
</head>
|
|
<style>
|
|
#searchBarInput {
|
|
width: 200px;
|
|
}
|
|
</style>
|
|
<div class="panel">
|
|
<h2>Map Panel</h2>
|
|
<map-transitions id="map-transitions"></map-transitions>
|
|
<h3>Search Map by Address</h3>
|
|
<section id="searchBar"></section>
|
|
<input type="search" id="searchBarInput"></input>
|
|
<button id="searchBarBtn">Search</button>
|
|
<map-details id="map-details"></map-details>
|
|
</div>
|