PWA Fundvelo der Caritas.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

MapStateViewModel.cs 440B

123456789101112
  1. using Darnton.Blazor.Leaflet.LeafletMap;
  2. namespace CaritasPWA.Shared.Models.OSM {
  3. public class MapStateViewModel {
  4. public double MapCentreLatitude { get; set; }
  5. public double MapCentreLongitude { get; set; }
  6. public int Zoom { get; set; }
  7. public Point MapContainerSize { get; set; }
  8. public Bounds MapViewPixelBounds { get; set; }
  9. public Point MapLayerPixelOrigin { get; set; }
  10. }
  11. }