Exemplo n.º 1
0
 public CircleGeoShape(GeoCoordinate location) : base("circle")
 {
     this.Coordinates = location;
 }
Exemplo n.º 2
0
 public PointGeoShape(GeoCoordinate coordinates)
     : base("point")
 {
     this.Coordinates = coordinates;
 }