株式会社CONFRAGEでは、在宅就労支援、トライアル雇用を行っております。
LAMP,LAPP系が得意な方、是非お待ちしております。
| 目次 |
|---|
|
・情報ウィンドウの表示設定 ・サンプルソース ・実行例 |
<body>
<div id="map" style="width: 560px; height: 350px"></div>
<script type="text/javascript">
//<![CDATA[
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(34.73706320900569,135.56582808494568),16);
function disp(){
map.openInfoWindow(new GLatLng(34.73706320900569,135.56582808494568),"");
}
function enable(){
map.enableInfoWindow();
}
function disable(){
map.disableInfoWindow();
}
}
//]]>
</script>
<input type="button" value="情報ウィンドウ表示" onclick="disp();" />
<input type="button" value="表示許可" onclick="enable();" />
<input type="button" value="表示禁止" onclick="disable();" /><br />
</body>