function _yamaps_geocoder_url in Yandex.Maps 7
Provide geocoder url, use YAMAPS_GEOCODER_URL instead direct calling.
1 call to _yamaps_geocoder_url()
- yamaps.module in ./
yamaps.module - Yandex Maps module main file.
File
- ./
yamaps.module, line 447 - Yandex Maps module main file.
Code
function _yamaps_geocoder_url() {
global $is_https;
return $is_https ? 'https://geocode-maps.yandex.ru/1.x/' : 'http://geocode-maps.yandex.ru/1.x/';
}