Java tutorial
//package com.java2s; public class Main { public static double distance(double currentLatitude, double currentLongitude, double compareLatitude, double compareLongitude) { return Math.sqrt( Math.pow(currentLatitude - compareLatitude, 2) + Math.pow(currentLongitude - compareLongitude, 2)); } }