Hi All,
<br/>
I am using Latest openlayer version
<br/>
I have a WMS Layers
<br/>
My problem is overview map
<br/>
it's show only a blue
<br/><br/>
<img src="http://osgeo-org.1560.x6.nabble.com/file/t378106/Blue_Page.png" border="0"/>
<br/><br/>
var projection = new ol.proj.Projection({<br/>
code: 'EPSG:4326',<br/>
units: 'degrees',<br/>
axisOrientation: 'neu',<br/>
global: true<br/>
});<br/>
var map = new ol.Map({<br/>
controls: ol.control.defaults({<br/>
attribution: false<br/>
}).extend([mousePositionControl]),<br/>
target: 'map',<br/>
layers: [<br/>
untiled,<br/>
tiled<br/>
],<br/>
view: new ol.View({<br/>
projection: projection<br/>
})<br/>
});<br/>
Map_Overview = new ol.control.OverviewMap({<br/>
projection: projection,<br/>
layers : [new ol.layer.Tile({<br/>
source: new ol.source.OSM()<br/>
})]<br/>
});<br/>
map.addControl(Map_Overview);<br/>
<br/><hr align="left" width="300" />
Sent from the <a href="http://osgeo-org.1560.x6.nabble.com/OpenLayers-Users-f3910695.html">OpenLayers Users mailing list archive</a> at Nabble.com.<br/>