You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The API provides an optional usage of an API key to circumvent API quota limits. Please visit the [Google API console](https://console.developers.google.com/apis/api/geocoding_backend?project=_) to receive an API key.
38
+
37
39
```{php}
38
40
use ChromaX\CommonException;
39
41
40
42
try{
41
43
// Perform lookup
42
44
$addressLookup = new ChromaX\GoogleGeocode\Lookup\AddressLookup();
45
+
$addressLookup = new Markenwerk\GoogleGeocode\Lookup\AddressLookup();
// Retrieving the lookup as an array of ChromaX\GoogleGeocode\Result\GeoLookupResult instances
@@ -65,12 +73,20 @@ try{
65
73
66
74
#### Resolving a geo location
67
75
76
+
The API provides an optional usage of an API key to circumvent API quota limits. Please visit the [Google API console](https://console.developers.google.com/apis/api/geocoding_backend?project=_) to receive an API key.
77
+
68
78
```{php}
69
79
use ChromaX\CommonException;
70
80
71
81
try{
72
82
// Perform lookup
73
83
$geoLocationLookup = new ChromaX\GoogleGeocode\Lookup\GeoLocationLookup();
84
+
$geoLocationLookup = new Markenwerk\GoogleGeocode\Lookup\GeoLocationLookup();
0 commit comments