Files
lab-app/lib/core/maps/open_free_map.dart
2026-06-20 18:24:40 +03:00

13 lines
513 B
Dart

class OpenFreeMap {
OpenFreeMap._();
static const libertyStyle = 'https://tiles.openfreemap.org/styles/liberty';
static const positronStyle = 'https://tiles.openfreemap.org/styles/positron';
static const brightStyle = 'https://tiles.openfreemap.org/styles/bright';
static const darkStyle = 'https://tiles.openfreemap.org/styles/dark';
static const fiordStyle = 'https://tiles.openfreemap.org/styles/fiord';
static const attribution =
'OpenFreeMap © OpenMapTiles Data from OpenStreetMap';
}