All Projects → aloisdeniel → Flutter_geocoder

aloisdeniel / Flutter_geocoder

Licence: mit
Flutter plugin for forward and reverse geocoding

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Flutter geocoder

Mapbox Gl Geocoder
Geocoder control for mapbox-gl-js using Mapbox Geocoding API
Stars: ✭ 207 (+54.48%)
Mutual labels:  plugin, geocoding
Voicewp
Create Alexa Skills through WordPress
Stars: ✭ 132 (-1.49%)
Mutual labels:  plugin
Vue Facebook Signin Button
A simple plugin to include a custom Facebook sign-in button into your web app.
Stars: ✭ 127 (-5.22%)
Mutual labels:  plugin
Citador
Quote messages on Discord with a simple click
Stars: ✭ 130 (-2.99%)
Mutual labels:  plugin
Elasticsearch Thulac Plugin
thulac analysis plugin for elasticsearch
Stars: ✭ 129 (-3.73%)
Mutual labels:  plugin
Baseelements Plugin
FileMaker Pro plugin used for BaseElements to provide file, dialog and XSLT functions.
Stars: ✭ 130 (-2.99%)
Mutual labels:  plugin
Vue Loaders
Vue + loaders.css
Stars: ✭ 127 (-5.22%)
Mutual labels:  plugin
Vue Good Table
An easy to use powerful data table for vuejs with advanced customizations including sorting, column filtering, pagination, grouping etc
Stars: ✭ 1,824 (+1261.19%)
Mutual labels:  plugin
Plugin.video.catchuptvandmore
Replay, Live TV and websites videos addon for Kodi
Stars: ✭ 131 (-2.24%)
Mutual labels:  plugin
Kui
A hybrid command-line/UI development experience for cloud-native development
Stars: ✭ 2,052 (+1431.34%)
Mutual labels:  plugin
Frequalizer
Equalizer using JUCE new dsp module
Stars: ✭ 130 (-2.99%)
Mutual labels:  plugin
Webpack Plugin Hash Output
Plugin to replace webpack chunkhash with an md5 hash of the final file conent.
Stars: ✭ 128 (-4.48%)
Mutual labels:  plugin
Kk plugins
Plugins for Koikatsu, EmotionCreators, AI Girl, and Honey Select 2
Stars: ✭ 129 (-3.73%)
Mutual labels:  plugin
Nativescript Geolocation
Geolocation plugin to use for getting current location, monitor movement, etc
Stars: ✭ 127 (-5.22%)
Mutual labels:  plugin
Autoenv
Autoenv for zsh
Stars: ✭ 131 (-2.24%)
Mutual labels:  plugin
Webapp Webpack Plugin
[DEPRECATED] use favicons-webpack-plugin instead
Stars: ✭ 127 (-5.22%)
Mutual labels:  plugin
Vue Slide Bar
🎢 A Simple Vue Slider Bar Component.
Stars: ✭ 129 (-3.73%)
Mutual labels:  plugin
Maps Api For Javascript Examples
Self-contained examples for Maps API for JavaScript v3.
Stars: ✭ 130 (-2.99%)
Mutual labels:  geocoding
Coremediaio Dal Example
Apple's CoreMediaIO DAL plugin example - modernized
Stars: ✭ 132 (-1.49%)
Mutual labels:  plugin
Textureupdateexample
An example showing how to update textures from a native plugin in Unity.
Stars: ✭ 133 (-0.75%)
Mutual labels:  plugin

geocoder

Forward and reverse geocoding.

Usage

Import package:geocoder/geocoder.dart, and use the Geocoder.local to access geocoding services provided by the device system.

Example:

import 'package:geocoder/geocoder.dart';

// From a query
final query = "1600 Amphiteatre Parkway, Mountain View";
var addresses = await Geocoder.local.findAddressesFromQuery(query);
var first = addresses.first;
print("${first.featureName} : ${first.coordinates}");

// From coordinates
final coordinates = new Coordinates(1.10, 45.50);
addresses = await Geocoder.local.findAddressesFromCoordinates(coordinates);
first = addresses.first;
print("${first.featureName} : ${first.addressLine}");

You can alternatively use Geocoder.google member for requesting distant data from google services instead of native ones.

You will find links to the API docs on the pub page.

Getting Started

For help getting started with Flutter, view our online documentation.

For help on editing plugin code, view the documentation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].