Ejemplo n.º 1
0
 public StreetService(GeometryService geometryService, CoordinatesService coordService, OsmStore osmStore, SolidGeometryService solidGeometryService)
 {
     this.geometryService      = geometryService;
     this.coordService         = coordService;
     this.osmStore             = osmStore;
     this.solidGeometryService = solidGeometryService;
 }
Ejemplo n.º 2
0
 public View3DService(CoordinatesService coordService, OsmStore osmStore)
 {
     this.coordService = coordService;
     this.osmStore     = osmStore;
 }
Ejemplo n.º 3
0
 public GeometryService(CoordinatesService coordService, OsmStore osmStore)
 {
     this.coordService = coordService;
     this.osmStore = osmStore;
 }
Ejemplo n.º 4
0
 public BuildingService(GeometryService geometryService, CoordinatesService coordService, SolidGeometryService shapeService)
 {
     this.geometryService = geometryService;
     this.coordService    = coordService;
     this.shapeService    = shapeService;
 }
Ejemplo n.º 5
0
 public TopoSurfaceService(CoordinatesService coordService, OsmStore osmStore)
 {
     this.coordService = coordService;
     this.osmStore     = osmStore;
 }