Skip to content

Commit

Permalink
Revert Coordination/Extent format
Browse files Browse the repository at this point in the history
  • Loading branch information
lolochristen committed Feb 2, 2024
1 parent 385d941 commit cb76393
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/OpenLayers.Blazor/Coordinate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public bool Equals(Coordinate? other)

public override string ToString()
{
return $"{X}, {Y}";
return $"{X}/{Y}";
}

public static implicit operator Coordinate(string val)
Expand Down
2 changes: 1 addition & 1 deletion src/OpenLayers.Blazor/Extent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public override int GetHashCode()

public override string ToString()
{
return $"{X1}, {Y1} : {X2}, {Y2}";
return $"{X1}/{Y1}:{X2}/{Y2}";
}

public double[] ToArray()
Expand Down

0 comments on commit cb76393

Please sign in to comment.