lat_lng_to_timezone 0.2.0
lat_lng_to_timezone: ^0.2.0 copied to clipboard
Lat/long to timezone mapper in Dart. Does not require web services or data files
import 'package:lat_lng_to_timezone/lat_lng_to_timezone.dart' as tzmap;
void main() {
// Montreal coordinates
double latitude = 45.5017;
double longitude = -73.5673;
String tz = tzmap.latLngToTimezoneString(latitude, longitude);
print('Montreal is in the $tz time zone.');
}