Ejemplo n.º 1
0
 public async void GetBoundryGeoJson()
 {
     var service = new SubdivisionService();
     var boundary = await service.BoundaryGeoJson(1001113); // "Newfoundland and Labrador";"Trepassey"
     Assert.That(boundary, Is.Not.Null);
     Assert.That(boundary.Geometry.Type, Is.EqualTo(GeoJSON.Net.GeoJSONObjectType.Polygon));
 }