Beispiel #1
0
 internal MapboxCoordinates1d(MapboxLatLng value) : base()
 {
     Value = value;
 }
Beispiel #2
0
 public MapboxBoundingBox(double west, double south, double east, double north)
 {
     _southWest = new MapboxLatLng(west, south);
     _northEast = new MapboxLatLng(east, north);
 }