geocoder_offline
अत्यधिक तेज़ ऑफ़लाइन रिवर्स जियोकोडिंग के लिए पैकेज। खोज आपके चुने हुए फ़ाइल में की जाती है।
ऑफलाइन सुपर तेज रिवर्स जियोकोडिंग के लिए Dart/Flutter प्लगइन
यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
Dart library for super-fast offline reverse geocoding. Package use k-d tree for a search of the nearest location in a given file. One when Geocoder is initialized, search for location is super-fast, about 4-5 milliseconds.
For using the reverse geocoding library you need to provide а file with data about places among you want to run reverse geocoding. In examples you can see how to use а library with two example files:
Library allows you to use any other file who has at least data about name, latitude, and longitude of places you want to search.
import 'package:geocoder_offline/geocoder_offline.dart';
var geocoder = GeocodeData(
File('/example/NationalFedCodes_20191101.csv').readAsStringSync(), //input string
'FEATURE_NAME', // place name header
'STATE_ALPHA', // state/countery header
'PRIMARY_LATITUDE', // latitute header
'PRIMARY_LONGITUDE', // longitude header
fieldDelimiter: ',', // fields delimiter
eol: '\n');
List<LocationResult> result = geocoder.search(41.881832, -87.623177);
If you any problem using library or you have any new needs, please file feature requests and bugs at the issue tracker.