I have posted over in hubitat to see how this iframe can be added to sharptools, and am awaiting a reply. Could you possibly assist? His device works ace, I just need to have this in sharptools instead of hubitat’s default ui.
I can read the lat/long from virtually anywhere. The device created by gomce happens hhas some clever code which then takes this lat/long, creates an frame with the ability to set the zoom level on a Google map.
If I were using the default hubitat UI, I could have this device on it showing the map section in my image above. When you click the map, it open fullscreen in Google maps itself. You can update the frame location/image at any time via webcore or whatever.
If I could simply add this to sharptools, then job done.
I can’t. It only shows a bit of html code or whatever.
The reason it to have a map showing family location.
I think the Life360 map custom tile was potentially OK, but instead of taking lat and long, it asks for access tokens etc. Not relevant now, unfortunately
While the original Hubitat Map Custom Tile was designed around a Life360 driver, it should work with any driver which reports a latitude and longitude attribute.
You can use the Hubitat HTML Attribute Custom Tile to display attributes that stuff HTML into an attribute. The linked thread explains the what and why.
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)
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.
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
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.
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)
can this be updated at will via say, a webcore command?
Not as it’s currently designed. The Custom Tile is a bit of code that runs directly within your browser. So in this case, that 5 minute timer is running directly in your browser and you can’t really ‘send’ an update to it.
There’s a feature request to make Custom Tiles have direct access to Things which would make it so the latitude / longitude attribute updates would be realtime rather than relying on polling the Maker API within the Custom Tile. Personally, it’s a feature I would love to implement, but it hasn’t quite picked up enough votes from the community yet.
Changing the zoom level might seem a bit more intimidating than it actually is. I’m pretty confident you should be able to tweak the polling interval and zoom level. Feel free to post in the other thread for the Hubitat Map Tile if you need help with that.
Have you tried the HTML Attribute Custom Tile approach? That would use the existing zoom and clicking features of the driver, but also relies on the polling.
Hello - Quick question - - - Am I on the only one who’s having issues with this Life360 integration? I intermittently see the “failed to get circle” error multiple times per day. See the screenshot below. I’ve visited the Life360 link on the 1st post of this thread to try to reauthorize a token but it the authorize button doesn’t allow do anything when clicked (also shown below)
No you’re not. That integration was not an official. Life360 made changes to the API that is preventing us from using it. I am currently building a custom tile that will mimic this, however it will require the use of an Android app called Tasker to transmit the location data.
Thanks just_jake. That would be hugely helpful. I’m aware of Tasker but haven’t used it directly in the past. This change by Life360 is frustrating. They abandoned their Alexa skill last year too. There was a key thing that was awesome with that skill. I was able to create a routine where I could ask Alexa where either of my kids were and Alexa via the Life360 skill would tell me their location. I miss that :-).
I use Geofency on iPhone - works very well. FYI - the Life360 connection still seems to run on my Hubitat despite all of the other things working. There is a long thread on this and I can’t figure out why it still works - even after I switched to a new hub, etc.
@josh I wanted to see if we could reboot this integration using the GPS location in a variable? I have this information exposed through a number of ways in Hubitat and Home Assistant. Would it be easy to update this custom tile to specify a variable and then use that to update the location?
This tile is specifically designed for integration via the Life 360 API, but I’ve gone ahead and updated what we formerly called the ‘Hubitat Map Tile’ to take advantage of the new Access to Things in Custom Tiles feature so it can be used with any device in SharpTools which exposes a latitude and longitude attribute:
Hey there. I figured I’d check in with you on this . How’s it going with the custom tile that you’re building? I’m very curious as I relied on that Life360 integration.