├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example ├── .flutter-plugins-dependencies ├── advanced_example.dart ├── basic_example.dart ├── pubspec.lock ├── pubspec.yaml └── search_map_place_example.gif ├── lib ├── search_map_place.dart └── src │ ├── geocoding.dart │ ├── geolocation.dart │ ├── place.dart │ ├── placeType.dart │ └── searchMapPlaceWidget.dart ├── pubspec.lock └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/README.md -------------------------------------------------------------------------------- /example/.flutter-plugins-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/example/.flutter-plugins-dependencies -------------------------------------------------------------------------------- /example/advanced_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/example/advanced_example.dart -------------------------------------------------------------------------------- /example/basic_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/example/basic_example.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/search_map_place_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/example/search_map_place_example.gif -------------------------------------------------------------------------------- /lib/search_map_place.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/lib/search_map_place.dart -------------------------------------------------------------------------------- /lib/src/geocoding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/lib/src/geocoding.dart -------------------------------------------------------------------------------- /lib/src/geolocation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/lib/src/geolocation.dart -------------------------------------------------------------------------------- /lib/src/place.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/lib/src/place.dart -------------------------------------------------------------------------------- /lib/src/placeType.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/lib/src/placeType.dart -------------------------------------------------------------------------------- /lib/src/searchMapPlaceWidget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/lib/src/searchMapPlaceWidget.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bernardi23/search_map_place/HEAD/pubspec.yaml --------------------------------------------------------------------------------