FLUTTER ECOSYSTEM

JCKodel/flutter_geocoder

フォワードおよびリバースジオコーディング用のFlutterプラグイン

flutter_geocoder のプロジェクト画像
Stars
3
Forks
18
最終プッシュ(UTC)
2023/10/24
プロジェクト状態
公開中
J.C.Ködel GitHub avatar
GITHUB User

J.C.Ködel ↗

Ködel DynamicsBrazil公式サイト ↗
言語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.