mirror of
https://github.com/FoggedLens/deflock-app.git
synced 2026-04-02 18:20:16 +02:00
Compare commits
1 Commits
main
...
fix/node-r
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a5eca8a6b5 |
@@ -36,7 +36,7 @@ void main() {
|
|||||||
];
|
];
|
||||||
|
|
||||||
final result = dataManager.getNodesForRendering(
|
final result = dataManager.getNodesForRendering(
|
||||||
currentZoom: 14,
|
currentZoom: 14.0,
|
||||||
mapBounds: bounds,
|
mapBounds: bounds,
|
||||||
uploadMode: UploadMode.production,
|
uploadMode: UploadMode.production,
|
||||||
maxNodes: 3,
|
maxNodes: 3,
|
||||||
@@ -58,7 +58,7 @@ void main() {
|
|||||||
];
|
];
|
||||||
|
|
||||||
final result = dataManager.getNodesForRendering(
|
final result = dataManager.getNodesForRendering(
|
||||||
currentZoom: 14,
|
currentZoom: 14.0,
|
||||||
mapBounds: bounds,
|
mapBounds: bounds,
|
||||||
uploadMode: UploadMode.production,
|
uploadMode: UploadMode.production,
|
||||||
maxNodes: 10,
|
maxNodes: 10,
|
||||||
@@ -73,7 +73,7 @@ void main() {
|
|||||||
testNodes = [nodeAt(1, 38.5, -77.5)];
|
testNodes = [nodeAt(1, 38.5, -77.5)];
|
||||||
|
|
||||||
final result = dataManager.getNodesForRendering(
|
final result = dataManager.getNodesForRendering(
|
||||||
currentZoom: 5,
|
currentZoom: 5.0,
|
||||||
mapBounds: bounds,
|
mapBounds: bounds,
|
||||||
uploadMode: UploadMode.production,
|
uploadMode: UploadMode.production,
|
||||||
maxNodes: 10,
|
maxNodes: 10,
|
||||||
@@ -93,7 +93,7 @@ void main() {
|
|||||||
testNodes = List.from(nodes);
|
testNodes = List.from(nodes);
|
||||||
final swBounds = LatLngBounds(LatLng(37.5, -78.5), LatLng(38.5, -77.5));
|
final swBounds = LatLngBounds(LatLng(37.5, -78.5), LatLng(38.5, -77.5));
|
||||||
final swResult = dataManager.getNodesForRendering(
|
final swResult = dataManager.getNodesForRendering(
|
||||||
currentZoom: 14,
|
currentZoom: 14.0,
|
||||||
mapBounds: swBounds,
|
mapBounds: swBounds,
|
||||||
uploadMode: UploadMode.production,
|
uploadMode: UploadMode.production,
|
||||||
maxNodes: 1,
|
maxNodes: 1,
|
||||||
@@ -105,7 +105,7 @@ void main() {
|
|||||||
testNodes = List.from(nodes);
|
testNodes = List.from(nodes);
|
||||||
final neBounds = LatLngBounds(LatLng(38.5, -77.5), LatLng(39.5, -76.5));
|
final neBounds = LatLngBounds(LatLng(38.5, -77.5), LatLng(39.5, -76.5));
|
||||||
final neResult = dataManager.getNodesForRendering(
|
final neResult = dataManager.getNodesForRendering(
|
||||||
currentZoom: 14,
|
currentZoom: 14.0,
|
||||||
mapBounds: neBounds,
|
mapBounds: neBounds,
|
||||||
uploadMode: UploadMode.production,
|
uploadMode: UploadMode.production,
|
||||||
maxNodes: 1,
|
maxNodes: 1,
|
||||||
@@ -126,13 +126,13 @@ void main() {
|
|||||||
|
|
||||||
testNodes = makeNodes();
|
testNodes = makeNodes();
|
||||||
final result1 = dataManager.getNodesForRendering(
|
final result1 = dataManager.getNodesForRendering(
|
||||||
currentZoom: 14, mapBounds: bounds,
|
currentZoom: 14.0, mapBounds: bounds,
|
||||||
uploadMode: UploadMode.production, maxNodes: 3,
|
uploadMode: UploadMode.production, maxNodes: 3,
|
||||||
);
|
);
|
||||||
|
|
||||||
testNodes = makeNodes();
|
testNodes = makeNodes();
|
||||||
final result2 = dataManager.getNodesForRendering(
|
final result2 = dataManager.getNodesForRendering(
|
||||||
currentZoom: 14, mapBounds: bounds,
|
currentZoom: 14.0, mapBounds: bounds,
|
||||||
uploadMode: UploadMode.production, maxNodes: 3,
|
uploadMode: UploadMode.production, maxNodes: 3,
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -151,7 +151,7 @@ void main() {
|
|||||||
];
|
];
|
||||||
|
|
||||||
final result = dataManager.getNodesForRendering(
|
final result = dataManager.getNodesForRendering(
|
||||||
currentZoom: 14,
|
currentZoom: 14.0,
|
||||||
mapBounds: bounds,
|
mapBounds: bounds,
|
||||||
uploadMode: UploadMode.production,
|
uploadMode: UploadMode.production,
|
||||||
maxNodes: 10,
|
maxNodes: 10,
|
||||||
|
|||||||
Reference in New Issue
Block a user