diff --git a/lib/flutter_map_tile_caching.dart b/lib/flutter_map_tile_caching.dart index 6d434ac4..db01a6be 100644 --- a/lib/flutter_map_tile_caching.dart +++ b/lib/flutter_map_tile_caching.dart @@ -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'; diff --git a/lib/src/regions/circle.dart b/lib/src/regions/shapes/circle.dart similarity index 97% rename from lib/src/regions/circle.dart rename to lib/src/regions/shapes/circle.dart index 7f2caa56..024563a2 100644 --- a/lib/src/regions/circle.dart +++ b/lib/src/regions/shapes/circle.dart @@ -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] /// diff --git a/lib/src/regions/custom_polygon.dart b/lib/src/regions/shapes/custom_polygon.dart similarity index 96% rename from lib/src/regions/custom_polygon.dart rename to lib/src/regions/shapes/custom_polygon.dart index a82513f0..62068d93 100644 --- a/lib/src/regions/custom_polygon.dart +++ b/lib/src/regions/shapes/custom_polygon.dart @@ -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 /// diff --git a/lib/src/regions/line.dart b/lib/src/regions/shapes/line.dart similarity index 98% rename from lib/src/regions/line.dart rename to lib/src/regions/shapes/line.dart index ec727c46..7fdd6ab4 100644 --- a/lib/src/regions/line.dart +++ b/lib/src/regions/shapes/line.dart @@ -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] /// diff --git a/lib/src/regions/rectangle.dart b/lib/src/regions/shapes/rectangle.dart similarity index 96% rename from lib/src/regions/rectangle.dart rename to lib/src/regions/shapes/rectangle.dart index 901b5ecb..c46310f0 100644 --- a/lib/src/regions/rectangle.dart +++ b/lib/src/regions/shapes/rectangle.dart @@ -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 ///