マップに住所検索窓をつけるには、以下のタグを埋め込みます。
--------------------------------------------------------------------------------------------------------------------------------
<form name="address_search_form" onsubmit="address_search_function(this); return false">
<input type="text" name="address" id="address" style="width:300px;">
<input type="submit" value="検 索">
</form>
<div id="search_result"></div>
--------------------------------------------------------------------------------------------------------------------------------
上記のタグを blog/index_map.html の
<!--マップ本体(S)--> から <!--マップ本体(E)--> の間の
<div id="map"> </div>
の記述の上に記載すると住所検索フォームが表示され、住所検索をすることができます。
--------------------------------------------------------------------------------------------------------------------------------
<form name="address_search_form" onsubmit="address_search_function(this); return false">
<input type="text" name="address" id="address" style="width:300px;">
<input type="submit" value="検 索">
</form>
<div id="search_result"></div>
--------------------------------------------------------------------------------------------------------------------------------
上記のタグを blog/index_map.html の
<!--マップ本体(S)--> から <!--マップ本体(E)--> の間の
<div id="map"> </div>
の記述の上に記載すると住所検索フォームが表示され、住所検索をすることができます。