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