core/homeassistant/components/map.py

15 lines
404 B
Python
Raw Normal View History

2018-01-15 22:24:12 +00:00
"""
Provides a map panel for showing device locations.
For more details about this component, please refer to the documentation at
https://home-assistant.io/components/map/
"""
DOMAIN = 'map'
async def async_setup(hass, config):
2018-01-15 22:24:12 +00:00
"""Register the built-in map panel."""
await hass.components.frontend.async_register_built_in_panel(
2018-08-16 12:21:43 +00:00
'map', 'map', 'hass:account-location')
2018-01-15 22:24:12 +00:00
return True