PWA Fundvelo der Caritas.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MarkerViewModel.cs 415B

1234567891011
  1. namespace CaritasPWA.Shared.Models.OSM {
  2. public class MarkerViewModel {
  3. public bool Keyboard { get; set; } = true;
  4. public string Title { get; set; }
  5. public string Alt { get; set; }
  6. public int ZIndexOffset { get; set; }
  7. public double Opacity { get; set; } = 1.0f;
  8. public bool RiseOnHover { get; set; }
  9. public int RiseOffset { get; set; } = 250;
  10. }
  11. }