我是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>
现在,“Recenter Map”按钮位于表格和地图画布的顶部和中间。
答案 0 :(得分:1)
这与谷歌地图api相关的不。
它的基本HTML。
你应该先尝试谷歌。
无论如何,请在<br>
之后添加div
个中断。
<table border="1", id="myTable",
)style="float:left"
)display: inline-block
。</div>
之后。