UpdateMapFileSettingsCommand.cs
941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
namespace Rcs.Application.MessageBus.Commands
{
/// <summary>
/// 更新地图背景图设置命令
/// @author zzy
/// </summary>
public class UpdateMapFileSettingsCommand
{
/// <summary>
/// 地图ID
/// </summary>
public Guid MapId { get; set; }
/// <summary>
/// 透明度(0-1)
/// </summary>
public decimal Opacity { get; set; }
/// <summary>
/// 缩放比例
/// </summary>
public decimal Scale { get; set; }
/// <summary>
/// 旋转角度(-180到180)
/// </summary>
public decimal Rotation { get; set; }
/// <summary>
/// 地图左下角偏移量X
/// </summary>
public decimal OffsetX { get; set; }
/// <summary>
/// 地图左下角偏移量Y
/// </summary>
public decimal OffsetY { get; set; }
}
}