You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var container = document.getElementById('mapContainer');
// calculate available page content height
var footerWrapperHeight = document.getElementById('footerWrapper').offsetHeight;
var height = window.innerHeight - footerWrapperHeight - headerPanel.GetHeight();
// correct height of map container
container.height = height;
}
function onMapInit(s, e) {
AddAdjustmentDelegate(adjustMapContainer); // this delegate method is called when available page content area resized (browser resized, expanded/collapsed left area, etc)