Get coordinates from address - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: Get coordinates from address (/showthread.php?tid=87550) |
Get coordinates from address - pippuccio76 - 05-02-2023 hi i try to get coordinates from openstreetmap this is my code : Code: public function getCoordinateFromAddress() Code: file_get_contents(https://nominatim.openstreetmap.org/search?q=piazza della signoria ,5, firenze &format=json&polygon=1&addressdetails=1): Failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request RE: Get coordinates from address - JustJohnQ - 05-03-2023 In Codeigniter 3 I made a helper (which I basically copied from the internet): PHP Code: <?php Then I call it from a Controller: PHP Code: function testMe(){ It is using CURL, so it may not be what you want, but it works for me. RE: Get coordinates from address - pippuccio76 - 05-04-2023 (05-03-2023, 02:23 AM)JustJohnQ Wrote: In Codeigniter 3 I made a helper (which I basically copied from the internet): It works fine thank's. |