using Darnton.Blazor.Leaflet.LeafletMap; namespace CaritasPWA.Shared.Models.OSM { public class MapStateViewModel { public double MapCentreLatitude { get; set; } public double MapCentreLongitude { get; set; } public int Zoom { get; set; } public Point MapContainerSize { get; set; } public Bounds MapViewPixelBounds { get; set; } public Point MapLayerPixelOrigin { get; set; } } }