Skip to content

Commit dbf1f9e

Browse files
committed
Move enum outside class
1 parent 526ec24 commit dbf1f9e

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

Runtime/CesiumUrlTemplateRasterOverlay.cs

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@
55

66
namespace CesiumForUnity
77
{
8+
/// <summary>
9+
/// Specifies the type of projection used for projecting a URL template raster overlay.
10+
/// </summary>
11+
public enum CesiumUrlTemplateRasterOverlayProjection
12+
{
13+
/// <summary>
14+
/// The raster overlay is projected using Web Mercator.
15+
/// </summary>
16+
WebMercator,
17+
/// <summary>
18+
/// The raster overlay is projected using a geographic projection.
19+
/// </summary>
20+
Geographic
21+
}
22+
823
/// <summary>
924
/// A raster overlay that loads tiles from a templated URL.
1025
/// </summary>
@@ -317,20 +332,5 @@ public class HeaderEntry
317332
/// </summary>
318333
public string Value;
319334
}
320-
321-
/// <summary>
322-
/// Specifies the type of projection used for projecting a URL template raster overlay.
323-
/// </summary>
324-
public enum CesiumUrlTemplateRasterOverlayProjection
325-
{
326-
/// <summary>
327-
/// The raster overlay is projected using Web Mercator.
328-
/// </summary>
329-
WebMercator,
330-
/// <summary>
331-
/// The raster overlay is projected using a geographic projection.
332-
/// </summary>
333-
Geographic
334-
}
335335
}
336336
}

0 commit comments

Comments
 (0)