using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace MoonExp.Models
{
///
/// XYZ参数
///
public class XYZArgs
{
public XYZArgs()
{
srids = new List();
zs = new List();
ids = new List();
isNew = true;
}
///
/// 令牌
///
public string token { set; get; }
///
/// 名称
///
public string name { set; get; }
///
/// 用户ID
///
public int userId { set; get; }
///
/// 地图最小级别
///
public int min { set; get; }
///
/// 地图最大级别
///
public int max { set; get; }
///
/// 无数据
///
public int noData { set; get; }
///
/// 数据目录编码
///
public string dircode { set; get; }
///
/// 单位目录编码
///
public string depcode { set; get; }
///
/// 元数据ID集合
///
public List ids { set; get; }
///
/// 单体模型集合
///
public List models { set; get; }
///
/// 是/否全新发布
///
public bool isNew { set; get; }
///
/// 坐标系ID集合
///
public List srids { set; get; }
///
/// 高度偏移量
///
public List zs { set; get; }
}
}