Announcement

Collapse
No announcement yet.

Find my iPhone plugin for HS3

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    Originally posted by jrhubott View Post
    See my updated first post for the required services. I also will be releasing a new version today that has Radius based Geofences that can be triggered on.
    The link in the first post is to a developer's page.
    HS4 Pro, 4.2.19.0 Windows 10 pro, Supermicro LP Xeon

    Comment


      #17
      New version posted with support for GeoFences.

      Comment


        #18
        Will it support multiple accounts? In other words, will I be able to use this for each family member's iDevice?

        Comment


          #19
          Originally posted by jbbtex View Post
          Will it support multiple accounts? In other words, will I be able to use this for each family member's iDevice?
          I will add this in the future. Right now it just supports one account. That account can have unlimited devices on it though.

          Jason

          Comment


            #20
            This may be a stupid question. But this plugin wears all your batteries down quicker right? In other words, Apple doesn't poll for devices location unless queried, right?


            Sent from my iPad using Tapatalk HD

            Comment


              #21
              Originally posted by jayman13 View Post
              This may be a stupid question. But this plugin wears all your batteries down quicker right? In other words, Apple doesn't poll for devices location unless queried, right?


              Sent from my iPad using Tapatalk HD
              I have not seen a reduction in battery life. I'm note requesting a position update but I don't know what apple does behind the scenes.

              I may change the logic to only request more updates when it see's the device in motion if battery life becomes a concern.

              Jason

              Comment


                #22
                I am here. Not incredibly noticeable. It appears apple only tells the device to determine location when asked so if every 30 s that is occurring it will likely cause sig battery drain throughout the day. Having an algorithm for determining when someone is moving would be ideal I think. Also, it would also be good to be able to pick which devices you want to track.

                Comment


                  #23
                  Very cool I've been waiting for someone to set up and start working on the iOS native support. Got any other ideas of plugins?

                  Comment


                    #24
                    A few questions.

                    1) I cannot add more than one geofence location. Is code below correct? (I replaced some variables )
                    2) Reverse geocoding doesn't work. I use the API key for a project I just created. Enabled both the API's. Device remains unknown?
                    3) Status device remains 'initialising'. Is this normal?

                    PHP Code:
                      <RadiusGeoFences>
                        <
                    RadiusGeoFence>
                          <
                    Name>Home</Name>
                          <
                    Value>0</Value>
                          <
                    Latitude>52.xxxxxx</Latitude>
                          <
                    Longitude>4.xxxxxx</Longitude>
                          <
                    RadiusInMiles>0.5</RadiusInMiles>
                        </
                    RadiusGeoFence>
                        <
                    RadiusGeoFence>
                          <
                    Name>Werk</Name>
                          <
                    Value>0</Value>
                          <
                    Latitude>52.xxxxxx</Latitude>
                          <
                    Longitude>4.xxxxxx</Longitude>
                          <
                    RadiusInMiles>1</RadiusInMiles>
                        </
                    RadiusGeoFence>
                      </
                    RadiusGeoFences>
                      <
                    NextIndex>3</NextIndex>
                      <
                    Username>emailadress@hotmail.com</Username>
                      <
                    Password>password</Password>
                      <
                    GoogleApiKey>MY API KEY</GoogleApiKey

                    Comment


                      #25
                      Find my iPhone plugin for HS3

                      Make sure you enable the api for static maps in google

                      Comment


                        #26
                        Yes, and billing is for geolocation is also enabled.

                        Comment


                          #27
                          See attached image for settings google API
                          Attached Files

                          Comment


                            #28
                            Originally posted by Phaeton View Post
                            A few questions.

                            1) I cannot add more than one geofence location. Is code below correct? (I replaced some variables )
                            2) Reverse geocoding doesn't work. I use the API key for a project I just created. Enabled both the API's. Device remains unknown?
                            3) Status device remains 'initialising'. Is this normal?

                            PHP Code:
                              <RadiusGeoFences>
                                <
                            RadiusGeoFence>
                                  <
                            Name>Home</Name>
                                  <
                            Value>0</Value>
                                  <
                            Latitude>52.xxxxxx</Latitude>
                                  <
                            Longitude>4.xxxxxx</Longitude>
                                  <
                            RadiusInMiles>0.5</RadiusInMiles>
                                </
                            RadiusGeoFence>
                                <
                            RadiusGeoFence>
                                  <
                            Name>Werk</Name>
                                  <
                            Value>0</Value>
                                  <
                            Latitude>52.xxxxxx</Latitude>
                                  <
                            Longitude>4.xxxxxx</Longitude>
                                  <
                            RadiusInMiles>1</RadiusInMiles>
                                </
                            RadiusGeoFence>
                              </
                            RadiusGeoFences>
                              <
                            NextIndex>3</NextIndex>
                              <
                            Username>emailadress@hotmail.com</Username>
                              <
                            Password>password</Password>
                              <
                            GoogleApiKey>MY API KEY</GoogleApiKey

                            The following should work. You need to leave the Value 0 key present. This is used when no GeoFence matches.

                            Code:
                                <RadiusGeoFence>
                                   <Name>None</Name>
                                   <Value>0</Value>
                                   <Latitude>0</Latitude>
                                   <Longitude>0</Longitude>
                                   <RadiusInMiles>0</RadiusInMiles>
                                 </RadiusGeoFence>
                                <RadiusGeoFence>
                                  <Name>Home</Name>
                                   <Value>1</Value>
                                   <Latitude>52.xxxxxx</Latitude>
                                   <Longitude>4.xxxxxx</Longitude>
                                   <RadiusInMiles>0.5</RadiusInMiles>
                                 </RadiusGeoFence>
                                 <RadiusGeoFence>
                                   <Name>Werk</Name>
                                   <Value>2</Value>
                                   <Latitude>52.xxxxxx</Latitude>
                                   <Longitude>4.xxxxxx</Longitude>
                                   <RadiusInMiles>1</RadiusInMiles>
                                </RadiusGeoFence>

                            Comment


                              #29
                              Thanks. I'll check tomorrow. Have you seen my other two questions?

                              Verstuurd vanaf mijn Nexus 5 met Tapatalk

                              Comment


                                #30
                                Awesome potential! I noticed that it only pulls my devices. It does not show my family's devices that I can see on find my iphone. Is it possible to do this as well? I am using family sharing...

                                Comment

                                Working...
                                X