Eclipse类型var

时间:2012-03-20 02:48:46

标签: javascript eclipse

我有一些我正在努力实现的代码示例使用类型" var"。 Eclipse并不了解这一点。我在这里错过了什么?为什么Eclipse不知道var是什么?

代码示例:

function initialize() {
    var myLatLng = new google.maps.LatLng(0, -180);

    var myOptions = {
        zoom: 3,
        center: myLatLng,
        mapTypeId: google.maps.MapTypeId.TERRAIN
    };

    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

    var flightPlanCoordinates = [
        new google.maps.LatLng(37.772323, -122.214897),
        new google.maps.LatLng(21.291982, -157.821856),
        new google.maps.LatLng(-18.142599, 178.431),
        new google.maps.LatLng(-27.46758, 153.027892)
    ];
    var flightPath = new google.maps.Polyline({
        path: flightPlanCoordinates,
        strokeColor: "#FF0000",
        strokeOpacity: 1.0,
        strokeWeight: 2
    });

    flightPath.setMap(map);
}

2 个答案:

答案 0 :(得分:1)

您似乎已经检索了一些您尝试放入Java项目的JavaScript代码。两者不一样。

答案 1 :(得分:1)

尝试将此代码写入.js文件或.html或.jsp文件中的<script type="text/javascript">标记内