//-----------------------------------------------------------------------
//
// Company copyright tag.
//
// stubbfel
// 24.06.2013
//----------------------------------------------------------------------
namespace CampusAppWPortalLib8.Model.Campusmap
{
using CampusAppWPortalLib8.Model.GeoDb;
using System;
///
/// This Class manage the properties of a Map
///
public class MapModel
{
#region Constructors
///
/// Initializes a new instance of the class.
///
public MapModel(string xmlFilePath)
{
this.LoadSpatials(xmlFilePath);
}
#endregion
#region Property
/// Gets or sets the spatial of the map.
/// The spatial.
public SpsModel Spatial { get; set; }
#endregion
#region Methods
/// Loads the spatial./
/// Stubbfel, 19.08.2013.
protected virtual void LoadSpatials(string xmlFilePath)
{
}
#endregion
}
}