https://github.com/flet-dev/flet-geolocator
A Flet extension that adds geolocation capabilities to your apps.
https://github.com/flet-dev/flet-geolocator
flet flet-extension flutter geolocator location python
Last synced: 21 days ago
JSON representation
A Flet extension that adds geolocation capabilities to your apps.
- Host: GitHub
- URL: https://github.com/flet-dev/flet-geolocator
- Owner: flet-dev
- License: apache-2.0
- Archived: true
- Created: 2025-01-08T19:50:27.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-12-24T18:29:49.000Z (about 2 months ago)
- Last Synced: 2025-12-26T09:14:29.826Z (about 2 months ago)
- Topics: flet, flet-extension, flutter, geolocator, location, python
- Language: Python
- Homepage: https://flet-dev.github.io/flet-geolocator/
- Size: 778 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# THIS PROJECT HAS BEEN ARCHIVED
`flet-geolocator` is now part of the main [Flet repository](https://github.com/flet-dev/flet/tree/main/sdk/python/packages/flet-geolocator).
# flet-geolocator
[](https://pypi.python.org/pypi/flet-geolocator)
[](https://pepy.tech/project/flet-geolocator)
[](https://github.com/flet-dev/flet-geolocator/blob/main/LICENSE)
Adds geolocation capabilities to your [Flet](https://flet.dev) apps.
Features include:
- Get the last known location;
- Get the current location of the device;
- Get continuous location updates;
- Check if location services are enabled on the device.
It is based on the [geolocator](https://pub.dev/packages/geolocator) Flutter package.
## Documentation
Detailed documentation to this package can be found [here](https://flet-dev.github.io/flet-geolocator/).
## Platform Support
This package supports the following platforms:
| Platform | Supported |
|----------|:---------:|
| Windows | ✅ |
| macOS | ✅ |
| Linux | ✅ |
| iOS | ✅ |
| Android | ✅ |
| Web | ✅ |
## Usage
### Installation
To install the `flet-geolocator` package and add it to your project dependencies:
- Using `uv`:
```bash
uv add flet-geolocator
```
- Using `pip`:
```bash
pip install flet-geolocator
```
After this, you will have to manually add this package to your `requirements.txt` or `pyproject.toml`.
- Using `poetry`:
```bash
poetry add flet-geolocator
```
### Examples
For examples, see [these](./examples).