Add image to openlayers map

2019-02-24 09:26发布

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.

1条回答
我命由我不由天
2楼-- · 2019-02-24 09:49

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...

查看更多
登录 后发表回答