Questions tagged [google-latitude]

Google Latitude is a (now discontinued) tool to track and share your location.

Google Latitude is a (now discontinued) tool to track your location and to share it with others. In addition to current location, it allows for queries of historical location. You can use the Google Latitude API to access and update locations programmatically.

Google Latitude was released in February 2009 and was officially discontinued in August 2013. Some of the functionality of Google Latitude was incorporated into Google+.

93 questions
0
votes
1 answer

Using PHP to extract data from an ATOM feed and using it reverse lookup coordinates to an actual address

Basically I have a public feed: http://www.google.com/latitude/apps/badge/api?user=-1671995934285587708&type=atom If you go to my Google Profile you can see it says: "Gareth is in 6 Seaside Gardens, Mullaloo WA 6027, Australia (1 minute ago)"…
gbhall
  • 13,139
  • 9
  • 37
  • 42
0
votes
1 answer

Update Google Latitude location from 3rd party android app

I am working on an app that uses the GPS on my g1. I'm wondering if it is possible that when I am using the app I can have it update my Google Latitude location every x number of minutes. Any thoughts on how this may be accomplished?
orange
  • 1
0
votes
1 answer

Merge two MySQL query and get distance between two zip codes

i want to get distance between two zip codes. HTML form have a field i.e ZIP CODE, Miles(distance).\ DB structure with 7000 records. id | name | zip_code | lat | lng | status| MySQL query $query = "SELECT *, 3963 * acos(cos(radians(90-lat…
Naresh
  • 2,761
  • 10
  • 45
  • 78
0
votes
1 answer

How to calculate for which quadrant is belong (coordinates) latitude and latitude point

I know top left corner and also I know the width and height of the square. Note (calculation) can be rounded because the distance just 0.25 mile. Also I know the point which is inside that square. How to calculate for which square the given point…
Sergey
  • 7,933
  • 16
  • 49
  • 77
0
votes
1 answer

how to integrate google latitude into a google map

I am setting up a website that shows a Google map and the location of various Google Latitude users on that map via markers. Thing is, I can't find the exact code to do that. I have trawled through the Google API docs which are extensive but lacking…
khany
  • 1,167
  • 15
  • 33
0
votes
3 answers

How to geolocate specific smartphones with javascript or jQuery Mobile?

I'm trying to track specific smartphones for a cab company using jQuery Mobile. What would be the easiest way to go about this? I've heard good things about Google Latitude, but it's still a little tricky. Is there a way to "plug in" to specific…
Brad
  • 241
  • 2
  • 5
  • 12
0
votes
1 answer

how to get status element from geocode url

i want to get the value of the status element from geocode url. { "results": [ { "address_components": [ { "long_name": "India", "short_name": "IN", …
ishk
  • 1,873
  • 5
  • 19
  • 22
0
votes
2 answers

Send users new location to Google Latitude API via Oauth2.0

Im currently working on an app that will request GPS location updates. I have successfully implemented it as well as the latitude API and OAuth 2.0. It seems like the latitude API only reads the users last google latitude update. I dont know how to…
John Nguyen
  • 547
  • 1
  • 11
  • 25
0
votes
1 answer

Trying to update Google Latitude of CurrentLocation using google-api-ruby-client returns "400 Invalid Value"

I am trying to update CurrentLocation to Google Latitude using google-api-ruby-client. I already have an access token, and refresh token which I obtained from mobile app and sent to by server on Ruby on Rails. The following is the code which I am…
buddy
  • 189
  • 2
  • 16
0
votes
1 answer

Google Latitude API returns 0 results for location history

I'm trying to retrieve my location history using v1 (via OAuth 2.0) of the Google Latitude API, specifically the list method. When attempting to retrieve records between two timestamps I do not get any locations back. However, I can retrieve my most…
Ross
  • 46,186
  • 39
  • 120
  • 173
-1
votes
1 answer

Add X meters in Latitude and Longitude and generate new latitude and longitude in PHP

Suppose I have latitude= 21.15490584 and longitude= 79.04627271 and add X meters, am I able to calculate new coordinates?
Ashwin
  • 5
  • 1
  • 4
-1
votes
1 answer

how to get lat long from google map when our own geojson layer is there?

google.maps.event.addListener(map, 'click', function( event ){ alert( "Latitude: "+event.latLng.lat()+" "+", longitude:"+event.latLng.lng() ); }); this code gives us lat long when we click on google map. but it does not work when there is our…
-1
votes
1 answer

Google maps set limited area with Latitude and Longitude

I have some problem with google map. I don't know how do that. I need to set limitation on google maps wit this cordinates Latitude limits 59.132936N <-> 67.600849N Longitude limits 11.387356E <-> 21.029170E how can i do that? thanks
-1
votes
1 answer

Calculate miles base latitude two cities

I wrote a function calculate distance between city base https://developers.google.com/maps/articles/phpsqlsearch_v3?csw=1 Austin, TX 78723: lat:30.282911 long:-97.712541 Austin, TX 78730: lat:30.3732514 long: -97.8395151 insert 78730 into market and…
Tung
  • 1
  • 1
  • 5
-1
votes
2 answers

Can I see if coordinate A is within 50 meters of coordinate B using Google Maps API?

Problem I have two coordinates: A B Solution? Can I see if coordinate A is within 50 meters of coordinate B using Google Maps API? Other Solution? If not, is there a way to do this without using google API?
Jamie Hutber
  • 26,790
  • 46
  • 179
  • 291