2018-01-15 23:24:12 +01: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'
|
|
|
|
|
|
|
|
|
2018-04-29 01:26:20 +02:00
|
|
|
async def async_setup(hass, config):
|
2018-01-15 23:24:12 +01:00
|
|
|
"""Register the built-in map panel."""
|
2018-04-29 01:26:20 +02:00
|
|
|
await hass.components.frontend.async_register_built_in_panel(
|
2018-08-16 14:21:43 +02:00
|
|
|
'map', 'map', 'hass:account-location')
|
2018-01-15 23:24:12 +01:00
|
|
|
return True
|