function calculateDistance(glatlng1, glatlng2){
	try {
		return glatlng1.distanceFrom(glatlng2, 6378137).toFixed(1);
	} catch (error) {
	}
}