FLUTTER ECOSYSTEM

JCKodel/flutter_geocoder

फॉरवर्ड और रिवर्स जियोकोडिंग के लिए फ्लटर प्लगइन

flutter_geocoder प्रोजेक्ट कवर
Stars
3
Forks
18
अंतिम पुश (UTC)
24 अक्टू॰ 2023
प्रोजेक्ट स्थिति
सक्रिय
J.C.Ködel GitHub avatar
भाषाएँDartJavaObjective-CRubyShell

उपयोग की गई निर्भरताएँ

निर्भरता सूची 2 आइटम
  • flutter{"sdk":"flutter"}
  • meta^1.1.6

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

flutter_geocoder

Forward and reverse geocoding.

Usage

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

Example:

import 'package:flutter_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.