I'm trying to add one of the included datasets with geoserver to an openlayers map. I've followed the opengeo tutorials, seen similar thread on here, but I can't seem to crack it. Can somebody take a glance at my code and geoserver setup and tell me where i'm going wrong?
Here's my code:
//WMS map
world = new OpenLayers.Layer.WMS("Global Imagery", "http://maps.opengeo.org/geowebcache/service/wms", {
layers : "openstreetmap",
format : "image/png"
});
map.addLayer(world);
//WFS
parks = new OpenLayers.Layer.Vector("WFS", {
strategies : [new OpenLayers.Strategy.BBOX()],
protocol : new OpenLayers.Protocol.WFS({
url : "http://localhost:8081/geoserver/wfs",
featureType : "medford:parks",
featureNS : "http://medford.opengeo.org/medford"
})
});
map.addLayer(parks);
map.zoomToMaxExtent();
GeoServer details: workspace name = medford, Namespace URI = http://medford.opengeo.org For the feature type I have tried "parks" and "medford:parks"
The layer is enabled, advertised and has a 30 feature return limit.
I'm struggling to put a simple map together
Thanks, James