37 lines
1.4 KiB
C#
37 lines
1.4 KiB
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="InfoPlaceRedPinModel.cs" company="BTU/IIT">
|
|
// The MIT License (MIT). Copyright (c) 2013 BTU/IIT.
|
|
// </copyright>
|
|
// <author>Stubbfel</author>
|
|
// <date>14.10.2013</date>
|
|
// <summary>Implements the information place red pin model class</summary>
|
|
//-----------------------------------------------------------------------
|
|
namespace CampusAppWP8.Model.Campusmap.Pin
|
|
{
|
|
using CampusAppWP8.Resources;
|
|
using CampusAppWPortalLib8.Model.Campusmap.Pin;
|
|
using CampusAppWPortalLib8.Model.Utility;
|
|
|
|
/// <summary> A data Model for the information place red pin. </summary>
|
|
/// <remarks> Stubbfel, 14.10.2013. </remarks>
|
|
/// <seealso cref="T:CampusAppWP8.Model.Campusmap.InfoPlacePinModel"/>
|
|
public class InfoPlaceRedPinModel : InfoPlacePinModel
|
|
{
|
|
#region Constructor
|
|
|
|
/// <summary> Initializes a new instance of the InfoPlaceRedPinModel class. </summary>
|
|
/// <remarks> Stubbfel, 14.10.2013. </remarks>
|
|
public InfoPlaceRedPinModel()
|
|
{
|
|
this.ImageSource = Icons.PlaceRearchRed;
|
|
this.ImageWidth = 60;
|
|
this.ImageHeight = 60;
|
|
this.PinImageOffsetPoint = new MapPoint(-25, -27);
|
|
this.ZIndex += 1;
|
|
this.Tag = MapPinModel.InfoRedPlacePinString;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|