Geometry.fromJson constructor
Implementation
factory Geometry.fromJson(Map<String, dynamic> json) => Geometry(
type: geometryTypeValues.map[json["type"]],
coordinates:
List<double>.from(json["coordinates"].map((x) => x.toDouble())),
);