nathan-gs / ha-map-card

A Map Card for Home Assistant
https://community.home-assistant.io/t/map-card-a-slightly-improved-map-card/693088
MIT License
15 stars 4 forks source link

History Markers Not SHowing #30

Closed totalitarian closed 1 month ago

totalitarian commented 1 month ago

Here is my working config for the regular map

image
type: map
entities:
  - entity: device_tracker.archies_iphone
default_zoom: 15
hours_to_show: 24
theme_mode: light

For some reason when I try to create via this addon it doesn't show the markers. Any idea why?

image
type: custom:map-card
entities:
  - entity: device_tracker.archies_iphone
zoom: 15
card_size: 10
history_start: 24 hours ago
Hiekkaharju commented 1 month ago

You'll have to specify also history end time, e.g. history_end: now

totalitarian commented 1 month ago

You'll have to specify also history end time, e.g. history_end: now

Just tried that but same issue

type: custom:map-card
entities:
  - entity: device_tracker.archies_iphone
zoom: 15
card_size: 10
history_start: 24 hours ago
history_end: now
nathan-gs commented 1 month ago

The history options are per entity

totalitarian commented 1 month ago

The history options are per entity

Perfect, thanks!