Returns true if the given longitude is between -180 and 180 (inclusive).
true
longitude
static bool isValidLongitude(double longitude) => longitude >= -180.0 && longitude <= 180.0;