Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

27 lines
561B

  1. using GpsCardGatewayPosition.Model.GatewayEntity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace GpsCardGatewayPosition.Common
  8. {
  9. public class Bounds
  10. {
  11. public Point SW { get; set; }
  12. public Point NE { get; set; }
  13. public Bounds(Point sw, Point ne)
  14. {
  15. SW = sw;
  16. NE = ne;
  17. }
  18. public Point GetCenter()
  19. {
  20. return new Point((SW.Lng + NE.Lng) / 2, (SW.Lat + NE.Lat) / 2);
  21. }
  22. }
  23. }