I have a question guys. I can't make google links for geo points.I don't know why that code is not working.
for example I have that point below: 30.152169 41.070933
I can't see this location on Google Maps when I tryed like below.Could you please help me ?
public NetTopologySuite.Geometries.Geometry? GeoItem { get; set; }
public string? GoogleMapsLink {get;set;}
public void Links()
{
if(this.GeoItem !=null)
{
string x = this.GeoItem.Coordinate.X.ToString();
string y = this.GeoItem.Coordinate.Y.ToString();
string googleUrl = $"https://www.google.com/maps/@{x},{y},17.5z";
this.GoogleMapsLink=googleUrl;
}
}