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.
| 1234567891011 |
- namespace CaritasPWA.Shared.Models.OSM {
- public class MarkerViewModel {
- public bool Keyboard { get; set; } = true;
- public string Title { get; set; }
- public string Alt { get; set; }
- public int ZIndexOffset { get; set; }
- public double Opacity { get; set; } = 1.0f;
- public bool RiseOnHover { get; set; }
- public int RiseOffset { get; set; } = 250;
- }
- }
|