/// <summary> Add a new inner point of interest to this polygon  </summary>
        /// <param name="Latitude"> Latitude (expressed in decimal notation) for this point </param>
        /// <param name="Longitude"> Longitude (expressed in decimal notation) for this point </param>
        /// <param name="Label"> Label to associate with this point </param>
        /// <returns> Fully built BriefItem_Coordinate_Point object </returns>
        public BriefItem_Coordinate_Point Add_Inner_Point(double Latitude, double Longitude, string Label)
        {
            BriefItem_Coordinate_Point newPoint = new BriefItem_Coordinate_Point(Latitude, Longitude, Label);

            Inner_Points.Add(newPoint);
            return(newPoint);
        }
 /// <summary> Add a new inner point of interest to this polygon  </summary>
 /// <param name="newPoint"> Built coordinate point object to add </param>
 public void Add_Inner_Point(BriefItem_Coordinate_Point newPoint)
 {
     Inner_Points.Add(newPoint);
 }