Life360 Live Map

It refreshes every 5 minutes. It’s the very last line with the setTimeout() call if you want to adjust it, but I would caution you not to adjust it too low since it’s effectively polling the Maker API. (5 minutes * 60 seconds * 1000 millis = 300,000)

The default zoom level and how you could tweak things is discussed here: Hubitat Map Tile (Life360 or Latitude/Longitude) - #29 by josh

In theory, the custom tile code could be adjusted to have some sort of overlay on it that you could click. I’m heads down on some larger projects at the moment, so I don’t have the spare cycles available but it’s all open source if someone wants to take a crack at it.


Edit: I figured I should probably also clarify the two approaches again too.

  1. Hubitat Map Tile - this is a custom tile that directly renders a map in a tile and grabs the latitude/longitude values from a device and maps them

    • It does not use the iframe attribute from the gomce62.web thread you mentioned, just the lat/long
  2. HTML Attribute Custom Tile - this takes an attribute from a device which was stuffed with HTML (an unofficial ‘hack’ that some community drivers use) and renders that attribute in a sandbox

    • This can use the iframe attribute from the gomce62.web thread you mentioned, so any zoom levels or hyperlink features would be retained, but it hasn’t specifically been tested with that driver.