Given coordinates:
min_lat=25.862491496700553
max_lat=26.358213103705367
min_lng=-80.790159828186
max_lng=-79.78628409576413
Is is possible to determine a radius?
Given coordinates:
min_lat=25.862491496700553
max_lat=26.358213103705367
min_lng=-80.790159828186
max_lng=-79.78628409576413
Is is possible to determine a radius?
"Given [two geographic points] [i]s it possible to determine a radius?"
As asked, no.
A radius is the distance from the center of a circle or sphere to its perimeter. It is used for 2D circles and 3D spheres.
That said, I suspect you may in fact being trying to ask a different question that can be answered.
I would suggest reading Calculate distance, bearing and more between Latitude/Longitude points by Chris Veness and the StackOverflow question here: "How do I calculate distance between two latitude-longitude points?"
If you need a unusually high degree of accuracy (far more than almost everyone using Google Earth needs) you can use the Vincentry Formula which takes into account an ellipsoidal Earth model, as the Earth is not a perfect sphere.
This covered in more detail in the StackOverflow question "Mid point of two point where latitude and longitude given."