AsterixDisplayAnalyser.GMapMarkerImage.GMapMarkerImage C# (CSharp) Method

GMapMarkerImage() public method

Constructor
public GMapMarkerImage ( GMap.NET.PointLatLng p, Image image ) : System
p GMap.NET.PointLatLng The position of the marker
image Image
return System
        public GMapMarkerImage(PointLatLng p, Image image)
            : base(p)
        {
            img = image;
            Size = img.Size;
            Offset = new System.Drawing.Point(-Size.Width, Size.Height / 7);
        }