Skip to content

Instantly share code, notes, and snippets.

@eslavon
Last active October 3, 2019 00:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eslavon/1651cac1bb442b446a34d58c6f6cce7b to your computer and use it in GitHub Desktop.
Save eslavon/1651cac1bb442b446a34d58c6f6cce7b to your computer and use it in GitHub Desktop.
Геокодер
<?php
$search = "Иваново,Лежневская улица 155";
$url = "http://search.maps.sputnik.ru/search/addr?q=".$search."apikey=5032f91e8da6431d8605-f9c0c9a00357";
$url = urlencode($url);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER,true);
$out = curl_exec($curl);
echo $out;
curl_close($curl);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment