13 lines
513 B
Dart
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';
|
|
}
|