Empty Geocode result
See original GitHub issue-
What is your question, problem or request? The geocode is returning nothing at all
-
What version of this plugin do you use? Please including miner version ($> cordova plugin list) 2.0
-
Code, Data or Error log (please format your code or data)
constructor(
...
private geolocation: Geolocation,
private gecoder: Geocoder,
...
) {}
getGeocode() {
let request: GeocoderRequest = {
position: new LatLng(position.coords.latitude, position.coords.longitude),
};
this.gecoder.geocode(request).then((results: GeocoderResult) => {
console.log(results); // Returns absolutely nothing
});
}
Issue Analytics
- State:
- Created 6 years ago
- Comments:22 (10 by maintainers)
Top Results From Across the Web
HERE geocode returns empty response on multi-word search ...
HERE geocode returns empty response on multi-word search term ... I tried different formats for the query parameter(q) but nothing works. To note, ......
Read more >Getting empty result set · Issue #111 · geocoder-php ... - GitHub
And added Google API key to my .env file under GOOGLE_MAPS_API_KEY name. First I tried with. return Geocoder::geocode(request()->ip())->get ...
Read more >Empty geocoding results do not respect the override checkbox ...
In the current state (after #3002517: Geofield remains empty when I choose "Geocode from another field"), different behaviour for if ($ ...
Read more >geocoder.geocode returns empty string for status.
The initialization works fine, but when I debug the code in firebug, I can see that geocoder.geocode is returning empty string for status....
Read more >Empty Results Table when trying to Geocode - Esri Community
I'm trying to geocode a small list of addresses (under 100), I've checked to make sure there are no incorrect column names and...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
After reinstall the plugin, restart my device and change the wifi network… its working 😃
You can use this plugin also. https://ionicframework.com/docs/native/native-geocoder/
I checked the code, and code is almost the same.