PWA Fundvelo der Caritas.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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. }