flet-map 0.70.0.dev6326__py3-none-any.whl → 0.70.0.dev6555__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- flet_map/circle_layer.py +10 -12
- flet_map/map.py +6 -7
- flet_map/marker_layer.py +24 -25
- flet_map/polygon_layer.py +12 -10
- flet_map/polyline_layer.py +15 -12
- flet_map/simple_attribution.py +1 -1
- flet_map/source_attribution.py +8 -10
- flet_map/tile_layer.py +49 -47
- flet_map/types.py +81 -63
- {flet_map-0.70.0.dev6326.dist-info → flet_map-0.70.0.dev6555.dist-info}/METADATA +2 -2
- {flet_map-0.70.0.dev6326.dist-info → flet_map-0.70.0.dev6555.dist-info}/RECORD +15 -14
- flutter/flet_map/pubspec.lock +886 -0
- {flet_map-0.70.0.dev6326.dist-info → flet_map-0.70.0.dev6555.dist-info}/WHEEL +0 -0
- {flet_map-0.70.0.dev6326.dist-info → flet_map-0.70.0.dev6555.dist-info}/licenses/LICENSE +0 -0
- {flet_map-0.70.0.dev6326.dist-info → flet_map-0.70.0.dev6555.dist-info}/top_level.txt +0 -0
flet_map/types.py
CHANGED
|
@@ -91,13 +91,13 @@ class PatternFit(Enum):
|
|
|
91
91
|
SCALE_DOWN = "scaleDown"
|
|
92
92
|
"""
|
|
93
93
|
Scale the pattern to ensure it fits an integer number of times into the
|
|
94
|
-
polyline (smaller version regarding rounding, cf. [`SCALE_UP`][
|
|
94
|
+
polyline (smaller version regarding rounding, cf. [`SCALE_UP`][(c).]).
|
|
95
95
|
"""
|
|
96
96
|
|
|
97
97
|
SCALE_UP = "scaleUp"
|
|
98
98
|
"""
|
|
99
99
|
Scale the pattern to ensure it fits an integer number of times into the
|
|
100
|
-
polyline (bigger version regarding rounding, cf. [`SCALE_DOWN`][
|
|
100
|
+
polyline (bigger version regarding rounding, cf. [`SCALE_DOWN`][(c).]).
|
|
101
101
|
"""
|
|
102
102
|
|
|
103
103
|
APPEND_DOT = "appendDot"
|
|
@@ -177,7 +177,7 @@ class DashedStrokePattern(StrokePattern):
|
|
|
177
177
|
A stroke pattern of alternating dashes and gaps, defined by [`segments`][(c).].
|
|
178
178
|
|
|
179
179
|
Raises:
|
|
180
|
-
|
|
180
|
+
ValueError: If [`segments`][(c).] does not contain at least two items,
|
|
181
181
|
or has an odd length.
|
|
182
182
|
"""
|
|
183
183
|
|
|
@@ -185,9 +185,11 @@ class DashedStrokePattern(StrokePattern):
|
|
|
185
185
|
"""
|
|
186
186
|
A list of alternating dash and gap lengths, in pixels.
|
|
187
187
|
|
|
188
|
-
|
|
189
|
-
|
|
188
|
+
Raises:
|
|
189
|
+
ValueError: If the list does not contain at least two items,
|
|
190
|
+
or if its length is not even.
|
|
190
191
|
"""
|
|
192
|
+
|
|
191
193
|
pattern_fit: PatternFit = PatternFit.SCALE_UP
|
|
192
194
|
"""
|
|
193
195
|
Determines how this stroke pattern should be fit to a line when their lengths
|
|
@@ -195,10 +197,12 @@ class DashedStrokePattern(StrokePattern):
|
|
|
195
197
|
"""
|
|
196
198
|
|
|
197
199
|
def __post_init__(self):
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
200
|
+
if len(self.segments) < 2:
|
|
201
|
+
raise ValueError(
|
|
202
|
+
f"segments must contain at least two items, got {len(self.segments)}"
|
|
203
|
+
)
|
|
204
|
+
if len(self.segments) % 2 != 0:
|
|
205
|
+
raise ValueError("segments must have an even length")
|
|
202
206
|
self._type = "dashed"
|
|
203
207
|
|
|
204
208
|
|
|
@@ -206,9 +210,6 @@ class DashedStrokePattern(StrokePattern):
|
|
|
206
210
|
class DottedStrokePattern(StrokePattern):
|
|
207
211
|
"""
|
|
208
212
|
A stroke pattern of circular dots, spaced with [`spacing_factor`][(c).].
|
|
209
|
-
|
|
210
|
-
Raises:
|
|
211
|
-
AssertionError: If [`spacing_factor`][(c).] is negative.
|
|
212
213
|
"""
|
|
213
214
|
|
|
214
215
|
spacing_factor: ft.Number = 1.5
|
|
@@ -220,9 +221,10 @@ class DottedStrokePattern(StrokePattern):
|
|
|
220
221
|
|
|
221
222
|
May also be scaled by the use of [`PatternFit.SCALE_UP`][(p).].
|
|
222
223
|
|
|
223
|
-
|
|
224
|
-
|
|
224
|
+
Raises:
|
|
225
|
+
ValueError: If it is less than or equal to zero.
|
|
225
226
|
"""
|
|
227
|
+
|
|
226
228
|
pattern_fit: PatternFit = PatternFit.SCALE_UP
|
|
227
229
|
"""
|
|
228
230
|
Determines how this stroke pattern should be fit to a line when their
|
|
@@ -230,10 +232,10 @@ class DottedStrokePattern(StrokePattern):
|
|
|
230
232
|
"""
|
|
231
233
|
|
|
232
234
|
def __post_init__(self):
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
235
|
+
if self.spacing_factor <= 0:
|
|
236
|
+
raise ValueError(
|
|
237
|
+
f"spacing_factor must be greater than to 0.0, got {self.spacing_factor}"
|
|
238
|
+
)
|
|
237
239
|
self._type = "dotted"
|
|
238
240
|
|
|
239
241
|
|
|
@@ -396,7 +398,7 @@ class InteractionFlag(IntFlag):
|
|
|
396
398
|
def has_rotate(flags: int) -> bool:
|
|
397
399
|
"""
|
|
398
400
|
Returns:
|
|
399
|
-
`True` if the [`ROTATE`][
|
|
401
|
+
`True` if the [`ROTATE`][(c).] interactive flag is enabled.
|
|
400
402
|
"""
|
|
401
403
|
return InteractionFlag.has_flag(flags, InteractionFlag.ROTATE)
|
|
402
404
|
|
|
@@ -404,7 +406,7 @@ class InteractionFlag(IntFlag):
|
|
|
404
406
|
def has_scroll_wheel_zoom(flags: int) -> bool:
|
|
405
407
|
"""
|
|
406
408
|
Returns:
|
|
407
|
-
`True` if the [`SCROLL_WHEEL_ZOOM`][
|
|
409
|
+
`True` if the [`SCROLL_WHEEL_ZOOM`][(c).] interaction flag is enabled.
|
|
408
410
|
"""
|
|
409
411
|
return InteractionFlag.has_flag(flags, InteractionFlag.SCROLL_WHEEL_ZOOM)
|
|
410
412
|
|
|
@@ -434,11 +436,11 @@ class MultiFingerGesture(IntFlag):
|
|
|
434
436
|
class InteractionConfiguration:
|
|
435
437
|
enable_multi_finger_gesture_race: bool = False
|
|
436
438
|
"""
|
|
437
|
-
If `True`, then [`rotation_threshold`][
|
|
438
|
-
and [`pinch_move_threshold`][
|
|
439
|
+
If `True`, then [`rotation_threshold`][(c).] and [`pinch_zoom_threshold`][(c).]
|
|
440
|
+
and [`pinch_move_threshold`][(c).] will race.
|
|
439
441
|
If multiple gestures win at the same time, then precedence:
|
|
440
|
-
[`pinch_zoom_win_gestures`][
|
|
441
|
-
[`pinch_move_win_gestures`][
|
|
442
|
+
[`pinch_zoom_win_gestures`][(c).] > [`rotation_win_gestures`][(c).] >
|
|
443
|
+
[`pinch_move_win_gestures`][(c).]
|
|
442
444
|
"""
|
|
443
445
|
|
|
444
446
|
pinch_move_threshold: ft.Number = 40.0
|
|
@@ -449,8 +451,8 @@ class InteractionConfiguration:
|
|
|
449
451
|
|
|
450
452
|
Note:
|
|
451
453
|
If [`InteractionConfiguration.flags`][(p).] doesn't contain
|
|
452
|
-
[`InteractionFlag.PINCH_MOVE`][(p).]
|
|
453
|
-
|
|
454
|
+
[`InteractionFlag.PINCH_MOVE`][(p).] or
|
|
455
|
+
[`enable_multi_finger_gesture_race`][(c).] is false then pinch move cannot win.
|
|
454
456
|
"""
|
|
455
457
|
|
|
456
458
|
scroll_wheel_velocity: ft.Number = 0.005
|
|
@@ -468,7 +470,7 @@ class InteractionConfiguration:
|
|
|
468
470
|
Note:
|
|
469
471
|
If [`InteractionConfiguration.flags`][(p).]
|
|
470
472
|
doesn't contain [`InteractionFlag.PINCH_ZOOM`][(p).]
|
|
471
|
-
or [`enable_multi_finger_gesture_race`][
|
|
473
|
+
or [`enable_multi_finger_gesture_race`][(c).] is false then zoom cannot win.
|
|
472
474
|
"""
|
|
473
475
|
|
|
474
476
|
rotation_threshold: ft.Number = 20.0
|
|
@@ -479,7 +481,7 @@ class InteractionConfiguration:
|
|
|
479
481
|
Note:
|
|
480
482
|
If [`InteractionConfiguration.flags`][(p).]
|
|
481
483
|
doesn't contain [`InteractionFlag.ROTATE`][(p).]
|
|
482
|
-
or [`enable_multi_finger_gesture_race`][
|
|
484
|
+
or [`enable_multi_finger_gesture_race`][(c).] is false then rotate cannot win.
|
|
483
485
|
"""
|
|
484
486
|
|
|
485
487
|
flags: InteractionFlag = InteractionFlag.ALL
|
|
@@ -489,16 +491,16 @@ class InteractionConfiguration:
|
|
|
489
491
|
|
|
490
492
|
rotation_win_gestures: MultiFingerGesture = MultiFingerGesture.ROTATE
|
|
491
493
|
"""
|
|
492
|
-
When [`rotation_threshold`][
|
|
493
|
-
[`pinch_move_threshold`][
|
|
494
|
+
When [`rotation_threshold`][(c).] wins over [`pinch_zoom_threshold`][(c).] and
|
|
495
|
+
[`pinch_move_threshold`][(c).] then `rotation_win_gestures` gestures will be used.
|
|
494
496
|
"""
|
|
495
497
|
|
|
496
498
|
pinch_move_win_gestures: MultiFingerGesture = (
|
|
497
499
|
MultiFingerGesture.PINCH_ZOOM | MultiFingerGesture.PINCH_MOVE
|
|
498
500
|
)
|
|
499
501
|
"""
|
|
500
|
-
When [`pinch_move_threshold`][
|
|
501
|
-
and [`pinch_zoom_threshold`][
|
|
502
|
+
When [`pinch_move_threshold`][(c).] wins over [`rotation_threshold`][(c).]
|
|
503
|
+
and [`pinch_zoom_threshold`][(c).] then `pinch_move_win_gestures` gestures
|
|
502
504
|
will be used.
|
|
503
505
|
|
|
504
506
|
By default [`MultiFingerGesture.PINCH_MOVE`][(p).]
|
|
@@ -510,8 +512,8 @@ class InteractionConfiguration:
|
|
|
510
512
|
MultiFingerGesture.PINCH_ZOOM | MultiFingerGesture.PINCH_MOVE
|
|
511
513
|
)
|
|
512
514
|
"""
|
|
513
|
-
When [`pinch_zoom_threshold`][
|
|
514
|
-
and [`pinch_move_threshold`][
|
|
515
|
+
When [`pinch_zoom_threshold`][(c).] wins over [`rotation_threshold`][(c).]
|
|
516
|
+
and [`pinch_move_threshold`][(c).]
|
|
515
517
|
then `pinch_zoom_win_gestures` gestures will be used.
|
|
516
518
|
|
|
517
519
|
By default [`MultiFingerGesture.PINCH_ZOOM`][(p).]
|
|
@@ -620,7 +622,7 @@ class CameraFit:
|
|
|
620
622
|
depending on which one was provided.
|
|
621
623
|
|
|
622
624
|
Raises:
|
|
623
|
-
|
|
625
|
+
ValueError: If both [`bounds`][(c).] and [`coordinates`][(c).]
|
|
624
626
|
are `None` or not `None`.
|
|
625
627
|
"""
|
|
626
628
|
|
|
@@ -629,7 +631,7 @@ class CameraFit:
|
|
|
629
631
|
The bounds which the camera should contain once it is fitted.
|
|
630
632
|
|
|
631
633
|
Note:
|
|
632
|
-
If this is not `None`, [`coordinates`][
|
|
634
|
+
If this is not `None`, [`coordinates`][(c).] should be `None`, and vice versa.
|
|
633
635
|
"""
|
|
634
636
|
|
|
635
637
|
coordinates: Optional[list[MapLatitudeLongitude]] = None
|
|
@@ -637,7 +639,7 @@ class CameraFit:
|
|
|
637
639
|
The coordinates which the camera should contain once it is fitted.
|
|
638
640
|
|
|
639
641
|
Note:
|
|
640
|
-
If this is not `None`, [`bounds`][
|
|
642
|
+
If this is not `None`, [`bounds`][(c).] should be `None`, and vice versa.
|
|
641
643
|
"""
|
|
642
644
|
|
|
643
645
|
max_zoom: Optional[ft.Number] = None
|
|
@@ -664,9 +666,13 @@ class CameraFit:
|
|
|
664
666
|
"""
|
|
665
667
|
|
|
666
668
|
def __post_init__(self):
|
|
667
|
-
|
|
668
|
-
self.
|
|
669
|
-
|
|
669
|
+
if not (
|
|
670
|
+
(self.bounds and not self.coordinates)
|
|
671
|
+
or (self.coordinates and not self.bounds)
|
|
672
|
+
):
|
|
673
|
+
raise ValueError(
|
|
674
|
+
"only one of bounds or coordinates must be provided, not both"
|
|
675
|
+
)
|
|
670
676
|
|
|
671
677
|
|
|
672
678
|
@dataclass
|
|
@@ -724,12 +730,16 @@ class InstantaneousTileDisplay(TileDisplay):
|
|
|
724
730
|
opacity: ft.Number = 1.0
|
|
725
731
|
"""
|
|
726
732
|
The optional opacity of the tile.
|
|
733
|
+
|
|
734
|
+
Raises:
|
|
735
|
+
ValueError: If its value is not between `0.0` and `1.0` inclusive.
|
|
727
736
|
"""
|
|
728
737
|
|
|
729
738
|
def __post_init__(self):
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
739
|
+
if not (0.0 <= self.opacity <= 1.0):
|
|
740
|
+
raise ValueError(
|
|
741
|
+
f"opacity must be between 0.0 and 1.0 inclusive, got {self.opacity}"
|
|
742
|
+
)
|
|
733
743
|
self._type = "instantaneous"
|
|
734
744
|
|
|
735
745
|
|
|
@@ -747,22 +757,30 @@ class FadeInTileDisplay(TileDisplay):
|
|
|
747
757
|
start_opacity: ft.Number = 0.0
|
|
748
758
|
"""
|
|
749
759
|
Opacity start value when a tile is faded in.
|
|
760
|
+
|
|
761
|
+
Raises:
|
|
762
|
+
ValueError: If its value is not between `0.0` and `1.0` inclusive.
|
|
750
763
|
"""
|
|
751
764
|
|
|
752
765
|
reload_start_opacity: ft.Number = 0.0
|
|
753
766
|
"""
|
|
754
767
|
Opacity start value when a tile is reloaded.
|
|
768
|
+
|
|
769
|
+
Raises:
|
|
770
|
+
ValueError: If its value is not between `0.0` and `1.0` inclusive.
|
|
755
771
|
"""
|
|
756
772
|
|
|
757
773
|
def __post_init__(self):
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
774
|
+
if not (0.0 <= self.start_opacity <= 1.0):
|
|
775
|
+
raise ValueError(
|
|
776
|
+
"start_opacity must be between 0.0 and 1.0 inclusive, "
|
|
777
|
+
f"got {self.start_opacity}"
|
|
778
|
+
)
|
|
779
|
+
if not (0.0 <= self.reload_start_opacity <= 1.0):
|
|
780
|
+
raise ValueError(
|
|
781
|
+
"reload_start_opacity must be between 0.0 and 1.0 inclusive, "
|
|
782
|
+
f"got {self.reload_start_opacity}"
|
|
783
|
+
)
|
|
766
784
|
self._type = "fadein"
|
|
767
785
|
|
|
768
786
|
|
|
@@ -798,7 +816,7 @@ class KeyboardConfiguration:
|
|
|
798
816
|
Duration of the curved ([`AnimationCurve.EASE_IN`][flet.AnimationCurve.EASE_IN])
|
|
799
817
|
portion of the animation occuring
|
|
800
818
|
after a key down event (and after a key up event if
|
|
801
|
-
[`animation_curve_reverse_duration`][
|
|
819
|
+
[`animation_curve_reverse_duration`][(c).] is `None`)
|
|
802
820
|
"""
|
|
803
821
|
|
|
804
822
|
animation_curve_reverse_duration: Optional[ft.DurationValue] = field(
|
|
@@ -809,7 +827,7 @@ class KeyboardConfiguration:
|
|
|
809
827
|
[`AnimationCurve.EASE_IN`][flet.AnimationCurve.EASE_IN])
|
|
810
828
|
portion of the animation occuring after a key up event.
|
|
811
829
|
|
|
812
|
-
Set to `None` to use [`animation_curve_duration`][
|
|
830
|
+
Set to `None` to use [`animation_curve_duration`][(c).].
|
|
813
831
|
"""
|
|
814
832
|
|
|
815
833
|
animation_curve_curve: AnimationCurve = AnimationCurve.EASE_IN_OUT
|
|
@@ -872,7 +890,7 @@ class KeyboardConfiguration:
|
|
|
872
890
|
|
|
873
891
|
Must be greater than 0 and less than or equal to 1.
|
|
874
892
|
To disable leaping, or change the maximum length of the key press
|
|
875
|
-
that will trigger a leap, see [`perform_leap_trigger_duration`][
|
|
893
|
+
that will trigger a leap, see [`perform_leap_trigger_duration`][(c).].
|
|
876
894
|
"""
|
|
877
895
|
|
|
878
896
|
max_rotate_velocity: ft.Number = 3
|
|
@@ -896,7 +914,7 @@ class KeyboardConfiguration:
|
|
|
896
914
|
The amount to scale the panning offset velocity by during a leap animation.
|
|
897
915
|
|
|
898
916
|
The larger the number, the larger the movement during a leap.
|
|
899
|
-
To change the duration of a leap, see [`leap_max_of_curve_component`][
|
|
917
|
+
To change the duration of a leap, see [`leap_max_of_curve_component`][(c).].
|
|
900
918
|
"""
|
|
901
919
|
|
|
902
920
|
rotate_leap_velocity_multiplier: ft.Number = 3
|
|
@@ -904,9 +922,9 @@ class KeyboardConfiguration:
|
|
|
904
922
|
The amount to scale the rotation velocity by during a leap animation
|
|
905
923
|
|
|
906
924
|
The larger the number, the larger the rotation difference during a leap.
|
|
907
|
-
To change the duration of a leap, see [`leap_max_of_curve_component`][
|
|
925
|
+
To change the duration of a leap, see [`leap_max_of_curve_component`][(c).].
|
|
908
926
|
|
|
909
|
-
This may cause the pan velocity to exceed [`max_rotate_velocity`][
|
|
927
|
+
This may cause the pan velocity to exceed [`max_rotate_velocity`][(c).].
|
|
910
928
|
"""
|
|
911
929
|
|
|
912
930
|
zoom_leap_velocity_multiplier: ft.Number = 3
|
|
@@ -914,9 +932,9 @@ class KeyboardConfiguration:
|
|
|
914
932
|
The amount to scale the zooming velocity by during a leap animation.
|
|
915
933
|
|
|
916
934
|
The larger the number, the larger the zoom difference during a leap. To
|
|
917
|
-
change the duration of a leap, see [`leap_max_of_curve_component`][
|
|
935
|
+
change the duration of a leap, see [`leap_max_of_curve_component`][(c).].
|
|
918
936
|
|
|
919
|
-
This may cause the pan velocity to exceed [`max_zoom_velocity`][
|
|
937
|
+
This may cause the pan velocity to exceed [`max_zoom_velocity`][(c).].
|
|
920
938
|
"""
|
|
921
939
|
|
|
922
940
|
perform_leap_trigger_duration: Optional[ft.DurationValue] = field(
|
|
@@ -926,10 +944,10 @@ class KeyboardConfiguration:
|
|
|
926
944
|
Maximum duration between the key down and key up events of an animation
|
|
927
945
|
which will trigger a 'leap'.
|
|
928
946
|
|
|
929
|
-
To customize the leap itself, see the [`leap_max_of_curve_component`][
|
|
930
|
-
`*leap_velocity_multiplier` ([`zoom_leap_velocity_multiplier`][
|
|
931
|
-
[`pan_leap_velocity_multiplier`][
|
|
932
|
-
properties.
|
|
947
|
+
To customize the leap itself, see the [`leap_max_of_curve_component`][(c).] &
|
|
948
|
+
`*leap_velocity_multiplier` ([`zoom_leap_velocity_multiplier`][(c).],
|
|
949
|
+
[`pan_leap_velocity_multiplier`][(c).] and
|
|
950
|
+
[`rotate_leap_velocity_multiplier`][(c).]) properties.
|
|
933
951
|
|
|
934
952
|
Set to `None` to disable leaping.
|
|
935
953
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flet-map
|
|
3
|
-
Version: 0.70.0.
|
|
3
|
+
Version: 0.70.0.dev6555
|
|
4
4
|
Summary: Interactive map controls for Flet apps.
|
|
5
5
|
Author-email: Flet contributors <hello@flet.dev>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -11,7 +11,7 @@ Project-URL: Issues, https://github.com/flet-dev/flet/issues
|
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
-
Requires-Dist: flet==0.70.0.
|
|
14
|
+
Requires-Dist: flet==0.70.0.dev6555
|
|
15
15
|
Dynamic: license-file
|
|
16
16
|
|
|
17
17
|
# flet-map
|
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
flet_map/__init__.py,sha256=51zK0yd9ZWJ-LwCSG2Kk_cQis2A41cjCTtv60oIBYkQ,2254
|
|
2
|
-
flet_map/circle_layer.py,sha256=
|
|
3
|
-
flet_map/map.py,sha256=
|
|
2
|
+
flet_map/circle_layer.py,sha256=ogw_FW0IXA_Da6t76NpPyuNBKQ7WawKKKaN_haXI4oM,1580
|
|
3
|
+
flet_map/map.py,sha256=YO8zvLhGpIfuugajVobjCS3O0ulveKRfAMXbZ10-m6Q,12980
|
|
4
4
|
flet_map/map_layer.py,sha256=8LEPoUAtvo_YnkVLNghEJbi-_RhpiOsyYIZdLjrYK3g,400
|
|
5
|
-
flet_map/marker_layer.py,sha256=
|
|
6
|
-
flet_map/polygon_layer.py,sha256
|
|
7
|
-
flet_map/polyline_layer.py,sha256=
|
|
5
|
+
flet_map/marker_layer.py,sha256=kjWN-WCB9zXlOT-UCxrjeUmtCd1d_O3F74mqMlF0slw,2695
|
|
6
|
+
flet_map/polygon_layer.py,sha256=ZzeOjNru6d9ebg6PbVU55YDfSyIFjecfpkaR9Kvko2g,3643
|
|
7
|
+
flet_map/polyline_layer.py,sha256=pG12Bgw3tG7Y9ircdC23kisXePyli8nqgSIJgZ6ovRs,3172
|
|
8
8
|
flet_map/rich_attribution.py,sha256=kwN_c4VY3lcBu8JuTB6nzgt-gJ8dlsMM9OzfGvlObgk,1990
|
|
9
|
-
flet_map/simple_attribution.py,sha256=
|
|
10
|
-
flet_map/source_attribution.py,sha256=
|
|
11
|
-
flet_map/tile_layer.py,sha256=
|
|
12
|
-
flet_map/types.py,sha256=
|
|
13
|
-
flet_map-0.70.0.
|
|
9
|
+
flet_map/simple_attribution.py,sha256=hQrMK4RhLiV0MYw7sFImpO5DpyRCQHk2YrNm7evcEng,796
|
|
10
|
+
flet_map/source_attribution.py,sha256=h8v4r-PTE8UR-SpQgq6eseM2pciYtupNjL2qs6NzytU,2137
|
|
11
|
+
flet_map/tile_layer.py,sha256=hPmrt7zSRDjE1LiJF5yf2wIcANvjbnpqf47qjhUl-n0,7500
|
|
12
|
+
flet_map/types.py,sha256=F9oSJkyPriQvbPDEUCzAMsaOjZMDzyr5yJnLL8FcEDA,31501
|
|
13
|
+
flet_map-0.70.0.dev6555.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
14
14
|
flutter/flet_map/analysis_options.yaml,sha256=32kjGAc-zF87inWaH5M46yGZWQDTwrwfvNLHeAocfG4,154
|
|
15
|
+
flutter/flet_map/pubspec.lock,sha256=1GdGf1hr5c7p0DavumogTbOATgN-cJigCLI9sBOM5HM,26177
|
|
15
16
|
flutter/flet_map/pubspec.yaml,sha256=A3VqfFEJcMvpXd7gsrErbJQresmjgIBAa_F0QaF_zDQ,404
|
|
16
17
|
flutter/flet_map/lib/flet_map.dart,sha256=2bvpVma1FeJxU0EOQq8g5Mi68w4Kr4BQSgqgGyEJ_jw,63
|
|
17
18
|
flutter/flet_map/lib/src/circle_layer.dart,sha256=uF2nQL5fPh1d46cqTA87waEJ_NR05HknWevZsbQ17bs,1124
|
|
@@ -25,7 +26,7 @@ flutter/flet_map/lib/src/simple_attribution.dart,sha256=bbp9ovo_fpsOHgu_T_IgDQdx
|
|
|
25
26
|
flutter/flet_map/lib/src/tile_layer.dart,sha256=uB_Kh1QglBKUWUzcGxrzXMxFiTSe8IIwy49Qrqioaw4,2584
|
|
26
27
|
flutter/flet_map/lib/src/utils/attribution_alignment.dart,sha256=B6l2GU-EHrk2ggLNWTI9yn-Ivd2BwwSNjoELqFIguCw,372
|
|
27
28
|
flutter/flet_map/lib/src/utils/map.dart,sha256=Uz2MKqdVgORhBoMdzOmdo8Clzf6YXh6LmpwyaQsf8zo,12198
|
|
28
|
-
flet_map-0.70.0.
|
|
29
|
-
flet_map-0.70.0.
|
|
30
|
-
flet_map-0.70.0.
|
|
31
|
-
flet_map-0.70.0.
|
|
29
|
+
flet_map-0.70.0.dev6555.dist-info/METADATA,sha256=zsYoReloGHJzD-k71xZtKjgw4XeZ_x61Z1VKk8tcRhY,1873
|
|
30
|
+
flet_map-0.70.0.dev6555.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
31
|
+
flet_map-0.70.0.dev6555.dist-info/top_level.txt,sha256=HjaN5dGb0-hj6ciqBzy1aqisp22P0mbT98qC8rvoEjg,17
|
|
32
|
+
flet_map-0.70.0.dev6555.dist-info/RECORD,,
|