// -----------------------------------------------------------------------
//
// TODO: Update copyright text.
//
// -----------------------------------------------------------------------
namespace OsmReader.OsmData.Elements
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
///
/// TODO: Update summary.
///
public class OsmBounds
{
[XmlAttribute(AttributeName = "minlat")]
public double minlat { get; set; }
[XmlAttribute(AttributeName = "minlon")]
public double minlon { get; set; }
[XmlAttribute(AttributeName = "maxlat")]
public double maxlat { get; set; }
[XmlAttribute(AttributeName = "maxlon")]
public double maxlon { get; set; }
public override string ToString()
{
return "minlat=" + minlat
+ ", minlon=" + minlon
+ ", maxlat=" + maxlat
+ ", maxlon=" + maxlon;
}
}
}