実行結果

次の例では、多角形を描画します。

Your borwser is not supporting object tag. Please use one of the latest browsers.
Go to ./apisample/widget/widget_021.html

ソースコードと解説

多角形を描画するには、ZDC.PolylineクラスのオプションclosePathにtrueを指定します。

<!DOCTYPE html>
<html>
<head>

<meta http-equiv="Content-Type" content="text/html; charset=EUC-JP">
<script src="//api.its-mo.com/v3/webgl-loader?key=JSZddc5111626c8|Zo4wz&ver=bldg_w_tex&api=webgl.js&enc=EUC&force=1" type="text/javascript"></script>
<script type="text/javascript">
    "use strict";
    var map, pg,
        lat = 35.66297325982054, lon = 139.76598186955528;

    function loadMap() {
        map = new ZDC.Map(
            document.getElementById('ZMap'),
            {
                latlon: new ZDC.LatLon(lat, lon),
                zoom: 14.5,
                heading: 155,
                tilt: 70
            }
        );

        /* スケールバーを作成 */
        var scale = new ZDC.ScaleBar();

        /* スケールバーを表示 */
        map.addWidget(scale);

        /* 多角形の頂点を作成 */
        var latlons = [];
        latlons.push(new ZDC.LatLon(lat, lon));
        latlons.push(new ZDC.LatLon(35.66397325982054, 139.76648186955528));
        latlons.push(new ZDC.LatLon(35.66197325982054, 139.76698186955528));


        /* 線を作成。closePath:trueで多角形になる */
        pg = new ZDC.Polyline( latlons, 
        {
            strokeWeight: 2,
            fillColor: '#FF0000',
            closePath: true
        });

        /* 多角形を地図に追加 */
        map.addWidget(pg);
    };

</script>
</head>

<body onload="loadMap();">
    <div id="ZMap" style="border:1px solid #777777; width:750px; height:500px; top:0px; left:20px; position:absolute;"></div>
</body>
</html>