open_location_code 1.0.0
open_location_code: ^1.0.0 copied to clipboard
Open Location Codes are short, generated codes that can be used like street addresses, for places where street addresses don't exist.
import 'package:open_location_code/open_location_code.dart';
void main() {
final code = PlusCode.encode(
const LatLng(51.3701125, -10.202665625),
);
print(code);
}