Include API key in call Geocoding

0
Hi, In my project I want to use the Geocoding API from Google to get longitude and latitude based on an address string. A CalculatieGeo is included in the googlemaps module in the app store. However usage of this API is limited without an API key, and in my project I need to use it a large number of times. I cannot find an option to add an API key to the CalculateGeo request in the googlemaps module. Does anybody know how to of a way to add the key to the geocoding request?
asked
1 answers
0

According to this you can add the key in the url

            new URL ("https://maps.googleapis.com/maps/api/geocode/json?address="+URLEncoder.encode (address, ENCODING)+"&sensor=false") + "&key=YOUR_API_KEY"
answered