﻿
Type.registerNamespace("CK");

CK.VEMapArgs = function(divID, center, zoomlevel, style, fixed, mode, dashsize, progressDivId) {
   /// <summary>
   ///   Virtual Earth Arguments
   /// </summary>
   /// <param name="divID">The ID of the div to create the map</param>
   /// <param name="center">The centre of the initial map view - type VELatLong</param>
   /// <param name="zoomlevel">The initial zoom level 1-19</param>
   /// <param name="style">The map style - type VEMapStyle</param>
   /// <param name="fixed">Is the map fixed = not interactive</param>
   /// <param name="mode">The map mode - type VEMapMode</param>
   /// <param name="dashsize">The map dashboard size - type VEDashboardSize </param>
   
    this.DivID = divID;
    this.Center = center;
    this.Zoomlevel = zoomlevel;
    this.Style = style;
    this.Fixed = fixed;
    this.Dashsize = dashsize;
    this.ProgressDivID = progressDivId;
}

CK.VEMapArgs.registerClass('CK.VEMapArgs');

if (typeof(Sys) !== "undefined") Sys.Application.notifyScriptLoaded();


