[4] コントロールボタンの削除
以下のテーブル要素は画面上部の拡大・縮小・操作モード変更・通信状態を表示する為のものです。このテーブルを削除すると、画面上部コントロールボタンを削除できます。 各ボタンのレイアウトを変える場合は、対応するinputタグを移動します。
<table>
<tr>
<th style="padding:3">
拡大
<input type="button" onClick="onZoomButton(2,this)" value="x2">
<input type="button" onClick="onZoomButton(5,this)" value="x5">
<input type="button" onClick="onZoomButton(10,this)" value="x10">
</th>
<th>
縮小
<input type="button" onClick="onZoomButton(0.5,this)" value="1/2">
<input type="button" onClick="onZoomButton(0.2,this)" value="1/5">
<input type="button" onClick="onZoomButton(0.1,this)" value="1/10">
</th>
<th>
モード
<input type="button" id="moveModeBtn" onClick="onSetMode('rss',this)" value="移動" style="color:#ff0000">
<input type="button" onClick="onSetMode('info2',this)" value="情報取得">
</th>
<th style="width:200;text-align:left">
状態:<span id="status1" >待機</span>
</th>
</tr>
</table>
▲