Skip to content

Commit ddead74

Browse files
committed
Fix lints, remove comment
1 parent baec562 commit ddead74

File tree

5 files changed

+11
-12
lines changed

5 files changed

+11
-12
lines changed

arcgis_map/example/lib/main.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,6 @@ class _ExampleMapState extends State<ExampleMap> {
302302
Field(name: 'family', type: 'string'),
303303
Field(name: 'name', type: 'string'),
304304
],
305-
// symbol: _markerSymbol,
306305
featureReduction: FeatureReductionCluster().toJson(),
307306
elevationMode: elevationMode,
308307
),

arcgis_map_web/lib/src/arcgis_map_web_controller.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ class ArcgisMapWebController {
300300
map: _map,
301301
center: [
302302
_mapOptions.initialCenter.longitude,
303-
_mapOptions.initialCenter.latitude
303+
_mapOptions.initialCenter.latitude,
304304
],
305305
zoom: _mapOptions.zoom,
306306
padding: _activePadding ?? _mapOptions.padding,

arcgis_map_web/lib/src/components/esri_map.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class EsriMap {
2121
},
2222
).toList(growable: false),
2323
}),
24-
)
24+
),
2525
}),
2626
);
2727
} else {

arcgis_map_web/lib/src/layer_controller.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ class LayerController {
857857
if (animationOptions != null) {
858858
targetOptions.addAll({
859859
'duration': animationOptions.duration,
860-
'easing': animationOptions.animationCurve.value
860+
'easing': animationOptions.animationCurve.value,
861861
});
862862
}
863863

@@ -879,7 +879,7 @@ class LayerController {
879879
if (animationOptions != null) {
880880
targetOptions.addAll({
881881
'duration': animationOptions.duration,
882-
'easing': animationOptions.animationCurve.value
882+
'easing': animationOptions.animationCurve.value,
883883
});
884884
}
885885

@@ -908,7 +908,7 @@ class LayerController {
908908
if (animationOptions != null) {
909909
targetOptions.addAll({
910910
'duration': animationOptions.duration,
911-
'easing': animationOptions.animationCurve.value
911+
'easing': animationOptions.animationCurve.value,
912912
});
913913
}
914914
view.goTo(jsify({'zoom': newZoomLevel}), jsify(targetOptions)).toFuture();
@@ -1154,7 +1154,7 @@ class LayerController {
11541154
}) async {
11551155
final basemapToggle = BasemapToggle(
11561156
jsify({
1157-
"viewModel": jsify({"view": view, "nextBasemap": baseMap.value})
1157+
"viewModel": jsify({"view": view, "nextBasemap": baseMap.value}),
11581158
}),
11591159
);
11601160

arcgis_map_web/lib/src/model_extension.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ extension on SimpleMarkerSymbol {
120120
outlineColor.red,
121121
outlineColor.green,
122122
outlineColor.blue,
123-
outlineColorOpacity
123+
outlineColorOpacity,
124124
],
125125
'width': outlineWidth,
126126
},
@@ -134,7 +134,7 @@ extension on PictureMarkerSymbol {
134134
'width': '${width}px',
135135
'height': '${height}px',
136136
'xoffset': '${xOffset}px',
137-
'yoffset': '${yOffset}px'
137+
'yoffset': '${yOffset}px',
138138
};
139139
}
140140

@@ -146,10 +146,10 @@ extension on SimpleFillSymbol {
146146
'color': [
147147
outlineColor.red,
148148
outlineColor.green,
149-
outlineColor.blue
149+
outlineColor.blue,
150150
], // White
151-
'width': outlineWidth
152-
}
151+
'width': outlineWidth,
152+
},
153153
};
154154
}
155155

0 commit comments

Comments
 (0)