GeoServer请求不起作用

时间:2013-06-02 09:40:29

标签: google-api gis openlayers geoserver

我正在尝试将地图添加到我的网页中。 Shapefile在GeoServer上传/发布。请求时,不在网页中显示地图。以下是代码。

<html>
<head>
<script type="text/javascript" src="OpenLayers.js"></script>
<script type="text/javascript">

    var map;

    function init() {
        map = new OpenLayers.Map('map');
        var wms = new OpenLayers.Layer.WMS(
        "OpenLayers WMS",
        "http://localhost:8080/geoserver/New_York_Roads/wms",
        { layers: 'basic' }
        );

        map.addLayers([wms]);
        map.zoomToMaxExtent();
    }

</script>
</head>

<body onload="init()">
<div id="map" style="width: 600px; height: 300px">

</div>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

更改此行:

   map.addLayers([wms]);

到此:

    map.addLayer(wms);

更多信息here