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>
現在、[マップの再中心化]ボタンは上部にあり、テーブルとマップキャンバスの間にあります。