FLUTTER ECOSYSTEM

JCKodel/flutter_geocoder

정방향 및 역방향 지오코딩을 위한 플러터 플러그인

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.