All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.tsingjyujing.geo.element.immutable.GeoPoint.scala Maven / Gradle / Ivy

There is a newer version: 2.8.9-2.11
Show newest version
package com.github.tsingjyujing.geo.element.immutable

import com.github.tsingjyujing.geo.basic.IGeoPoint

/**
  * Get a immutable geo point
  *
  * @param longitude
  * @param latitude
  */
final case class GeoPoint(longitude: Double, latitude: Double) extends IGeoPoint {

    override def getLongitude: Double = longitude

    override def getLatitude: Double = latitude

    verifyValues

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy