/**
  * Returns North East of theses bounds.
  *
  * @return North East LatLng
  */
 public LatLng getNe() {
   return mNe.clone();
 }
 /**
  * Returns center of theses bounds.
  *
  * @return Center LatLng
  */
 public LatLng getCenter() {
   return mCenter.clone();
 }
 /**
  * Returns South West of theses bounds.
  *
  * @return South West LatLng
  */
 public LatLng getSw() {
   return mSw.clone();
 }