﻿/*
'*********************************************************************************
'   ©2007 CamSoft Data Systems, Inc. (www.camsoftdata.com)
'---------------------------------------------------------------------------------
'   FILE NAME:      RealtyLogic.MapSearch.MapArgs.js
'   DESCRIPTION:    Javascript functions that support the initialization of the map 
'                   See: http://ajax.asp.net/docs/ClientReference/default.aspx
'---------------------------------------------------------------------------------
'   MODIFICATIONS/NOTES:
'   NAME                DATE            DESCRIPTION
'   Wayne Losavio       07/12/2007      initial development
'*********************************************************************************
*/
Type.registerNamespace("RealtyLogic.MapSearch");

RealtyLogic.MapSearch.MapArgs = function(divID, center, zoomlevel, style, fixed, mode, scale) {
   /// <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>
   
    this.DivID = divID;
    this.Center = center;
    this.Zoomlevel = zoomlevel;
    this.Style = style;
    this.Fixed = fixed;
    this.Scale = scale;
}

RealtyLogic.MapSearch.MapArgs.registerClass('RealtyLogic.MapSearch.MapArgs');

if (typeof(Sys) !== "undefined") Sys.Application.notifyScriptLoaded();


