49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="MapModel.cs" company="BTU/IIT">
|
|
// Company copyright tag.
|
|
// </copyright>
|
|
// <author>stubbfel</author>
|
|
// <sience>24.06.2013</sience>
|
|
//----------------------------------------------------------------------
|
|
namespace CampusAppWPortalLib8.Model.Campusmap
|
|
{
|
|
using CampusAppWPortalLib8.Model.GeoDb;
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// This Class manage the properties of a Map
|
|
/// </summary>
|
|
public class MapModel
|
|
{
|
|
#region Constructors
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="MapModel" /> class.
|
|
/// </summary>
|
|
public MapModel(string xmlFilePath)
|
|
{
|
|
this.LoadSpatials(xmlFilePath);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Property
|
|
|
|
/// <summary>Gets or sets the spatial of the map.</summary>
|
|
/// <value>The spatial.</value>
|
|
public SpsModel Spatial { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
/// <summary>Loads the spatial./</summary>
|
|
/// <remarks>Stubbfel, 19.08.2013.</remarks>
|
|
protected virtual void LoadSpatials(string xmlFilePath)
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|