﻿
Type.registerNamespace("vdot");

vdot.MapArgs = function(divID, center, zoomlevel, style, fixed, mode, scale, filters, showWeatherTile, type, currentStatus, eventDate) {
	/// <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="filters">string list of item types to be returned from the feeds</param>
	/// <param name="type">String setting for roadconditions,editroutes,tripplanning</param>
	/// <param name="CurrentStatus">string settings to show if feeds are available. valid value is "success" possible values success|manual|reset|failure

	this.DivID = divID;
	this.Center = center;
	this.Zoomlevel = zoomlevel;
	this.Style = style;
	this.Fixed = fixed;
	this.Scale = scale;
	this.showWeatherTile = showWeatherTile;
	this.filters = filters;
	this.type = type;
	this.CurrentStatus = currentStatus;
	this.eventDate = eventDate;
}

vdot.MapArgs.registerClass('vdot.MapArgs');

if (typeof(Sys) !== "undefined") Sys.Application.notifyScriptLoaded();


