Questions tagged [google-maps]

Google Maps is a desktop and mobile web mapping service application and technology provided by Google, offering satellite imagery, street maps, and Street View perspectives. Also supported are maps embedded on third-party websites via the Google Maps API, and a locator for urban businesses and other organizations in numerous countries around the world.

Google Maps is a web, mobile and standalone mapping service application and technology provided by Google LLC, that powers many map-based services, including the Google Maps website, Google Transit and maps embedded on third-party websites and mobile applications through their various APIs.

API keys

In order to use the various Google Maps APIs, you need an API key or digital signature, to validate your requests. Here are the instructions on how to get an API key.

Billing

In addition to an API key, you will need to setup a billing account and each service will be billed according to the Google Maps Platform Billing documentation.

Administration

Administration of API keys, credentials, billing accounts, etc. is done via the Google Developers Console.

Related services & tags

Links

65879 questions
12
votes
4 answers

How to solve setMyLocationEnabled permission requirement?

I want to make my map focus on my current location when opening the MapActivity. I have a problem with a specific line: mMap.setMyLocationEnabled(true); Call requires permission which may be rejected by user:code should explicitly check to see…
Gilad Neiger
  • 319
  • 1
  • 3
  • 14
12
votes
6 answers

GoogleMaps does not load on page load

I can't get my map running using the GoogleMaps API V3. The map does not load. I would expect the map to appear in the div with the id gisMap but in the Chrome Debugger I get the message: Uncaught InvalidValueError: initMap is not a…
sesc360
  • 3,155
  • 10
  • 44
  • 86
12
votes
3 answers

Need multiple country componentRestrictions in Google Places Autocomplete

I need Google Places Autocomplete to give me results from countries: SZ, FR, DE, AT, IT. I know that componentRestrictions can operate with only one country. So, is there a way to get results with multiple counties in Google Places Autocomplete? My…
DimaS
  • 571
  • 2
  • 5
  • 19
12
votes
3 answers

How to show stores with nearest long/lat values using search function - Laravel 5 eloquent

Ideally I am looking for an Laravel 5 relevant answer. I am trying to make a store locator app. I am up to the point where I'm trying to match one pair of lat/long coordinates (calculated from an address that a user enters into search box) with the…
thomas jaunism
  • 805
  • 2
  • 10
  • 31
12
votes
6 answers

Google Maps Script error in Onion.js

This morning I just started getting a google maps script error. Line: 0 Char: 0 Error: Script Error Code: 0 URL: I reverted all my code changes back to an earlier version but it still persists. I will include the script below but I must…
Meta Mussel
  • 548
  • 1
  • 5
  • 19
12
votes
2 answers

Search locations inside a particular city in Google Places Apis

I am using Google Places Apis to filter results inside a particular city.I am able to filter results.but it also shows results out side of that city. For example if I set LatLngBounds of DELHI city and searching for a location in city NEWYORK. It…
Navin Gupta
  • 793
  • 6
  • 20
12
votes
3 answers

Find closest longitude and latitude in array from user location - iOS Swift

In the question posted here, the user asked: I have an array full of longitudes and latitudes. I have two double variables with my users location. I'd like to test the distance between my user's locations against my array to see which location is…
tsteve
  • 549
  • 1
  • 7
  • 16
12
votes
6 answers

How to hide Google logo from google maps by adding Overlaid image on google maps?

I am adding Bitmap image on Google maps using GroundOverlayOptions, that image will be overlaid on the Google maps. Below is my code. @Override public void onLocationChanged(Location location) { TextView tvLocation = (TextView)…
Saritha G
  • 2,588
  • 1
  • 15
  • 27
12
votes
2 answers

Using Google Maps offline (Js Api)

I'm trying to make an NodeJs App in which, on web page I'm using Maps, For some reasons I've chosen Google Maps and I want to stick to it. My question is, Is there anyway where I can either store or cache map tiles offline and later on use it as…
iyogeshjoshi
  • 520
  • 1
  • 7
  • 15
12
votes
2 answers

Android Map loading very slow/not loading at all in started activity until clicking on it

When starting a new map activity the map loads really slow and doesn't start the loading until clicking the screen. The Layout is the following:
raluca
  • 458
  • 3
  • 10
12
votes
4 answers

Android cluster and marker clicks

I'm using the android clustering utility on a map and succesffuly implemented an onclick listener with mClusterManager.setOnClusterItemClickListener() for all the markers handled by the clustering library. Because I also want some markers to always…
tio oit
  • 193
  • 1
  • 1
  • 10
12
votes
6 answers

How to wait till the google maps API has loaded before loading a google.maps.OverlayView derived class

I have a separate label.js file in which I have defined a custom overlay. It uses the google.maps.OverlayView as its prototype: Label.prototype = new google.maps.OverlayView(); I am not sure where to place the script tags for this js file in my…
safe_malloc
  • 824
  • 2
  • 12
  • 29
12
votes
1 answer

Google Maps API - Why don't labels animate along with markers?

I've created a Google Map and added a few markers to it. Each marker has a one-letter label ("A", "B", "C"). I then animate each marker to bounce. That all works fine with one annoying exception: The labels ("A", "B", "C") don't bounce along with…
The Chad
  • 123
  • 1
  • 6
12
votes
2 answers

Extfiltrating Google Location History from Timeline

Note, due to changes to Google's "Timeline" this previous answer no longer works. Google offers a "Timeline" service which allows users to access their phone's location history. I want to extract my phone's current location. If I select "today" in…
Terence Eden
  • 14,034
  • 3
  • 48
  • 89
12
votes
1 answer

Google maps setCenter is not centering the map correctly

In my Ionic/Angular mobile app, I have an Uber-like map, where basically the user can drag the map to select a location and there is a marker always pinned in the center. To achieve that, I followed the instructions from here and here. So, my HTML…
Alex Ntousias
  • 8,962
  • 8
  • 39
  • 47
1 2 3
99
100