Exemplo n.º 1
0
 public GeoPoint(double longitude, double latitude)
 {
     Longitude = longitude;
     Latitude  = latitude;
     (X, Y)    = GeoHelper.ConvertToMercatorProjection(Latitude, Longitude);
 }