﻿
Type.registerNamespace("Renters");

Renters.MapArgs = function(divID, center, zoomlevel, style, fixed, mode, scale, showSwitch, display, pub) {
    /// <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="scale">The map scale - type VEDistanceUnit</param>
    /// <param name="showSwitch">A Boolean value that specifies whether to show the map mode switch on the dashboard control. 
    /// Optional. Default is true (the switch is displayed</param>


    this.DivID = divID;
    this.Center = center;
    this.Zoomlevel = zoomlevel;
    this.Style = style;
    this.Fixed = fixed;
    this.Scale = scale;
    this.Display = display;
    this.ShowSwitch = showSwitch;
    this.Publication = pub;
    //this.key = "Ar4uHdGy_DiZ-XX_UXF0tOBsqMcUDD0qoQhI1M1aIWm_oaPAlbqWe6V847Aievdl";
};

Renters.MapArgs.registerClass('Renters.MapArgs');

if (typeof (Sys) !== "undefined") { Sys.Application.notifyScriptLoaded(); }



