]> git.r.bdr.sh - rbdr/map/blobdiff - Map/MapRenderComponents/MapAxes.swift
Release 1.1.0
[rbdr/map] / Map / MapRenderComponents / MapAxes.swift
index e7d65f4677afb1ff642bfd9e9eecee958cdc51a3..a6e2f870074800b7ef41a8bd1fcad15ab4d1ed6e 100644 (file)
@@ -8,7 +8,7 @@ struct MapAxes: View {
   let lineWidth: CGFloat
   let evolution: Stage
   let stages: [CGFloat]
-  let stageHeight = CGFloat(50.0)
+  let stageHeight = CGFloat(100.0)
   let padding = CGFloat(5.0)
 
   var color: Color {
@@ -40,13 +40,13 @@ struct MapAxes: View {
       Text("Uncharted")
         .font(.title3)
         .foregroundColor(color)
-        .frame(width: mapSize.width / 4, height: stageHeight, alignment: .topLeading)
-        .offset(CGSize(width: 0.0, height: -stageHeight / 2.0))
+        .frame(width: mapSize.width / 4, height: stageHeight / 2.0, alignment: .topLeading)
+        .offset(CGSize(width: 0.0, height: -stageHeight / 4.0))
       Text("Industrialised")
         .font(.title3)
         .foregroundColor(color)
-        .frame(width: mapSize.width / 4, height: stageHeight, alignment: .topLeading)
-        .offset(CGSize(width: mapSize.width - 100.0, height: -stageHeight / 2.0))
+        .frame(width: mapSize.width / 4, height: stageHeight / 2.0, alignment: .topLeading)
+        .offset(CGSize(width: mapSize.width - 100.0, height: -stageHeight / 4.0))
 
       Text(evolution.i)
         .font(.title3)