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
323
votes
23 answers

This API project is not authorized to use this API. Please ensure that this API is activated in the APIs Console

I have a latitude, and longitude : "-27.0000,133.0000". I want produce a map base on that. I've tried go to this link https://maps.googleapis.com/maps/api/geocode/json?latlng=-27.0000,133.0000&key=****** I keep getting this error on the browser…
code-8
  • 54,650
  • 106
  • 352
  • 604
97
votes
5 answers

When should I use ACCESS_COARSE_LOCATION permission?

I am building an Android app that will track the user's geolocation and draw their route on a map. I am using the Google Play Services location API, as described here. It is intuitive that my application requires the ACCESS_FINE_LOCATION permission,…
36
votes
3 answers

Chrome navigator.geolocation.getCurrentPosition() error 403

For some reason suddenly when calling navigator.geolocation.getCurrentPosition() I get this error: Network location provider at 'https://www.googleapis.com/' : Returned error code 403. It used to work perfectly yesterday! Could there be anything…
mllm
  • 17,068
  • 15
  • 53
  • 64
11
votes
1 answer

Ionic with Android Emulator: Automatically send location?

I'm having an issue with my android emulator. When I close and re-open my app, the location is not sent automatically. I have to go into Extended Controls -> Location and click the 'Send' button for the Ionic Geolocation getCurrentPosition function…
8
votes
1 answer

html geolocation: Unknown error acquiring position

I am trying to use HTML geolocation to get my position. Funny thing is, it was working brilliantly until some seemingly random point in the day when it just stopped working. Now all I get is the error callback with a message: Unknown error acquiring…
ThriceGood
  • 1,633
  • 3
  • 25
  • 43
7
votes
4 answers

Ionic Native Geolocation not working on Android

I have the following code using Ionic Native Geolocation: import { Geolocation } from 'ionic-native'; this.platform.ready().then(() => { alert('loadMap about to getCurrentPosition'); …
Richard
  • 8,193
  • 28
  • 107
  • 228
7
votes
1 answer

Not Found Error On Google Geolocation

When i have put the url below to my browser adress bar i get a 'not found' text. https://www.googleapis.com/geolocation/v1/geolocate?key=API_‌​KEY I have registered my app at console and get a api key for that application. I have even provide my…
mcan
  • 1,914
  • 3
  • 32
  • 53
7
votes
1 answer

GeoFence Device when app is in background

I have implemented the geoFence api and everything is working good. But there are some problems, I want more clarification regarding my confusions. Here are some of the confusions and problems: I want my user to get notified when he enters a…
Coas Mckey
  • 701
  • 1
  • 13
  • 39
6
votes
1 answer

Google geocoding API security

I am asking this question after extensively reading Google's recommended approach, but I do have a problem with all these approaches, let me explain the situation. I use combination of geolocation and geocoding API to know the approximate state…
6
votes
1 answer

Google geometry Api in C#

I have a point (latitude,longitude) ex : 33.959295,35.606100 and I'm looking for a way in c# to check if this point is on a specific route (a list of points or a polyline). I did some research and I found that isLocationOnEdge function contained…
User7291
  • 1,095
  • 3
  • 29
  • 71
6
votes
0 answers

geolocation + ionic native Not working with few android devices

please help me out from this issue, geolocation plugin not working with some android devices. it tested on different Android phones to identify current location on map issues, find below results: ============ I have tested these couple of devices…
Spanchal
  • 465
  • 4
  • 16
4
votes
0 answers

WebView geo location only works with Wifi on/always scanning

I'm trying to enable the WebView to get location with mobile data (3g/lte) but the location is received only when I use WiFi/enable wifi scanning. Here's a log of the location request printed by the system when using mobile…
Lior Iluz
  • 26,213
  • 16
  • 65
  • 114
4
votes
1 answer

Google Geolocation API - You have exceeded your daily request quota for this API

I'm trying to get the latitude and the longitude values for an specific place in a webservice query, but when I try to get it, I get this error_message "You have exceeded your daily request quota for this API. If you did not set a custom daily…
4
votes
1 answer

Geocoder returned address

I am using Geocoder class to get Latitude and Longitude to from my String address that user types to EditText. And what is interesting it returns results for such query as "q", "qq", "n", "N". Is there any way to make it better?(validate or…
Kyryl Zotov
  • 1,788
  • 5
  • 24
  • 44
4
votes
2 answers

How to Integrate Google Maps in Android App

I want to integrate the Google Maps for locating user input address in google maps android api v2 with geocoding api with my Android Application Below is my code: MainActivity.java package com.example.googlemaps; import…
1
2 3
18 19