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