child: new FlutterMap(
options: new MapOptions(
center: new LatLng(51.5, -0.09),
zoom: 5.0,
),
layers: [
new TileLayerOptions(
urlTemplate:
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
subdomains: ['a', 'b', 'c'],
maxZoom: 3),
new PolylineLayerOptions(
polylines: [
new Polyline(
points: points,
strokeWidth: 4.0,
color: Colors.purple),
],
)
],
),