2019-02-14 04:35:12 +00:00
|
|
|
"""Support for showing device locations."""
|
2019-07-31 19:25:30 +00:00
|
|
|
DOMAIN = "map"
|
2018-01-15 22:24:12 +00:00
|
|
|
|
|
|
|
|
2018-04-28 23:26:20 +00:00
|
|
|
async def async_setup(hass, config):
|
2018-01-15 22:24:12 +00:00
|
|
|
"""Register the built-in map panel."""
|
2019-05-30 11:37:01 +00:00
|
|
|
hass.components.frontend.async_register_built_in_panel(
|
2019-07-31 19:25:30 +00:00
|
|
|
"map", "map", "hass:tooltip-account"
|
|
|
|
)
|
2018-01-15 22:24:12 +00:00
|
|
|
return True
|