Udrea Cristian

Results 1 issues of Udrea Cristian

Hello, im using the following code ` Geocode.setLanguage("en"); Geocode.setRegion("en"); Geocode.setLocationType = 'ROOFTOP'; Geocode.fromLatLng("48.13512530", "11.58198050").then( response => { if (response.results[0].formatted_address) { console.log(response.results[0].formatted_address); const formattedAddressArray = response.results[0].formatted_address.split(' '); const getCity = formattedAddressArray[formattedAddressArray.length...