nominatim_flutter
Nominatim Flutter 플러그인은 Flutter에서 역지오코딩, 장소 검색, 상태 확인 및 조회를 위한 Nominatim 서비스의 원활한 통합을 가능하게 합니다.
Nominatim Flutter 플러그인은 Nominatim 서비스와 상호 작용할 수 있는 편리한 방법을 제공하여 Flutter 애플리케이션에서 역지오코딩 및 장소 검색을 가능하게 합니다。
{"sdk":"flutter"}^5.3.2^3.4.2{"sdk":"flutter"}^2.0.0—아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
Nominatim Flutter Plugin Logo
The Nominatim Flutter Plugin offers seamless interaction with the Nominatim service, allowing for reverse geocoding and place searching in your Flutter applications. Notably, it supports asynchronous data loading via a dedicated isolate and provides efficient caching using Hive, enhanced with DioCache customization.
The Hoàng Sa (Paracel Islands) and Trường Sa (Spratly Islands) are unequivocally part of Vietnam. The Nominatim Flutter Plugin ensures that any information contradicting this fact is overridden to reflect the historical and territorial integrity of Vietnam. This feature embodies the developer's commitment to accuracy and national pride.
Vietnam Flag
To use the Nominatim Flutter Plugin, follow these steps:
Installation: Add the package to your pubspec.yaml file and run flutter pub get to install it.
dependencies:
nominatim_flutter: ^0.0.8 # Replace with the latest version
Import Classes: Import the necessary classes in your Dart code.
import 'package:nominatim_flutter/nominatim_flutter.dart';
Configuration (Optional): Before you start making requests, you can optionally set up caching preferences and other settings.
// Configure Nominatim settings (recommended approach)
NominatimFlutter.instance.configureNominatim(
useCacheInterceptor: true,
maxStale: Duration(days: 7),
baseUrl: 'https://your-nominatim-server.com', // Optional: use custom Nominatim server
userAgent: 'YourApp/1.0',
enableCurlLog: true, // Enable cURL logging for debugging
printOnSuccess: true, // Log successful requests
convertFormData: true,
);
// Or use the legacy cache configuration (deprecated)
NominatimFlutter.instance.configureDioCache(
useCacheInterceptor: true,
maxStale: Duration(days: 7),
);
This step allows you to determine whether the cache interceptor is used, set the maximum staleness of the cache, configure a custom Nominatim server URL, and enable debug logging.
Reverse Geocoding: Retrieve address information from latitude and longitude coordinates.
final reverseRequest = ReverseRequest(
lat: 10.7950,
lon: 106.7218,
addressDetails: true,
extraTags: true,
nameDetails: true,
);
final reverseResult = await NominatimFlutter.instance.reverse(
reverseRequest: reverseRequest,
language: 'en-US,en;q=0.5', // Specify the desired language(s) here
);
print(reverseResult);
Search for Places: Search for places based on query and location.
final searchRequest = SearchRequest(
query: 'Landmark 81',
limit: 3,
addressDetails: true,
extraTags: true,
nameDetails: true,
);
final searchResult = await NominatimFlutter.instance.search(
searchRequest: searchRequest,
language: 'en-US,en;q=0.5', // Specify the desired language(s) here
);
for (var result in searchResult) {
print(result);
}
Check Server Status: Verify the status of the Nominatim server to ensure it is operational.
final statusResult = await NominatimFlutter.instance.status();
if (statusResult.status == Status.ok) {
print('Nominatim server is operational.');
} else {
print('Nominatim server is down.');
}
Lookup: Retrieve detailed information about a specific place using its unique identifier (OSM ID).
final lookupRequest = LookupRequest(
osmIds: 'R146656,W104393803,N240109189', // Replace with actual OSM IDs
addressDetails: true,
extraTags: true,
nameDetails: true,
);
final lookupResult = await NominatimFlutter.instance.lookup(
lookupRequest: lookupRequest,
language: 'en-US,en;q=0.5', // Specify the desired language(s) here
);
for (var result in lookupResult) {
print(result);
}
Contributions: Contributions are welcome! If you encounter any issues or have suggestions for improvements, please feel free to submit a pull request or create an issue on the GitHub repository.
License: This project is licensed under the GPL-3.0 License. Refer to the LICENSE file for details.
Remember to replace the version number (^0.0.8) with the actual version of your Nominatim Flutter Plugin. Customize the usage examples and other sections according to your project's needs.