Show / Hide Table of Contents

    Class GpxBoundingBox

    Represents two lat/lon pairs defining the extent of an element.

    Inheritance
    Object
    GpxBoundingBox
    Inherited Members
    Object.Equals(Object, Object)
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Namespace: NetTopologySuite.IO
    Assembly: NetTopologySuite.IO.GPX.dll
    Syntax
    public sealed class GpxBoundingBox : ICanWriteToXmlWriter
    Remarks

    In the official XSD schema for GPX 1.1, this corresponds to the complex type "boundsType".

    Constructors

    | Improve this Doc View Source

    GpxBoundingBox(GpxLongitude, GpxLatitude, GpxLongitude, GpxLatitude)

    Initializes a new instance of the GpxBoundingBox class.

    Declaration
    public GpxBoundingBox(GpxLongitude minLongitude, GpxLatitude minLatitude, GpxLongitude maxLongitude, GpxLatitude maxLatitude)
    Parameters
    Type Name Description
    GpxLongitude minLongitude

    The value for MinLongitude.

    GpxLatitude minLatitude

    The value for MinLatitude.

    GpxLongitude maxLongitude

    The value for MaxLongitude.

    GpxLatitude maxLatitude

    The value for MaxLatitude.

    Fields

    | Improve this Doc View Source

    EntireWgs84Bounds

    Represents the entire WGS-84 bounds, as near as it can be represented in GPX.

    Declaration
    public static readonly GpxBoundingBox EntireWgs84Bounds
    Field Value
    Type Description
    GpxBoundingBox

    Properties

    | Improve this Doc View Source

    MaxLatitude

    Gets the maximum GpxLatitude value.

    Declaration
    public GpxLatitude MaxLatitude { get; }
    Property Value
    Type Description
    GpxLatitude
    Remarks

    In the official XSD schema for GPX 1.1, this corresponds to the "maxlat" attribute.

    | Improve this Doc View Source

    MaxLongitude

    Gets the maximum GpxLongitude value.

    Declaration
    public GpxLongitude MaxLongitude { get; }
    Property Value
    Type Description
    GpxLongitude
    Remarks

    In the official XSD schema for GPX 1.1, this corresponds to the "maxlon" attribute.

    | Improve this Doc View Source

    MinLatitude

    Gets the minimum GpxLatitude value.

    Declaration
    public GpxLatitude MinLatitude { get; }
    Property Value
    Type Description
    GpxLatitude
    Remarks

    In the official XSD schema for GPX 1.1, this corresponds to the "minlat" attribute.

    | Improve this Doc View Source

    MinLongitude

    Gets the minimum GpxLongitude value.

    Declaration
    public GpxLongitude MinLongitude { get; }
    Property Value
    Type Description
    GpxLongitude
    Remarks

    In the official XSD schema for GPX 1.1, this corresponds to the "minlon" attribute.

    Methods

    | Improve this Doc View Source

    Equals(Object)

    Declaration
    public override bool Equals(object obj)
    Parameters
    Type Name Description
    Object obj
    Returns
    Type Description
    Boolean
    Overrides
    Object.Equals(Object)
    | Improve this Doc View Source

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    Int32
    Overrides
    Object.GetHashCode()
    | Improve this Doc View Source

    ToString()

    Declaration
    public override string ToString()
    Returns
    Type Description
    String
    Overrides
    Object.ToString()
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX