2011년 12월 30일 금요일

[ActiveX] Install Check (설치여부 체크)


     ActiveX가 사양기술이지만 웹개발 하다보면 만들진 않아도 사용은 할 수 밖에 없지


    <object id="objActiveX" onerror="activeXError()"></object>

    <script language="javascript" type="text/javascript">
        var isActiveXInstall;
        function activeXError() {
            isActiveXInstall = false;
        }
    </script>

2011년 12월 24일 토요일

[GoogleAPI] MapTypeId 종류

Google Maps Javascript API V3 Map Types

기본제공 지도형태

MapTypeId.ROADMAP
     - displays the default road map view
MapTypeId.SATELLITE
     - displays Google Earth satellite images
MapTypeId.HYBRID
     - displays a mixture of normal and satellite views
MapTypeId.TERRAIN
     - displays a physical map based on terrain information.


링크

2011년 12월 21일 수요일