PolygonField.fromJson constructor

PolygonField.fromJson(
  1. Map<String, dynamic> json
)

Parse the incoming json and return a PolygonField Usage, assuming that u parse a incoming json source, then the runtime type is a _InternalLinkedHashMap: PolygonField.fromJson(Map<String, dynamic>.from(elem'location'))

Implementation

factory PolygonField.fromJson(Map<String, dynamic> json) {
  /// Create a variable with the type of the Field, to reconstruct the incoming json data.
  String type = json['type'];

  /// Create a variable with a list of a list with coordinates.
  List<List<List<double>>> coordinates = [];

  /// Loop over the coordinates and add them to the coordinates list.
  json['coordinates'].forEach((elem) {
    coordinates.add(List<List<dynamic>>.from(elem).map((e) => e.cast<double>()).toList());
  });

  /// Return a [PolygonField] with the variables [type] and [coordinates]
  return PolygonField(
      type: type,
      coordinates: coordinates
  );
}