LatLng.java :  » Chat-Messenger » geochat-android » org » instedd » geochat » map » Android Open Source

Android Open Source » Chat Messenger » geochat android 
geochat android » org » instedd » geochat » map » LatLng.java
package org.instedd.geochat.map;

import java.text.DecimalFormat;

public class LatLng {
  
  private final static DecimalFormat format = new DecimalFormat("#.######");
  
  public String lat;
  public String lng;
  
  public LatLng(double lat, double lng) {
    this.lat = format.format(lat);
    this.lng = format.format(lng);
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.