/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License.
 */

/**
 * Represents geographical coordinates.
 */
export interface GeoCoordinates {
  /**
   * The elevation of the location.
   */
  elevation: number
  /**
   * The latitude of the location.
   */
  latitude: number
  /**
   * The longitude of the location.
   */
  longitude: number
  /**
   * The type of the geographical coordinates.
   */
  type: string
  /**
   * The name of the geographical coordinates.
   */
  name: string
}
