Puts the controls that change what the map is looking at over the map itself, where they act, and gives them something to search. Search is one field, not two. A string either parses as coordinates or it does not, and the answer is obvious from the text, so making the user declare up front which kind of thing they are looking for would be asking them to do the program's job. Coordinates accept decimal and degrees-minutes-seconds, comma or space separated, with hemisphere letters — including the Italian O for ovest, because someone reading an Italian map will type it and silently reading it as east would put them the wrong side of Greenwich. The 1180 Piedmont municipalities are bundled rather than geocoded online. The app is region-scoped, so a list of one region's towns is small enough to ship (100 KB) and beats a geocoder on every axis that matters: instant, offline, no API key, no rate limit, and it cannot return a result somewhere the app has no radar for. Matching folds accents, so "aglie" finds "Agliè", and prefix matches outrank substring ones — typing "tor" should surface Torino, not the first alphabetical name that happens to contain those letters. tool/generate_places.py derives the list from Istat boundary shapefiles (CC BY 4.0). Two properties of that file cost time and are now written down: the geometry is UTM 32N rather than degrees, and the DBF is UTF-8 despite one bilingual Friulian record that makes strict cp1252 fail. A terminal renders utf-8 and latin-1 output identically, so the encoding cannot be settled by looking at printed text — it took dumping codepoints. A guard in the generator and a test against the shipped asset both check for mojibake now, and the guard caught a real mistake the moment it was written. The target selector switches between following the device, a saved place, and the whole region, and the selection doubles as what the app reopens on: "the place I marked" and "what I see when I open the app" are one idea to the person using it. Dragging the map while it is following stops the camera chasing them but leaves that preference alone, because looking somewhere else now is not the same as changing their mind about next launch. The position marker and the following are MapLibre's own, driven by onCameraTrackingDismissed, so there is no second location stream to keep in step with the map. A test asserts that all 1180 municipalities fall inside the region bounds, which is what actually validates the UTM-to-degrees conversion end to end. Verified on the emulator: the dropdown lists follow, region and both saved places; "aglie" finds Agliè; "44.3841 7.5426" offers the coordinate jump and lands on Cuneo at town-reading zoom; selecting follow moves the map to the device position with the blue dot on it and changes the recentre button to match. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
183 lines
5.5 KiB
Dart
183 lines
5.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import '../../core/region/geo.dart';
|
|
import '../../core/region/region_config.dart';
|
|
import '../../core/region/region_repository.dart';
|
|
import '../../l10n/app_localizations.dart';
|
|
import 'comune.dart';
|
|
import 'comuni_repository.dart';
|
|
import 'coordinate_input.dart';
|
|
|
|
/// What the user picked out of search.
|
|
class SearchResult {
|
|
const SearchResult({required this.point, required this.label});
|
|
|
|
final GeoPoint point;
|
|
|
|
/// How to name it if it gets saved as a place.
|
|
final String label;
|
|
}
|
|
|
|
/// One field that takes either a municipality name or coordinates.
|
|
///
|
|
/// Two separate searches would make the user decide up front which kind of
|
|
/// thing they are looking for, which they should not have to: a string either
|
|
/// parses as coordinates or it does not, and the answer is obvious from the
|
|
/// text itself.
|
|
class SearchScreen extends ConsumerStatefulWidget {
|
|
const SearchScreen({super.key});
|
|
|
|
@override
|
|
ConsumerState<SearchScreen> createState() => _SearchScreenState();
|
|
}
|
|
|
|
class _SearchScreenState extends ConsumerState<SearchScreen> {
|
|
final TextEditingController _controller = TextEditingController();
|
|
String _query = '';
|
|
|
|
@override
|
|
void dispose() {
|
|
_controller.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final l10n = AppLocalizations.of(context);
|
|
final index = ref.watch(comuneIndexProvider);
|
|
final region = ref.watch(regionConfigProvider).value;
|
|
|
|
final coordinates = parseCoordinates(_query);
|
|
final matches = switch (index) {
|
|
AsyncData(:final value) => value.search(_query),
|
|
_ => const <Comune>[],
|
|
};
|
|
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: TextField(
|
|
controller: _controller,
|
|
autofocus: true,
|
|
textInputAction: TextInputAction.search,
|
|
decoration: InputDecoration(
|
|
hintText: l10n.searchHint,
|
|
border: InputBorder.none,
|
|
),
|
|
onChanged: (value) => setState(() => _query = value),
|
|
),
|
|
actions: [
|
|
if (_query.isNotEmpty)
|
|
IconButton(
|
|
icon: const Icon(Icons.clear),
|
|
onPressed: () {
|
|
_controller.clear();
|
|
setState(() => _query = '');
|
|
},
|
|
),
|
|
],
|
|
),
|
|
body: switch (index) {
|
|
AsyncError(:final error) => Center(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(24),
|
|
child: Text('${l10n.dataUnavailable}\n$error'),
|
|
),
|
|
),
|
|
AsyncData() => _results(
|
|
context,
|
|
coordinates: coordinates,
|
|
matches: matches,
|
|
region: region,
|
|
),
|
|
_ => Center(child: Text(l10n.loading)),
|
|
},
|
|
);
|
|
}
|
|
|
|
Widget _results(
|
|
BuildContext context, {
|
|
required GeoPoint? coordinates,
|
|
required List<Comune> matches,
|
|
required RegionConfig? region,
|
|
}) {
|
|
final l10n = AppLocalizations.of(context);
|
|
final theme = Theme.of(context);
|
|
|
|
if (_query.trim().isEmpty) {
|
|
return Padding(
|
|
padding: const EdgeInsets.all(24),
|
|
child: Text(l10n.searchHelp, style: theme.textTheme.bodyMedium),
|
|
);
|
|
}
|
|
|
|
final outsideRegion =
|
|
coordinates != null &&
|
|
region != null &&
|
|
!region.bounds.contains(coordinates);
|
|
|
|
return ListView(
|
|
children: [
|
|
if (coordinates != null)
|
|
ListTile(
|
|
leading: const Icon(Icons.my_location),
|
|
title: Text(l10n.searchCoordinatesResult),
|
|
subtitle: Text(
|
|
'${coordinates.latitude.toStringAsFixed(4)}, '
|
|
'${coordinates.longitude.toStringAsFixed(4)}'
|
|
// Saying so beats letting them travel to an empty map.
|
|
'${outsideRegion ? '\n${l10n.searchOutsideRegion}' : ''}',
|
|
style: outsideRegion
|
|
? TextStyle(color: theme.colorScheme.error)
|
|
: null,
|
|
),
|
|
onTap: () => Navigator.of(context).pop(
|
|
SearchResult(
|
|
point: coordinates,
|
|
label:
|
|
'${coordinates.latitude.toStringAsFixed(4)}, '
|
|
'${coordinates.longitude.toStringAsFixed(4)}',
|
|
),
|
|
),
|
|
),
|
|
|
|
if (coordinates != null && matches.isNotEmpty) const Divider(),
|
|
|
|
if (matches.isNotEmpty)
|
|
Padding(
|
|
padding: const EdgeInsets.fromLTRB(16, 12, 16, 4),
|
|
child: Text(
|
|
l10n.searchComuniCount(matches.length),
|
|
style: theme.textTheme.labelMedium?.copyWith(
|
|
color: theme.colorScheme.primary,
|
|
),
|
|
),
|
|
),
|
|
|
|
for (final comune in matches)
|
|
ListTile(
|
|
leading: const Icon(Icons.location_city),
|
|
title: Text(comune.name),
|
|
subtitle: Text(comune.province),
|
|
onTap: () =>
|
|
Navigator.of(context)
|
|
.pop(SearchResult(point: comune.point, label: comune.name)),
|
|
),
|
|
|
|
if (matches.isEmpty && coordinates == null)
|
|
Padding(
|
|
padding: const EdgeInsets.all(24),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(l10n.searchNoResults, style: theme.textTheme.titleSmall),
|
|
const SizedBox(height: 8),
|
|
Text(l10n.searchHelp, style: theme.textTheme.bodySmall),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|