Our rails app uses Openlayers js and we use a google map layer. The code is like this:
function initMap() {
var googleLayer = new OpenLayers.Layer.Google("Google Map", {numZoomLevels: 18});
var map = new OpenLayers.Map($('map'), { projection: "EPSG:4326", numZoomLevels: maxZoom });
map.addLayer(googleLayer);
map.addControl(new OpenLayers.Control.LayerSwitcher());
}
This works fine in Firefox, Chrome properly. But in Internet Explorer (IE) 8, it doesn't show the layerswitcher. Or rather, when the map is loading, the layerswitcher icon (+ symbol) can be seen. But once the map is fully loaded, the icon disappears. The same thing happens for panzoombar as well.
Can someone tell me why this could be happening?
Thanks, Sridhar