function yamaps_var_to_float in Yandex.Maps 7
Set variable to float.
Parameters
string $val: Variable that need to be set to float.
Return value
float Float value.
1 string reference to 'yamaps_var_to_float'
- yamaps_geocoding in ./
yamaps.functions.inc - Get geo data for string.
File
- ./
yamaps.functions.inc, line 85 - Yandex Maps functions used across all components of the module.
Code
function yamaps_var_to_float($val) {
return (double) $val;
}