PilotGaea 2D O'view
    正在準備搜尋索引...

    函數 toStringHDMS

    • Format a geographic coordinate with the hemisphere, degrees, minutes, and seconds.

      Example without specifying fractional digits:

      var coord = [7.85, 47.983333];
      var out = ol.coordinate.toStringHDMS(coord);
      // out is now '47° 58′ 60″ N 7° 50′ 60″ E'
      

      Example explicitly specifying 1 fractional digit:

      var coord = [7.85, 47.983333];
      var out = ol.coordinate.toStringHDMS(coord, 1);
      // out is now '47° 58′ 60.0″ N 7° 50′ 60.0″ E'
      

      參數

      • 可選coordinate: Coordinate

        Coordinate.

      • 可選opt_fractionDigits: number

        The number of digits to include after the decimal point. Default is 0.

      回傳 string

      Hemisphere, degrees, minutes and seconds.

      stable