JCKodel/flutter_geocoder
用于正向和反向地理编码的 Flutter 插件
- Stars
- 3
- Forks
- 18
- 最近推送(UTC)
- 2023年10月24日
- 项目状态
- 未归档
语言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.