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
1 answer

Android Geolocation Sample Request, Result not found

I want to get my phone's estimate location through Cell Towers information. I post the sample request from the Google Geolocation through Android. What's wrong in my code to post the…
0
votes
0 answers

Google map's google.maps.LatLng changing input value

I have been working with the google map api in a current project. I perform a query for nearby places using googles service.nearbySearch functionality. I then create a new google.maps.LatLng using the latitude and longitude values from the results…
0
votes
1 answer

Google maps APIs for Business returning error code 403 reason accessNotConfigured

I am using Google Maps APIs for business to get location against Cell IDs and MAC addresses of WiFi access point. That code was working fine on beta server. Now as I moved to production server, I am getting following response { "error": { "errors":…
0
votes
1 answer

How to customise JavaScript geolocation dialogue box with jQuery UI dialog

Is it possible to customise the JavaScript geolocation authorisation dialogue box using jQuery UI dialog?
Asme Just
  • 1,287
  • 5
  • 27
  • 42
0
votes
0 answers

Mobile user and Geolocation

I have seen many websites that have tutorials on getting the Geolocation of a device and displaying it on a map. However, I'm looking to get the geolocation of the users mobile device then pushing that to a database (need help on this) and then…
0
votes
0 answers

Unable to use Google Geocoding to find bermuda city and county

I'm trying to get the name of the city and county from a Bermuda postal code using the google geocoding. If for example I issue this request: http://maps.googleapis.com/maps/api/geocode/json?components=country:CA|postal_code:G2B4R7&sensor=false I…
0
votes
1 answer

Can I cache request to Google geolocation api and build up a LBS?

The google GeoLocation API is not stable in China, about 30% requests return "can't connect to the server". I am planning to build up a middle LBS based on google GeoLoaction API, I.E. cache user's request and transfer the request to Google, and at…
Roy Li
  • 33
  • 2
-1
votes
1 answer

Best way to update trail taken by user in map view android

I am using a MapView to display the current position of the user. The user is supposed to be able to move around and a blue line corresponding to his/her path will be displayed. I am using the getCurrentLocation() function to get the location every…
Ayush
  • 91
  • 1
  • 10
-1
votes
1 answer

Can not solve: Geocode was not successful for the following reason: OVER_QUERY_LIMIT

I want to print multiple pins on gGogle map using a simple JavaScript file. I got this error: Geocode was not successful for the following reason: OVER_QUERY_LIMIT Then I googled and basically there are 2 possible problems: API key not enabled…
bog
  • 1,323
  • 5
  • 22
  • 34
-1
votes
1 answer

Google Map API Geolocation w/Javascript

I'm working on a project that locates coffee shops near the user's location (which is retrieved via the browser). I'm using Google Maps API with the geolocation. My idea is to locate the users location via geolocation and then retrieve cafes nearby…
-1
votes
1 answer

Get latitude and Longitude from Google Geo Code JSON in MVC(C#)

I am having trouble to retrieve values from JSON results received from google geo code API Function public static async Task GetLatLogFromAddress() { using (var client = new HttpClient()) { Uri…
-1
votes
1 answer

How to request directions from current location to destination using Google Maps JavaScript API

I've been exploring Google Maps JavaScript API for web and I am getting stuck trying to display directions between the user's current location and a destination. I am able to display directions between two locations when they are predefined using…
-1
votes
1 answer

Retrieving Geolocation of user without index.html

Hey I'm making a web application that has to track a user location after button is clicked. I have been using the M.E.R.N stack for this and so far with the tutorials I watched they haven't needed any index.html file just pure JavaScript. I have…
-1
votes
1 answer

Google Maps API Accurately accessing unnamed keys

So I'm taking a spreadsheet of some 5,000 addresses and sending it off the the Google Maps Geolocation API to get lat/long as well as formatted address values as many are shorthand here. The problem I'm having is their lack of use of named keys for…
CodeSpent
  • 1,684
  • 4
  • 23
  • 46
-1
votes
1 answer

Does Geofire give new keys to each user?

I would like to use geofire for multiple location queries but don't know how to assign individual keys to each location. Does geofire automatically assign each user's location a different key? Here is my Geofire code: if (gps.canGetLocation()) { …