I am relay new to webGIS and these days i trying to develop webmap using FOSS software. This is my codes of open layers and it is not working.
Geoserver URL
http://localhost:8080/geoserver/sac/wms?service=WMS&version=1.1.0&request=GetMap&layers=sac:Luse&styles=&bbox=105097.8879663402,181965.81598811893,107146.57910105384,183739.10929816443&width=512&height=443&srs=EPSG:5235&format=application/openlayers
Openlayers code
<script type='text/javascript' src='OpenLayers.js'>
</script><script type='text/javascript'>
var map; function init()
{
map = new OpenLayers.Map('map_element', {});
var wms = new OpenLayers.Layer.WMS( 'OpenLayers WMS', 'http://localhost:8080/geoserver/sac/wms',
{layers: 'sac:Luse'},
{}
);
map.addLayer(wms);
if(!map.getCenter()){ map.zoomToMaxExtent(); } }
</script>
</head>
<body onload='init();'>
<div id='map_element' style='width: 500px; height: 500px;'>
</div>
</body>
</html>
What is the problem? Pls help me.
