I have this scenario where an inline style is applied to the 'map' div setting the width and height to 400?
e.g. <div class="map" style="width: 400px; height: 400px"></div>
This is happening intermittently after new'ing up the esri map:
self.map = new esri.Map("map", {
extent: self.gismapConfig.initialExtent,
logo: true,
infoWindow: popup,
autoResize: true
});
What might cause this??
Thanks