function mbCutString($str, $length, $postfix='...', $encoding='UTF-8') {
if (mb_strlen($str, $encoding) <= $length) {
return $str;
}
$tmp = mb_substr($str, 0, $length, $encoding);
return mb_substr($tmp, 0, mb_strripos($tmp, ' ', 0, $encoding), $encoding) . $postfix;
}
renderMap
которая будет наносить точки на картуsite.ru/ajax.php?type=get_cities
["moscow","perm","samara"]
site.ru/ajax.php?type=get_marks&city=moscow
{"count":1,"marks":{"3758":"55.7146,37.6470"}}
renderMap