Skip to content

Commit 07d4818

Browse files
committedDec 3, 2024
- fix issue of wrong LayerPosition
1 parent 6d1a251 commit 07d4818

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/libs/Mapbox.Maui/Models/Styles/Layers/LayerPosition.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ private LayerPosition(object parameter, LayerPositionEnum @enum)
1313

1414
public static LayerPosition Unknown() => new LayerPosition(null, LayerPositionEnum.Unknown);
1515
public static LayerPosition Above(string layerId) => new LayerPosition(layerId, LayerPositionEnum.Above);
16-
public static LayerPosition Below(string layerId) => new LayerPosition(layerId, LayerPositionEnum.Above);
16+
public static LayerPosition Below(string layerId) => new LayerPosition(layerId, LayerPositionEnum.Below);
1717
public static LayerPosition At(uint index) => new LayerPosition(index, LayerPositionEnum.At);
1818
}
1919

0 commit comments

Comments
 (0)