├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example ├── main.dart └── pubspec.yaml ├── lib ├── geopoint.dart └── src │ └── models │ ├── geopoint.dart │ └── geoserie.dart ├── pubspec.yaml └── test ├── geopoint_test.dart └── geoserie_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/geopoint/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/geopoint/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/geopoint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/geopoint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/geopoint/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/geopoint/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/geopoint/HEAD/example/main.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/geopoint/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /lib/geopoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/geopoint/HEAD/lib/geopoint.dart -------------------------------------------------------------------------------- /lib/src/models/geopoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/geopoint/HEAD/lib/src/models/geopoint.dart -------------------------------------------------------------------------------- /lib/src/models/geoserie.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/geopoint/HEAD/lib/src/models/geoserie.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/geopoint/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/geopoint_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/geopoint/HEAD/test/geopoint_test.dart -------------------------------------------------------------------------------- /test/geoserie_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synw/geopoint/HEAD/test/geoserie_test.dart --------------------------------------------------------------------------------