vfbb 285 Posted April 24, 2020 Getting the address of an geographic coordinates, and the reverse, getting the geographic coordinates of an address https://github.com/viniciusfbb/fmx_tutorials/tree/master/delphi_google_geocoding/ 3 Share this post Link to post
Rollo62 536 Posted April 24, 2020 @vfbb Thanks for the nice library. I use the TGeoCoder which is available in FMX, and that works fine for me under iOS (Apple maps) and Android (Google maps). Where would you say is the advantage of your geocoder, to have GMaps on all platforms ? Share this post Link to post
vfbb 285 Posted April 24, 2020 @Rollo62 Works in all platforms, but in my case I use this only in my server. Share this post Link to post
Rollo62 536 Posted April 24, 2020 (edited) I see, thats what I though too. What I considered in some apps is to the the FMX geocoder, to half the load of requests to the GoogleMaps service. Since this is a free tier, but also has a limit, I'm always afraid to touch this limits and get horrendous bills suddenly I think there is no way to find out how much your free tier is already occupied. Edited April 24, 2020 by Rollo62 Share this post Link to post
Guest Posted April 24, 2020 Neat! But why "FMX"? At a quick glance it looks like it would work in a VCL project too. No? Share this post Link to post
vfbb 285 Posted April 24, 2020 5 minutes ago, Dany Marmur said: Neat! But why "FMX"? At a quick glance it looks like it would work in a VCL project too. No? The native System.Sensors.TGeocoder does not have support for VCL because works only in Android, iOS and MacOS. And even in Android have some small devices that does not support. And in the iOS and MacOS the result can be different than the Android because the Apple use the TomTom maps. Then, if you want a full cross platform solution, VCL or FMX, to use in all devices, include linux, having the same result, the Google Maps Geocoding is the solution. In my case, my client have a Windows version, the System.Sensors.Geocoder not work, I should use just Google Maps Geocoding. 1 1 Share this post Link to post
Guest Posted April 24, 2020 Thank you, vfbb! I see. I'm a windoze-vcl guy when it comes to Delphi 🙂 Share this post Link to post