Questions tagged [google-geolocation]

The Google Maps Geolocation API also called google-geolocation api is an web interface that can return a location and accuracy radius based on information about cell towers and WiFi nodes that the mobile client can detect.

The Google Maps Geolocation API also called google-geolocation api is an interface that can return a location and accuracy radius based on information about cell towers and WiFi nodes that the mobile client can detect.

Google geolocation api communications are done over HTTPS using POST. Both request and response are formatted as JSON, and the content type of both is application/json.

277 questions
0
votes
2 answers

Execute function (geolocation) when user navigates to a specific part

I'm using this free template for a site that I'm building: http://blackrockdigital.github.io/startbootstrap-scrolling-nav/ I'm using a geolocation service (google). But I don't want to force the user to push "Approve" every time they enter the site,…
Robin
  • 740
  • 3
  • 12
  • 30
0
votes
1 answer

ngCordova getCurrentLocation causes blank google map

I know there are a ton of support forums, but it seems that no one quite has the answer that I'm searching for. So, in detail, the below is my scenario (I am developing in ionic frame). I am using ngCordova cordova-plugin-geolocation to obtain my…
LostJon
  • 2,287
  • 11
  • 20
0
votes
1 answer

Track user location in Realtime using Polylines in Google Maps (Android)

I have some experience with Android, but am new to using the Google Maps API and Location Services. I am trying to show the user's movement on a MapFragment by moving the tracker and drawing a Polyline over where the user has been, sort of like…
0
votes
1 answer

Chrome.runtime doesn't work with activate button

Hi I am trying to automate a piece of code for Google extension to change Geolocation. I want it to work with Activate/Deactivate button as: When I remove the IF statement from "Content.js" it works fine but with IF statement it doesn't work. Please…
0
votes
1 answer

Cant find user location when apk installed on android phone

I have created an ionic angularjs ngCordova mobile app, wherein I have used ngCorodova geolocation plugin in order to get user location. when I am testing this on browser it works fine. but when same I [android-app.apk] I install on mobile app…
AngryJS
  • 955
  • 5
  • 23
  • 47
0
votes
1 answer

How to switch on geolocation in Google Maps Angular JS?

I use library Angular Google Maps In documentation I have not found nothing about geolocation. I need use an optional plug-in for it? How to use geolocation in this library?
vaved
  • 129
  • 1
  • 1
  • 12
0
votes
1 answer

How to add tags using Geolocation with Tags Input?

I want to add tags input of google geolocation address. I am using this geolocation Autofill Address + Google Maps API This is bootstrap tags input. http://timschlechter.github.io/bootstrap-tagsinput/examples/ If I type address and select…
Belal
  • 415
  • 2
  • 5
  • 18
0
votes
1 answer

Google Maps Geolocation API is not giving valid responses

I have a free trial account for Google Maps Geolocation API, which comes with quota of 100 requests/day. A few weeks ago I was able to successfully send JSON requests with cell tower info and get JSON responses with accurate coordinates. Today, I'm…
wrapperapps
  • 937
  • 2
  • 18
  • 30
0
votes
3 answers

How to write a mysql query that selects all stores (latitudes and longitudes) ORDER BY nearer to your position

I am making a site in which I have to show all stores on a list sorted in a way that the nearer stores, to the users current location, come first and far ones come later. I need a MySQL query that selects all stores from database ORDER BY users…
Danish Jameel
  • 23
  • 1
  • 5
0
votes
1 answer

Location based data in azure table storage

I am designing an app which has a feature that allows a user to store geolocation based data, then later on allow other users to query for those data that falls within a given radius of their current geolocation. The question is what is the best…
0
votes
1 answer

Google Maps will not show inside my div id="map"

I am following a tutorial that can locate a friend (their mobile) and pinpoint them on a Google map. All was going well including getting my coordinates and printing them to screen and putting them inside my
but now I am…
GGstudent
  • 103
  • 1
  • 1
  • 9
0
votes
1 answer

how to get angle using two latitude and longitude

i have an app in which i want to do some custom compass functionality suppose i have location A and location B i mark my location (Location A) then i move to some distance my compass should point to Location A wherever i can move i am referencing…
0
votes
0 answers

Google geolocation gives coordinates for invalid addresses

When using googles geolocation, sending in just random numbers or an address that does not exist, it still gives us an answer with a location somewhere. Why does it give a location on an address that clearly does not…
0
votes
1 answer

Uncaught TypeError: Cannot read property 'length' of null

I used google map javascript V3 API for this module. This code working fine untill we don't drag the map, but when i drag the map i'll get "Uncaught TypeError: Cannot read property 'length' of null "(from google chrome inspect element) Code: …
user3863222
  • 13
  • 1
  • 4
0
votes
0 answers

How to put async task returned values into variables (global?)

I have to use google (or similar) geocode APIs to obtain information (state, country, address) by latitude and longitude. I've googled a lot and I've found some useful code, but this code puts information in an alert box. I've found tips about…