Advertisement
JLindvig

Map Markers

Jan 31st, 2023
676
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.62 KB | None | 0 0
  1. template:
  2.   sensor:
  3.     - name: travel map markers
  4.       unique_id: a9423c743e614cc9b2ee145b05bef754
  5.       state: https://maps.googleapis.com/maps/api/staticmap?
  6.       attributes:
  7.         markers: >-
  8.           {% for marker in state_attr('input_select.destinations', 'options') %}
  9.             {{- marker.split(',')[:-1] | join(',') -}}
  10.             {% if not loop.last %}|{% endif -%}
  11.           {% endfor %}
  12.         maptype: hybrid                 # roadmap, satellite, terrain, hybrid
  13.         scale: 1                        # 1 or 2, 2 = double size
  14.         size: 640x640                   # Size in pixels
  15.         key: !secret GOOGLE_MAP_KEY     # Our secret API key
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement