Posted on: 4/10/2015 7:42:51 AM | Views : 614

hi all
iam trying to display a raster image wish is working in mapserver(mapfile)
but i want to display this using openlayers
just blank page is displaying
my code is
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>My Test MapServer Layer</title> <style type="text/css"> #map { width: 800px; height: 800px; border: 1px solid black; } </style>
<script type="text/javascript" src="http://clients.multimap.com/API/maps/1.1/metacarta_04"></script>
<script src="http://openlayers.org/api/OpenLayers.js"></script> <script type="text/javascript"> var map, layer;
function init() { map = new OpenLayers.Map('map', {units: 'degrees',projection: "EPSG:4326", maxExtent: new OpenLayers.Bounds(74.0159108 ...

Go to the complete details ...