我是 HTML 新手。我有一张桌子和一张地图画布(Google Maps API)并排。我正在尝试在地图画布下添加一个按钮,以将地图的缩放/中心设置为默认值。问题是我不知道定位它的正确语法。
<body>
<div>
<table border="1", id="myTable", cellpadding="10", style="float:left">
<tr>
<th>Name of Business</th>
<th>Latitude</th>
<th>Longitude</th>
<th>Center Map</th>
</tr>
</table>
<div id="map_canvas" style="float:right;width:1024px;height:600px;border:black">
</div>
<button onclick="map.setCenter(myOptions.center), map.setZoom(9)", style="float:bottom">Recenter Map</button>
</div>
</body>
现在,“重新居中地图”按钮位于顶部,位于表格和地图画布之间。