-
Notifications
You must be signed in to change notification settings - Fork 128
Uncategorized: moved articles from the uncategorized folder to various aspect of the document tree. #438
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
mrdavidorok
wants to merge
15
commits into
main
Choose a base branch
from
davidorok/uncategorized
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Uncategorized: moved articles from the uncategorized folder to various aspect of the document tree. #438
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
1761c49
moved articles from the uncategorized folder to various aspect of doc…
mrdavidorok 57b7670
updated content, consolidated and reorganized the articles
mrdavidorok 5fa6aa0
abridged files from new standlone articles and placed them in suitabl…
mrdavidorok 6133e9a
updated assets
mrdavidorok b9380c2
fixed build issues by correcting the internal links
mrdavidorok 6a1cff4
Merge remote-tracking branch 'refs/remotes/origin/main' into davidoro…
PoojaB26 1794577
Update docs/intro/ff-ui/builder.md
mrdavidorok c4b147a
fixed slugs, resolved issues mentioned in the conversation on github.
mrdavidorok e251849
Merge branch 'davidorok/uncategorized' of https://github.com/FlutterF…
mrdavidorok 5e4c3b2
updated content. deleted repeated articles. updated slug.
mrdavidorok bb1c731
updated assets, updated content, repositioned content
mrdavidorok 8271d1d
updated content, updated assets, repositioned content
mrdavidorok 928d310
Merge branch 'davidorok/uncategorized' of https://github.com/FlutterF…
mrdavidorok 7bc0f7c
updated content, merged articles, updated asset
mrdavidorok 400e143
moved one of the articles in notification folder in troubleshooting t…
mrdavidorok File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 8 additions & 2 deletions
10
docs/ff-integrations/maps/convert-device-location-to-address.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| --- | ||
mrdavidorok marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| slug: /integrations/maps/geocoding | ||
| title: Geocoding in FlutterFlow | ||
| keywords: ['geocoding', 'reverse geocoding', 'maps', 'location', 'address'] | ||
| --- | ||
|
|
||
| # Geocoding in FlutterFlow | ||
|
|
||
| **Geocoding** is the process of converting between human-readable addresses (like “1600 Amphitheatre Parkway, Mountain View, CA”) and geographic coordinates (latitude and longitude). | ||
|
|
||
| FlutterFlow supports geocoding through **custom API calls** and **custom code actions**, giving you flexibility to choose the approach that works best for your app. | ||
|
|
||
| **Types of Geocoding** | ||
|
|
||
| There are two common types of geocoding: | ||
|
|
||
| 1. **Forward Geocoding** | ||
| Converting an address into geographic coordinates. | ||
| *Example:* `"Paris, France"` → `(48.8566, 2.3522)` | ||
|
|
||
| 2. **Reverse Geocoding** | ||
| Converting geographic coordinates into an address. | ||
| *Example:* `(37.4221, -122.0841)` → `"1600 Amphitheatre Parkway, Mountain View, CA"` | ||
|
|
||
| **Approaches in FlutterFlow** | ||
|
|
||
| You can implement geocoding in FlutterFlow in two main ways: | ||
|
|
||
| 1. **Google Maps Geocoding API** | ||
|
|
||
| - Uses the official Google Maps API for reliable, global geocoding. | ||
| - Requires a Google Cloud project and API key. | ||
| - Works via a standard API Call in FlutterFlow. | ||
| - Best for: | ||
| - Apps with existing Google Maps integrations. | ||
| - Large-scale or high-accuracy location services. | ||
|
|
||
| See: **[Google Maps Geocoding API Documentation](https://developers.google.com/maps/documentation/geocoding)** | ||
|
|
||
| 2. **`geocoding` Dart Package (Custom Code)** | ||
|
|
||
| - Uses Flutter’s [`geocoding`](https://pub.dev/packages/geocoding) package for native geocoding. | ||
| - Works entirely offline for some lookups (depending on platform and data availability). | ||
| - Implemented via a custom action in FlutterFlow. | ||
| - Best for: | ||
| - Apps that don’t want to rely on external APIs. | ||
| - Simpler geocoding needs. | ||
|
|
||
| :::tip[Related Guides] | ||
| - [Convert Device Location to Address](/convert-device-location-to-address) — Step-by-step guide for reverse geocoding a device’s coordinates. | ||
| - (Coming soon) Forward Geocoding with FlutterFlow — Learn how to convert an address into coordinates. | ||
| ::: | ||
|
|
||
|
|
||
| :::tip | ||
| If your app already uses Google Maps for displaying locations, the Google API method will be the most seamless. If you want a code-based approach that avoids API calls, the `geocoding` package is a good alternative. | ||
| ::: | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...control-flow/backend-logic/backend-query/update-user-record-from-email-input.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 0 additions & 22 deletions
22
...yment-publishing/exporting-code/import_modified_source_code_into_flutterflow.md
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
docs/testing-deployment-publishing/publishing/apple-appstore-deployment.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
docs/testing-deployment-publishing/publishing/deploy-for-environment.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
docs/testing-deployment-publishing/publishing/deploy-from-github.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
docs/testing-deployment-publishing/publishing/google-playstore-deployment.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
docs/testing-deployment-publishing/publishing/pre-checks-publishing.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...de/clear_database_before_running_tests.md → ...pp/clear_database_before_running_tests.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
docs/testing-deployment-publishing/running-your-app/local-run.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
docs/testing-deployment-publishing/running-your-app/run-your-app.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.