Here you can find the source of getGeographicPositionFormatter()
Returns the number formatter for the geographical position feature.
public static NumberFormat getGeographicPositionFormatter()
//package com.java2s; import java.text.NumberFormat; public class Main { private static NumberFormat GEO_NUM_FORMATTER = NumberFormat .getNumberInstance();//from w w w .ja v a2 s. com /** * <p>Returns the number formatter for the geographical position feature. * This will format the floating value to the 6th decimal place.</p> * * @return {@link NumberFormat} */ public static NumberFormat getGeographicPositionFormatter() { return GEO_NUM_FORMATTER; } }