Skip to content

Commit

Permalink
Minor meta refactoring and renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
JaffaKetchup committed Jul 11, 2024
1 parent 603e523 commit 31b8248
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions lib/flutter_map_tile_caching.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ part 'src/providers/tile_provider/behaviours.dart';
part 'src/providers/tile_provider/tile_provider.dart';
part 'src/providers/tile_provider/tile_provider_settings.dart';
part 'src/regions/base_region.dart';
part 'src/regions/circle.dart';
part 'src/regions/custom_polygon.dart';
part 'src/regions/downloadable_region.dart';
part 'src/regions/line.dart';
part 'src/regions/recovered_region.dart';
part 'src/regions/rectangle.dart';
part 'src/regions/shapes/circle.dart';
part 'src/regions/shapes/custom_polygon.dart';
part 'src/regions/shapes/line.dart';
part 'src/regions/shapes/rectangle.dart';
part 'src/root/external.dart';
part 'src/root/recovery.dart';
part 'src/root/root.dart';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright © Luka S (JaffaKetchup) under GPL-v3
// A full license can be found at .\LICENSE

part of '../../flutter_map_tile_caching.dart';
part of '../../../flutter_map_tile_caching.dart';

/// A geographically circular region based off a [center] coord and [radius]
///
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright © Luka S (JaffaKetchup) under GPL-v3
// A full license can be found at .\LICENSE

part of '../../flutter_map_tile_caching.dart';
part of '../../../flutter_map_tile_caching.dart';

/// A geographical region who's outline is defined by a list of coordinates
///
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright © Luka S (JaffaKetchup) under GPL-v3
// A full license can be found at .\LICENSE

part of '../../flutter_map_tile_caching.dart';
part of '../../../flutter_map_tile_caching.dart';

/// A geographically line/locus region based off a list of coords and a [radius]
///
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright © Luka S (JaffaKetchup) under GPL-v3
// A full license can be found at .\LICENSE

part of '../../flutter_map_tile_caching.dart';
part of '../../../flutter_map_tile_caching.dart';

/// A geographically rectangular region based off coordinate bounds
///
Expand Down

0 comments on commit 31b8248

Please sign in to comment.