Here is my code for adding a image on openlayers map.
var image = new OpenLayers.Layer.Image(
'Image 1',
'http://belocalat.com/wp-content/plugins/openlayers/data/baselayer-img1.png',
//new OpenLayers.Bounds(27.418100,35.771100,28.388000,36.558500),
new OpenLayers.Size(800,255),
{isBaseLayer: false}
);
map.addLayer(image);
but, i can't display image on openlayers. can anyone give me solution for this ?
Thanks in advance.
i have tried following code and it has worked. check out from fiddle. dont forget to select Image layer from layerswitcher.
var osm = new OpenLayers.Layer.OSM();
var graphic = new OpenLayers.Layer.Image(
'Image',
'http://belocalat.com/wp-content/plugins/openlayers/data/baselayer-img1.png',
new OpenLayers.Bounds(27.418100,35.771100,28.388000,36.558500),
new OpenLayers.Size(800,255),
{numZoomLevels: 3}
);
map.addControl(new OpenLayers.Control.LayerSwitcher());
map.addLayers([osm, graphic]);
map.zoomToExtent(new OpenLayers.Bounds(27.418100,35.771100,28.388000,36.558500));
i hope it helps you...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With