PWA Fundvelo der Caritas.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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