Class Tm

java.lang.Object
com.inavi.mapsdk.geometry.Tm

public class Tm extends Object
TM 좌표를 나타내는 클래스.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final double
    x 좌표.
    final double
    y 좌표.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Tm(double x, double y)
    특정 위치에 대한 GRS80 좌표를 생성합니다.
    Tm(LatLng latLng)
    위경도 좌표로 GRS80 좌표를 생성하는 생성자.
  • Method Summary

    Modifier and Type
    Method
    Description
    TM 좌표를 위경도 LatLng 객체로 반환합니다.
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • x

      public final double x
      x 좌표.
    • y

      public final double y
      y 좌표.
  • Constructor Details

    • Tm

      public Tm(LatLng latLng)
      위경도 좌표로 GRS80 좌표를 생성하는 생성자.
      Parameters:
      latLng - 변환할 위경도 좌표
    • Tm

      public Tm(double x, double y)
      특정 위치에 대한 GRS80 좌표를 생성합니다.
      Parameters:
      x - x 좌표
      y - y 좌표
  • Method Details

    • toLatLng

      public LatLng toLatLng()
      TM 좌표를 위경도 LatLng 객체로 반환합니다.
    • toString

      public String toString()
      Overrides:
      toString in class Object