Class GeoBoundingBox

java.lang.Object
com.azure.core.models.GeoBoundingBox

public final class GeoBoundingBox extends Object
Represents a geometric bounding box.
  • Constructor Summary

    Constructors
    Constructor
    Description
    GeoBoundingBox(double west, double south, double east, double north)
    Constructs a bounding box.
    GeoBoundingBox(double west, double south, double east, double north, double minAltitude, double maxAltitude)
    Constructs a bounding box.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    double
    The east longitudinal boundary of the bounding box.
    The maximum altitude boundary of the bounding box.
    The minimum altitude boundary of the bounding box.
    double
    The north latitudinal boundary of the bounding box.
    double
    The south latitudinal boundary of the bounding box.
    double
    The west longitudinal boundary of the bounding box.
    int
     
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • GeoBoundingBox

      public GeoBoundingBox(double west, double south, double east, double north)
      Constructs a bounding box.
      Parameters:
      west - West longitudinal boundary.
      south - South latitudinal boundary.
      east - East longitudinal boundary.
      north - North latitudinal boundary.
    • GeoBoundingBox

      public GeoBoundingBox(double west, double south, double east, double north, double minAltitude, double maxAltitude)
      Constructs a bounding box.
      Parameters:
      west - West longitudinal boundary.
      south - South latitudinal boundary.
      east - East longitudinal boundary.
      north - North latitudinal boundary.
      minAltitude - Minimum altitude boundary.
      maxAltitude - Maximum altitude boundary.
  • Method Details

    • getWest

      public double getWest()
      The west longitudinal boundary of the bounding box.
      Returns:
      The west longitudinal boundary.
    • getSouth

      public double getSouth()
      The south latitudinal boundary of the bounding box.
      Returns:
      The south latitudinal boundary.
    • getEast

      public double getEast()
      The east longitudinal boundary of the bounding box.
      Returns:
      The east longitudinal boundary.
    • getNorth

      public double getNorth()
      The north latitudinal boundary of the bounding box.
      Returns:
      The north latitudinal boundary.
    • getMinAltitude

      public Double getMinAltitude()
      The minimum altitude boundary of the bounding box.
      Returns:
      The minimum altitude boundary.
    • getMaxAltitude

      public Double getMaxAltitude()
      The maximum altitude boundary of the bounding box.
      Returns:
      The maximum altitude boundary.
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object