実行結果

次の例では、線を描画します。

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

ソースコードと解説

線を描画するには、ZDC.Polylineクラスと、ZDC.MapクラスのaddWidget()を利用します。

<!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, pl,
        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: 150,
                tilt: 70
            }
        );

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

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

        /* 線の頂点を作成 */
        var latlons = [];
        latlons.push(new ZDC.LatLon(35.6629732, 139.7659818));
        latlons.push(new ZDC.LatLon(35.6609732, 139.7649818));
        latlons.push(new ZDC.LatLon(35.6629732, 139.7639818));
        latlons.push(new ZDC.LatLon(35.6609732, 139.7629818));

        /* 線を作成 */
        pl = new ZDC.Polyline( latlons,
        {
            strokeWeight: 2,
            strokeColor: '#FF0000' 
        });

        /* 線を地図に追加 */
        map.addWidget(pl);
    };

</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>