Обзор
Route Planner API помогает решить задачу китайского почтальона: построить наиболее эффективный маршрут объезда всех звеньев дорожной цепи внутри произвольного полигона. Такие маршруты могут быть полезны в сценариях, когда нужно не достичь целевой точки, а проехать по определённым улицам: например, для работы уборочной техники или служб контроля.
Route Planner API возвращает геометрию маршрута в текстовом формате WKT (Well-known text) с информацией о манёврах при объезде, длине маршрута и времени в пути.
Основные возможности
Route Planner API строит маршрут для объезда на автомобиле и использует статистические данные о пробках, чтобы предсказать дорожную ситуацию и длительность маршрута.
Вы можете указать следующие параметры для построения маршрута:
-
Область объезда в виде одного или нескольких произвольных полигонов.
Полигон может иметь любую форму, но должен вписываться в квадрат 5×5 км.
-
Время начала движения. Укажите, чтобы для расчёта использовалась информация о статистических пробках на определённый день и время.
-
Начальную точку движения (она может находиться вне полигона для объезда). Если точка не указана, алгоритм выберет оптимальную точку начала объезда.
-
Критерий фильтрации дорог в маршруте объезда: длину, класс дороги или другой атрибут.
Больше информации о параметрах см. в примерах и в Справочнике API.
Пример работы
Область объезда на карте:

Построенный маршрут для объезда дорог внутри области:

Начало работы
1. Получите ключ доступа
Чтобы получить ключ доступа и работать с API сервиса, обратитесь в отдел продаж 2ГИС.
2. Отправьте запрос
Чтобы построить маршрут объезда, отправьте POST-запрос на endpoint /route_planner/2.0.0. Для этого:
-
В строке запроса укажите значение API-ключа в параметре
key:https://routing.api.2gis.com/route_planner/2.0.0?key=API_KEY -
В теле запроса передайте JSON с необходимыми параметрами. Например:
{
"geometry_objects": [
{
"type": "polygon",
"area": {
"points": [
{
"lat": 55.026907806856286,
"lon": 82.91738891522984
},
{
"lat": 55.026194437684474,
"lon": 82.90977144162754
},
{
"lat": 55.030277689546075,
"lon": 82.90884876172642
},
{
"lat": 55.03219618229847,
"lon": 82.91213178556065
},
{
"lat": 55.031507503160256,
"lon": 82.91603708188633
},
{
"lat": 55.026907806856286,
"lon": 82.91738891522984
}
]
}
}
],
"locale": "ru"
}
Где:
-
geometry_objects— массив геометрий для объезда. Для каждой геометрии нужно указать следующие параметры:type— тип геометрии:polygon(многоугольник).area— массив точек с указанием координат (широта и долгота). Укажите минимум три точки.
-
locale— язык текстов в ответе.
Дополнительно вы можете настроить фильтр дорог, указать точку и время начала движения и другие параметры: подробнее см. в примерах.
Пример запроса:
curl --request POST \
--url 'https://routing.api.2gis.com/route_planner/2.0.0?key=API_KEY' \
--header 'Content-Type: application/json' \
--data '
{
"geometry_objects": [
{
"type": "polygon",
"area": {
"points": [
{
"lat": 55.026907806856286,
"lon": 82.91738891522984
},
{
"lat": 55.026194437684474,
"lon": 82.90977144162754
},
{
"lat": 55.030277689546075,
"lon": 82.90884876172642
},
{
"lat": 55.03219618229847,
"lon": 82.91213178556065
},
{
"lat": 55.031507503160256,
"lon": 82.91603708188633
},
{
"lat": 55.026907806856286,
"lon": 82.91738891522984
}
]
}
}
],
"locale": "ru"
}'
Пример ответа:
response.json
{
"error_message": "",
"route": {
"algorithm": "с учётом пробок",
"filter_road_types": [
"highway"
],
"id": "3909317650869757813",
"maneuvers": [
{
"comment": "start",
"icon": "start",
"id": "71970785530613069",
"outcoming_path": {
"distance": 31,
"duration": 11,
"geometry": [
{
"color": "normal",
"length": 31,
"selection": "LINESTRING(82.916494 55.029681, 82.916456 55.029814, 82.916414 55.029960)",
"style": "normal"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "30 м прямо",
"type": "begin"
},
{
"comment": "Разворот на ул. Советская",
"icon": "turn_over_right_hand",
"id": "1505738066418070407",
"outcoming_path": {
"distance": 31,
"duration": 13,
"geometry": [
{
"color": "fluid",
"length": 16,
"selection": "LINESTRING(82.916414 55.029960, 82.916456 55.029814)",
"style": "normal"
},
{
"color": "fast",
"length": 15,
"selection": "LINESTRING(82.916456 55.029814, 82.916494 55.029681)",
"style": "normal"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Ленина",
"icon": "crossroad_right",
"id": "8085583498578010189",
"outcoming_path": {
"distance": 109,
"duration": 36,
"geometry": [
{
"color": "normal",
"length": 109,
"selection": "LINESTRING(82.916494 55.029681, 82.916360 55.029669, 82.915833 55.029619, 82.915311 55.029569, 82.914776 55.029518)",
"style": "normal"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "10591005462487507698",
"outcoming_path": {
"distance": 9,
"duration": 2,
"geometry": [
{
"color": "ignore",
"length": 9,
"selection": "LINESTRING(82.914776 55.029518, 82.914707 55.029593)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "10 м прямо",
"turn_angle": 71,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево",
"icon": "crossroad_left",
"id": "10313263015299926221",
"outcoming_path": {
"distance": 56,
"duration": 13,
"geometry": [
{
"color": "ignore",
"length": 56,
"selection": "LINESTRING(82.914707 55.029593, 82.913837 55.029510)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "60 м прямо",
"turn_angle": -71,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево",
"icon": "crossroad_left",
"id": "8172262074262935608",
"outcoming_path": {
"distance": 9,
"duration": 2,
"geometry": [
{
"color": "ignore",
"length": 9,
"selection": "LINESTRING(82.913837 55.029510, 82.913798 55.029425)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "10 м прямо",
"turn_angle": -66,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Ленина",
"icon": "crossroad_right",
"id": "16226068675203384115",
"outcoming_path": {
"distance": 67,
"duration": 22,
"geometry": [
{
"color": "normal",
"length": 58,
"selection": "LINESTRING(82.913798 55.029425, 82.912901 55.029340)",
"style": "normal"
},
{
"color": "fast",
"length": 9,
"selection": "LINESTRING(82.912901 55.029340, 82.912757 55.029326)",
"style": "normal"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": 66,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Урицкого",
"icon": "crossroad_right",
"id": "7982745328703209951",
"outcoming_path": {
"distance": 69,
"duration": 22,
"geometry": [
{
"color": "fast",
"length": 69,
"selection": "LINESTRING(82.912757 55.029326, 82.912733 55.029414, 82.912675 55.029631, 82.912588 55.029957)",
"style": "normal"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Урицкого",
"icon": "crossroad_right",
"id": "6529257438253363344",
"outcoming_path": {
"distance": 179,
"duration": 43,
"geometry": [
{
"color": "ignore",
"length": 179,
"selection": "LINESTRING(82.912588 55.029957, 82.912733 55.029970, 82.913111 55.030003, 82.913428 55.030034, 82.913635 55.030176, 82.913666 55.030201, 82.913685 55.030221, 82.913779 55.030367, 82.913810 55.030397, 82.913856 55.030419, 82.913896 55.030431, 82.914172 55.030482, 82.914510 55.030543, 82.914721 55.030581, 82.915011 55.030607)",
"style": "living_zone"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "200 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Урицкого",
"icon": "turn_over_right_hand",
"id": "1621334916331834994",
"outcoming_path": {
"distance": 179,
"duration": 43,
"geometry": [
{
"color": "ignore",
"length": 179,
"selection": "LINESTRING(82.915011 55.030607, 82.914721 55.030581, 82.914510 55.030543, 82.914172 55.030482, 82.913896 55.030431, 82.913856 55.030419, 82.913810 55.030397, 82.913779 55.030367, 82.913685 55.030221, 82.913666 55.030201, 82.913635 55.030176, 82.913428 55.030034, 82.913111 55.030003, 82.912733 55.029970, 82.912588 55.029957)",
"style": "living_zone"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "200 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Урицкого",
"icon": "crossroad_right",
"id": "9363092692531991314",
"outcoming_path": {
"distance": 17,
"duration": 5,
"geometry": [
{
"color": "fast",
"length": 17,
"selection": "LINESTRING(82.912588 55.029957, 82.912565 55.030041, 82.912545 55.030119)",
"style": "normal"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "20 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Урицкого",
"icon": "crossroad_left",
"id": "14755749442218541318",
"outcoming_path": {
"distance": 33,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 33,
"selection": "LINESTRING(82.912545 55.030119, 82.912337 55.030101, 82.912022 55.030073)",
"style": "living_zone"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Урицкого",
"icon": "turn_over_right_hand",
"id": "10992484244722125031",
"outcoming_path": {
"distance": 33,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 33,
"selection": "LINESTRING(82.912022 55.030073, 82.912337 55.030101, 82.912545 55.030119)",
"style": "living_zone"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Урицкого",
"icon": "crossroad_left",
"id": "7474355936918468868",
"outcoming_path": {
"distance": 62,
"duration": 20,
"geometry": [
{
"color": "fast",
"length": 62,
"selection": "LINESTRING(82.912545 55.030119, 82.912396 55.030676)",
"style": "normal"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "60 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Урицкого",
"icon": "crossroad_right",
"id": "3056169734773625929",
"outcoming_path": {
"distance": 33,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 33,
"selection": "LINESTRING(82.912396 55.030676, 82.912541 55.030688, 82.912920 55.030722)",
"style": "archway"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Урицкого",
"icon": "turn_over_right_hand",
"id": "6742077635480985222",
"outcoming_path": {
"distance": 33,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 33,
"selection": "LINESTRING(82.912920 55.030722, 82.912541 55.030688, 82.912396 55.030676)",
"style": "archway"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Урицкого",
"icon": "crossroad_right",
"id": "2359514551131351132",
"outcoming_path": {
"distance": 34,
"duration": 11,
"geometry": [
{
"color": "fast",
"length": 34,
"selection": "LINESTRING(82.912396 55.030676, 82.912315 55.030979)",
"style": "normal"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Урицкого",
"icon": "crossroad_left",
"id": "4979139673567745727",
"outcoming_path": {
"distance": 36,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 36,
"selection": "LINESTRING(82.912315 55.030979, 82.912104 55.030961, 82.911893 55.030942, 82.911729 55.030928)",
"style": "living_zone"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Урицкого",
"icon": "turn_over_right_hand",
"id": "15184656434871588395",
"outcoming_path": {
"distance": 36,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 36,
"selection": "LINESTRING(82.911729 55.030928, 82.911893 55.030942, 82.912104 55.030961, 82.912315 55.030979)",
"style": "living_zone"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Урицкого",
"icon": "crossroad_left",
"id": "4639805055000023331",
"outcoming_path": {
"distance": 70,
"duration": 22,
"geometry": [
{
"color": "fast",
"length": 70,
"selection": "LINESTRING(82.912315 55.030979, 82.912278 55.031120, 82.912145 55.031617)",
"style": "normal"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Урицкого",
"icon": "crossroad_left",
"id": "6447769217494263070",
"outcoming_path": {
"distance": 32,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 32,
"selection": "LINESTRING(82.912145 55.031617, 82.911940 55.031599, 82.911643 55.031573)",
"style": "living_zone"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Урицкого",
"icon": "turn_over_right_hand",
"id": "8384356339956036154",
"outcoming_path": {
"distance": 32,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 32,
"selection": "LINESTRING(82.911643 55.031573, 82.911940 55.031599, 82.912145 55.031617)",
"style": "living_zone"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Урицкого",
"icon": "crossroad_left",
"id": "2011924745905404315",
"outcoming_path": {
"distance": 72,
"duration": 22,
"geometry": [
{
"color": "fast",
"length": 72,
"selection": "LINESTRING(82.912145 55.031617, 82.912008 55.032128, 82.911971 55.032266)",
"style": "normal"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Крутой поворот направо на ул. Вокзальная магистраль",
"icon": "crossroad_sharply_right",
"id": "14743637990207237859",
"outcoming_path": {
"distance": 136,
"duration": 55,
"geometry": [
{
"color": "slow",
"length": 136,
"selection": "LINESTRING(82.911971 55.032266, 82.913971 55.031833)",
"style": "normal"
}
],
"names": [
"Вокзальная магистраль"
]
},
"outcoming_path_comment": "150 м прямо",
"turn_angle": 120,
"turn_direction": "sharply_right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Вокзальная магистраль",
"icon": "crossroad_right",
"id": "14703282245013299794",
"outcoming_path": {
"distance": 66,
"duration": 16,
"geometry": [
{
"color": "ignore",
"length": 66,
"selection": "LINESTRING(82.913971 55.031833, 82.913934 55.031777, 82.913895 55.031717, 82.913769 55.031526, 82.913734 55.031460, 82.913726 55.031418, 82.913746 55.031342, 82.913772 55.031252)",
"style": "living_zone"
}
],
"names": [
"Вокзальная магистраль"
]
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Вокзальная магистраль",
"icon": "crossroad_right",
"id": "5377090094496384889",
"outcoming_path": {
"distance": 94,
"duration": 23,
"geometry": [
{
"color": "ignore",
"length": 94,
"selection": "LINESTRING(82.913772 55.031252, 82.913031 55.031187, 82.912821 55.031168, 82.912395 55.031131, 82.912278 55.031120)",
"style": "living_zone"
}
],
"names": [
"Вокзальная магистраль"
]
},
"outcoming_path_comment": "90 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Вокзальная магистраль",
"icon": "turn_over_right_hand",
"id": "2058289914177012154",
"outcoming_path": {
"distance": 94,
"duration": 23,
"geometry": [
{
"color": "ignore",
"length": 94,
"selection": "LINESTRING(82.912278 55.031120, 82.912395 55.031131, 82.912821 55.031168, 82.913031 55.031187, 82.913772 55.031252)",
"style": "living_zone"
}
],
"names": [
"Вокзальная магистраль"
]
},
"outcoming_path_comment": "90 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Вокзальная магистраль",
"icon": "crossroad_right",
"id": "6918417056156103627",
"outcoming_path": {
"distance": 39,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 39,
"selection": "LINESTRING(82.913772 55.031252, 82.913792 55.031082, 82.913840 55.030891)",
"style": "living_zone"
}
],
"names": [
"Вокзальная магистраль"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": 95,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Вокзальная магистраль",
"icon": "turn_over_right_hand",
"id": "16731242141857295858",
"outcoming_path": {
"distance": 105,
"duration": 25,
"geometry": [
{
"color": "ignore",
"length": 105,
"selection": "LINESTRING(82.913840 55.030891, 82.913792 55.031082, 82.913772 55.031252, 82.913746 55.031342, 82.913726 55.031418, 82.913734 55.031460, 82.913769 55.031526, 82.913895 55.031717, 82.913934 55.031777, 82.913971 55.031833)",
"style": "living_zone"
}
],
"names": [
"Вокзальная магистраль"
]
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Вокзальная магистраль",
"icon": "crossroad_right",
"id": "1669026641188950483",
"outcoming_path": {
"distance": 112,
"duration": 42,
"geometry": [
{
"color": "slow",
"length": 104,
"selection": "LINESTRING(82.913971 55.031833, 82.915497 55.031502)",
"style": "normal"
},
{
"color": "fluid",
"length": 8,
"selection": "LINESTRING(82.915497 55.031502, 82.915618 55.031476)",
"style": "normal"
}
],
"names": [
"Вокзальная магистраль"
]
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "5552390008239589349",
"outcoming_path": {
"distance": 42,
"duration": 10,
"geometry": [
{
"color": "ignore",
"length": 14,
"selection": "LINESTRING(82.915618 55.031476, 82.915539 55.031357)",
"style": "normal"
},
{
"color": "ignore",
"length": 28,
"selection": "LINESTRING(82.915539 55.031357, 82.915378 55.031114)",
"style": "archway"
}
],
"names": []
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Вокзальная магистраль",
"icon": "turn_over_right_hand",
"id": "3079527914578405208",
"outcoming_path": {
"distance": 42,
"duration": 10,
"geometry": [
{
"color": "ignore",
"length": 28,
"selection": "LINESTRING(82.915378 55.031114, 82.915539 55.031357)",
"style": "archway"
},
{
"color": "ignore",
"length": 14,
"selection": "LINESTRING(82.915539 55.031357, 82.915618 55.031476)",
"style": "normal"
}
],
"names": [
"Вокзальная магистраль"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Вокзальная магистраль",
"icon": "crossroad_right",
"id": "10423450528774303729",
"outcoming_path": {
"distance": 656,
"duration": 135,
"geometry": [
{
"color": "fluid",
"length": 25,
"selection": "LINESTRING(82.915618 55.031476, 82.915995 55.031394)",
"style": "normal"
},
{
"color": "fluid",
"length": 49,
"selection": "LINESTRING(82.915995 55.031394, 82.916176 55.031356, 82.916724 55.031237)",
"style": "normal"
},
{
"color": "normal",
"length": 95,
"selection": "LINESTRING(82.916724 55.031237, 82.918129 55.030933)",
"style": "normal"
},
{
"color": "fast",
"length": 46,
"selection": "LINESTRING(82.918129 55.030933, 82.918765 55.030795, 82.918818 55.030784)",
"style": "normal"
},
{
"color": "fast",
"length": 67,
"selection": "LINESTRING(82.918818 55.030784, 82.918871 55.030773, 82.919025 55.030738, 82.919172 55.030699, 82.919291 55.030661, 82.919332 55.030643, 82.919387 55.030618, 82.919692 55.030456)",
"style": "normal"
},
{
"color": "normal",
"length": 49,
"selection": "LINESTRING(82.919692 55.030456, 82.919853 55.030370, 82.920155 55.030210, 82.920243 55.030146)",
"style": "normal"
},
{
"color": "fluid",
"length": 76,
"selection": "LINESTRING(82.920243 55.030146, 82.920357 55.029752, 82.920379 55.029686, 82.920472 55.029468)",
"style": "normal"
},
{
"color": "fluid",
"length": 249,
"selection": "LINESTRING(82.920472 55.029468, 82.920528 55.029299, 82.920644 55.028948, 82.920817 55.028422, 82.920917 55.028049, 82.921133 55.027238)",
"style": "normal"
}
],
"names": [
"Вокзальная магистраль"
]
},
"outcoming_path_comment": "700 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Красный проспект",
"icon": "turn_over_right_hand",
"id": "18440213803109162674",
"outcoming_path": {
"distance": 415,
"duration": 86,
"geometry": [
{
"color": "normal",
"length": 17,
"selection": "LINESTRING(82.921133 55.027238, 82.921397 55.027260)",
"style": "normal"
},
{
"color": "fluid",
"length": 26,
"selection": "LINESTRING(82.921397 55.027260, 82.921352 55.027370, 82.921319 55.027491)",
"style": "normal"
},
{
"color": "fluid",
"length": 87,
"selection": "LINESTRING(82.921319 55.027491, 82.921164 55.028072, 82.921112 55.028268)",
"style": "normal"
},
{
"color": "normal",
"length": 48,
"selection": "LINESTRING(82.921112 55.028268, 82.920997 55.028694)",
"style": "normal"
},
{
"color": "fast",
"length": 151,
"selection": "LINESTRING(82.920997 55.028694, 82.920883 55.029120, 82.920719 55.029610, 82.920603 55.030041)",
"style": "normal"
},
{
"color": "normal",
"length": 86,
"selection": "LINESTRING(82.920603 55.030041, 82.920527 55.030328, 82.920399 55.030807)",
"style": "normal"
}
],
"names": [
"Красный проспект"
]
},
"outcoming_path_comment": "400 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Орджоникидзе",
"icon": "crossroad_left",
"id": "17545168453406159226",
"outcoming_path": {
"distance": 303,
"duration": 83,
"geometry": [
{
"color": "fluid",
"length": 31,
"selection": "LINESTRING(82.920399 55.030807, 82.920349 55.030870, 82.920295 55.030907, 82.920217 55.030939, 82.920143 55.030958, 82.920034 55.030979)",
"style": "invisible"
},
{
"color": "normal",
"length": 77,
"selection": "LINESTRING(82.920034 55.030979, 82.919039 55.030884, 82.918956 55.030884, 82.918834 55.030899)",
"style": "normal"
},
{
"color": "slow",
"length": 13,
"selection": "LINESTRING(82.918834 55.030899, 82.918760 55.030911, 82.918635 55.030938)",
"style": "normal"
},
{
"color": "fluid",
"length": 118,
"selection": "LINESTRING(82.918635 55.030938, 82.916906 55.031312)",
"style": "normal"
},
{
"color": "fluid",
"length": 52,
"selection": "LINESTRING(82.916906 55.031312, 82.916143 55.031478)",
"style": "normal"
},
{
"color": "fast",
"length": 12,
"selection": "LINESTRING(82.916143 55.031478, 82.915960 55.031517)",
"style": "normal"
}
],
"names": [
"Орджоникидзе"
]
},
"outcoming_path_comment": "300 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Советская",
"icon": "crossroad_right",
"id": "1799591284439405204",
"outcoming_path": {
"distance": 74,
"duration": 23,
"geometry": [
{
"color": "fluid",
"length": 13,
"selection": "LINESTRING(82.915960 55.031517, 82.915928 55.031640)",
"style": "normal"
},
{
"color": "fast",
"length": 61,
"selection": "LINESTRING(82.915928 55.031640, 82.915780 55.032189)",
"style": "normal"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": 60,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Советская",
"icon": "turn_over_right_hand",
"id": "9142117456832189039",
"outcoming_path": {
"distance": 189,
"duration": 73,
"geometry": [
{
"color": "normal",
"length": 61,
"selection": "LINESTRING(82.915780 55.032189, 82.915928 55.031640)",
"style": "normal"
},
{
"color": "fluid",
"length": 128,
"selection": "LINESTRING(82.915928 55.031640, 82.915960 55.031517, 82.915995 55.031394, 82.916027 55.031284, 82.916261 55.030482)",
"style": "normal"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "200 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Советская",
"icon": "crossroad_right",
"id": "11478648285824043360",
"outcoming_path": {
"distance": 67,
"duration": 16,
"geometry": [
{
"color": "ignore",
"length": 67,
"selection": "LINESTRING(82.916261 55.030482, 82.916129 55.030471, 82.915593 55.030423, 82.915531 55.030653)",
"style": "living_zone"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Советская",
"icon": "turn_over_right_hand",
"id": "13180363855066087271",
"outcoming_path": {
"distance": 67,
"duration": 16,
"geometry": [
{
"color": "ignore",
"length": 67,
"selection": "LINESTRING(82.915531 55.030653, 82.915593 55.030423, 82.916129 55.030471, 82.916261 55.030482)",
"style": "living_zone"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Советская",
"icon": "crossroad_right",
"id": "3241929097421629291",
"outcoming_path": {
"distance": 58,
"duration": 25,
"geometry": [
{
"color": "fluid",
"length": 58,
"selection": "LINESTRING(82.916261 55.030482, 82.916414 55.029960)",
"style": "normal"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "60 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Советская",
"icon": "crossroad_right",
"id": "11772928432389369660",
"outcoming_path": {
"distance": 26,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 11,
"selection": "LINESTRING(82.916414 55.029960, 82.916279 55.029948, 82.916224 55.029943)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 11,
"selection": "LINESTRING(82.916224 55.029943, 82.916039 55.029927)",
"style": "archway"
},
{
"color": "ignore",
"length": 4,
"selection": "LINESTRING(82.916039 55.029927, 82.915973 55.029921)",
"style": "living_zone"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Советская",
"icon": "turn_over_right_hand",
"id": "10766004299695082345",
"outcoming_path": {
"distance": 26,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 4,
"selection": "LINESTRING(82.915973 55.029921, 82.916039 55.029927)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 11,
"selection": "LINESTRING(82.916039 55.029927, 82.916224 55.029943)",
"style": "archway"
},
{
"color": "ignore",
"length": 11,
"selection": "LINESTRING(82.916224 55.029943, 82.916279 55.029948, 82.916414 55.029960)",
"style": "living_zone"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Советская",
"icon": "crossroad_right",
"id": "681518309831942515",
"outcoming_path": {
"distance": 89,
"duration": 29,
"geometry": [
{
"color": "fluid",
"length": 31,
"selection": "LINESTRING(82.916414 55.029960, 82.916456 55.029814, 82.916494 55.029681)",
"style": "normal"
},
{
"color": "normal",
"length": 11,
"selection": "LINESTRING(82.916494 55.029681, 82.916523 55.029583)",
"style": "normal"
},
{
"color": "fluid",
"length": 47,
"selection": "LINESTRING(82.916523 55.029583, 82.916643 55.029166)",
"style": "normal"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "90 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Советская",
"icon": "turn_over_right_hand",
"id": "8420475458966632316",
"outcoming_path": {
"distance": 249,
"duration": 87,
"geometry": [
{
"color": "fluid",
"length": 58,
"selection": "LINESTRING(82.916643 55.029166, 82.916523 55.029583, 82.916494 55.029681)",
"style": "normal"
},
{
"color": "normal",
"length": 15,
"selection": "LINESTRING(82.916494 55.029681, 82.916456 55.029814)",
"style": "normal"
},
{
"color": "fluid",
"length": 16,
"selection": "LINESTRING(82.916456 55.029814, 82.916414 55.029960)",
"style": "normal"
},
{
"color": "normal",
"length": 58,
"selection": "LINESTRING(82.916414 55.029960, 82.916261 55.030482)",
"style": "normal"
},
{
"color": "fluid",
"length": 90,
"selection": "LINESTRING(82.916261 55.030482, 82.916027 55.031284)",
"style": "normal"
},
{
"color": "normal",
"length": 12,
"selection": "LINESTRING(82.916027 55.031284, 82.915995 55.031394)",
"style": "normal"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "250 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Вокзальная магистраль",
"icon": "crossroad_left",
"id": "18104619192304934598",
"outcoming_path": {
"distance": 368,
"duration": 78,
"geometry": [
{
"color": "fluid",
"length": 368,
"selection": "LINESTRING(82.915995 55.031394, 82.915960 55.031517, 82.915563 55.031603, 82.914960 55.031734, 82.913731 55.032000, 82.913544 55.032040, 82.912091 55.032356, 82.911982 55.032379, 82.911470 55.032490, 82.910849 55.032624, 82.910720 55.032653)",
"style": "normal"
}
],
"names": [
"Вокзальная магистраль"
]
},
"outcoming_path_comment": "350 м прямо",
"turn_angle": -59,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Вокзальная магистраль",
"icon": "turn_over_right_hand",
"id": "13348770239554625252",
"outcoming_path": {
"distance": 377,
"duration": 127,
"geometry": [
{
"color": "fast",
"length": 14,
"selection": "LINESTRING(82.910720 55.032653, 82.910673 55.032642, 82.910637 55.032618, 82.910624 55.032595, 82.910642 55.032554)",
"style": "invisible"
},
{
"color": "slow",
"length": 330,
"selection": "LINESTRING(82.910642 55.032554, 82.910771 55.032526, 82.911971 55.032266, 82.913971 55.031833, 82.915497 55.031502)",
"style": "normal"
},
{
"color": "fluid",
"length": 33,
"selection": "LINESTRING(82.915497 55.031502, 82.915618 55.031476, 82.915995 55.031394)",
"style": "normal"
}
],
"names": [
"Вокзальная магистраль"
]
},
"outcoming_path_comment": "400 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Советская",
"icon": "crossroad_right",
"id": "15253105671967248564",
"outcoming_path": {
"distance": 191,
"duration": 83,
"geometry": [
{
"color": "fluid",
"length": 12,
"selection": "LINESTRING(82.915995 55.031394, 82.916027 55.031284)",
"style": "normal"
},
{
"color": "normal",
"length": 90,
"selection": "LINESTRING(82.916027 55.031284, 82.916261 55.030482)",
"style": "normal"
},
{
"color": "fluid",
"length": 74,
"selection": "LINESTRING(82.916261 55.030482, 82.916414 55.029960, 82.916456 55.029814)",
"style": "normal"
},
{
"color": "fast",
"length": 15,
"selection": "LINESTRING(82.916456 55.029814, 82.916494 55.029681)",
"style": "normal"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "200 м прямо",
"turn_angle": 59,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Ленина",
"icon": "crossroad_right",
"id": "9588273571011429544",
"outcoming_path": {
"distance": 271,
"duration": 91,
"geometry": [
{
"color": "normal",
"length": 229,
"selection": "LINESTRING(82.916494 55.029681, 82.916360 55.029669, 82.915833 55.029619, 82.915311 55.029569, 82.914776 55.029518, 82.914132 55.029457, 82.913798 55.029425, 82.912901 55.029340)",
"style": "normal"
},
{
"color": "fast",
"length": 9,
"selection": "LINESTRING(82.912901 55.029340, 82.912757 55.029326)",
"style": "normal"
},
{
"color": "fluid",
"length": 33,
"selection": "LINESTRING(82.912757 55.029326, 82.912611 55.029312, 82.912235 55.029277)",
"style": "normal"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "250 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Ленина",
"icon": "crossroad_right",
"id": "9365853236098007493",
"outcoming_path": {
"distance": 27,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 27,
"selection": "LINESTRING(82.912235 55.029277, 82.912210 55.029367, 82.912168 55.029524)",
"style": "living_zone"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Ленина",
"icon": "turn_over_right_hand",
"id": "9177048473511845474",
"outcoming_path": {
"distance": 27,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 27,
"selection": "LINESTRING(82.912168 55.029524, 82.912210 55.029367, 82.912235 55.029277)",
"style": "living_zone"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Ленина",
"icon": "crossroad_right",
"id": "3140640626705196251",
"outcoming_path": {
"distance": 9,
"duration": 3,
"geometry": [
{
"color": "fluid",
"length": 9,
"selection": "LINESTRING(82.912235 55.029277, 82.912085 55.029262)",
"style": "normal"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "10 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Ленина",
"icon": "crossroad_left",
"id": "14909544907666212145",
"outcoming_path": {
"distance": 115,
"duration": 28,
"geometry": [
{
"color": "ignore",
"length": 115,
"selection": "LINESTRING(82.912085 55.029262, 82.912003 55.029167, 82.911993 55.029152, 82.911984 55.029138, 82.911976 55.029106, 82.911976 55.029102, 82.912013 55.028965, 82.912021 55.028932, 82.912015 55.028909, 82.911995 55.028893, 82.911954 55.028884, 82.911094 55.028808, 82.910865 55.028766)",
"style": "living_zone"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": -56,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Ленина",
"icon": "turn_over_right_hand",
"id": "10072189561708519964",
"outcoming_path": {
"distance": 115,
"duration": 28,
"geometry": [
{
"color": "ignore",
"length": 115,
"selection": "LINESTRING(82.910865 55.028766, 82.911094 55.028808, 82.911954 55.028884, 82.911995 55.028893, 82.912015 55.028909, 82.912021 55.028932, 82.912013 55.028965, 82.911976 55.029102, 82.911976 55.029106, 82.911984 55.029138, 82.911993 55.029152, 82.912003 55.029167, 82.912085 55.029262)",
"style": "living_zone"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Крутой поворот налево на ул. Ленина",
"icon": "crossroad_sharply_left",
"id": "4314119605078510911",
"outcoming_path": {
"distance": 62,
"duration": 17,
"geometry": [
{
"color": "fluid",
"length": 62,
"selection": "LINESTRING(82.912085 55.029262, 82.911425 55.029200, 82.911164 55.029175, 82.911092 55.029168)",
"style": "normal"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "60 м прямо",
"turn_angle": -124,
"turn_direction": "sharply_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Ленина",
"icon": "crossroad_right",
"id": "13005374320151525610",
"outcoming_path": {
"distance": 31,
"duration": 7,
"geometry": [
{
"color": "ignore",
"length": 31,
"selection": "LINESTRING(82.911092 55.029168, 82.911066 55.029265, 82.911040 55.029359, 82.911013 55.029464)",
"style": "living_zone"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Ленина",
"icon": "turn_over_right_hand",
"id": "16863987387607319975",
"outcoming_path": {
"distance": 31,
"duration": 7,
"geometry": [
{
"color": "ignore",
"length": 31,
"selection": "LINESTRING(82.911013 55.029464, 82.911040 55.029359, 82.911066 55.029265, 82.911092 55.029168)",
"style": "living_zone"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Ленина",
"icon": "crossroad_right",
"id": "1305420859965145328",
"outcoming_path": {
"distance": 43,
"duration": 12,
"geometry": [
{
"color": "fluid",
"length": 43,
"selection": "LINESTRING(82.911092 55.029168, 82.910418 55.029104)",
"style": "normal"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Ленина",
"icon": "crossroad_left",
"id": "15519132304107351831",
"outcoming_path": {
"distance": 41,
"duration": 10,
"geometry": [
{
"color": "ignore",
"length": 41,
"selection": "LINESTRING(82.910418 55.029104, 82.910445 55.029005, 82.910467 55.028925, 82.910517 55.028738)",
"style": "living_zone"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Ленина",
"icon": "turn_over_right_hand",
"id": "983880120902035278",
"outcoming_path": {
"distance": 41,
"duration": 10,
"geometry": [
{
"color": "ignore",
"length": 41,
"selection": "LINESTRING(82.910517 55.028738, 82.910467 55.028925, 82.910445 55.029005, 82.910418 55.029104)",
"style": "living_zone"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Крутой поворот налево на ул. Ленина",
"icon": "crossroad_sharply_left",
"id": "17566961453377398714",
"outcoming_path": {
"distance": 42,
"duration": 10,
"geometry": [
{
"color": "ignore",
"length": 42,
"selection": "LINESTRING(82.910418 55.029104, 82.910355 55.028996, 82.910306 55.028913, 82.910357 55.028723)",
"style": "living_zone"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -152,
"turn_direction": "sharply_left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Ленина",
"icon": "turn_over_right_hand",
"id": "9861463426555334216",
"outcoming_path": {
"distance": 42,
"duration": 10,
"geometry": [
{
"color": "ignore",
"length": 42,
"selection": "LINESTRING(82.910357 55.028723, 82.910306 55.028913, 82.910355 55.028996, 82.910418 55.029104)",
"style": "living_zone"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Крутой поворот налево на ул. Ленина",
"icon": "crossroad_sharply_left",
"id": "6297423242983332937",
"outcoming_path": {
"distance": 34,
"duration": 9,
"geometry": [
{
"color": "fluid",
"length": 34,
"selection": "LINESTRING(82.910418 55.029104, 82.909893 55.029054)",
"style": "normal"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -118,
"turn_direction": "sharply_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Ленина",
"icon": "crossroad_left",
"id": "11233955337537018005",
"outcoming_path": {
"distance": 30,
"duration": 7,
"geometry": [
{
"color": "ignore",
"length": 30,
"selection": "LINESTRING(82.909893 55.029054, 82.909919 55.028955, 82.909929 55.028919, 82.909966 55.028780)",
"style": "living_zone"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Ленина",
"icon": "turn_over_right_hand",
"id": "11064493470953473301",
"outcoming_path": {
"distance": 30,
"duration": 7,
"geometry": [
{
"color": "ignore",
"length": 30,
"selection": "LINESTRING(82.909966 55.028780, 82.909929 55.028919, 82.909919 55.028955, 82.909893 55.029054)",
"style": "living_zone"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Ленина",
"icon": "crossroad_left",
"id": "13476406463401579413",
"outcoming_path": {
"distance": 58,
"duration": 15,
"geometry": [
{
"color": "fluid",
"length": 58,
"selection": "LINESTRING(82.909893 55.029054, 82.909113 55.028980, 82.908976 55.028967)",
"style": "normal"
}
],
"names": [
"Ленина"
]
},
"outcoming_path_comment": "60 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Революции",
"icon": "crossroad_left",
"id": "8667011883132441762",
"outcoming_path": {
"distance": 306,
"duration": 100,
"geometry": [
{
"color": "normal",
"length": 104,
"selection": "LINESTRING(82.908976 55.028967, 82.909004 55.028864, 82.909082 55.028573, 82.909211 55.028092, 82.909230 55.028022)",
"style": "normal"
},
{
"color": "fluid",
"length": 14,
"selection": "LINESTRING(82.909230 55.028022, 82.909264 55.027895)",
"style": "normal"
},
{
"color": "normal",
"length": 85,
"selection": "LINESTRING(82.909264 55.027895, 82.909385 55.027443, 82.909405 55.027369, 82.909447 55.027211, 82.909473 55.027114)",
"style": "normal"
},
{
"color": "fluid",
"length": 103,
"selection": "LINESTRING(82.909473 55.027114, 82.909499 55.027017, 82.909698 55.026277, 82.909722 55.026187)",
"style": "normal"
}
],
"names": [
"Революции"
]
},
"outcoming_path_comment": "300 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Максима Горького",
"icon": "crossroad_left",
"id": "2668484381097318668",
"outcoming_path": {
"distance": 69,
"duration": 88,
"geometry": [
{
"color": "slow-jams",
"length": 69,
"selection": "LINESTRING(82.909722 55.026187, 82.909851 55.026199, 82.910264 55.026239, 82.910631 55.026275, 82.910830 55.026294)",
"style": "normal"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": -91,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Максима Горького",
"icon": "crossroad_left",
"id": "6302371132289431927",
"outcoming_path": {
"distance": 24,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 24,
"selection": "LINESTRING(82.910830 55.026294, 82.910809 55.026372, 82.910770 55.026516)",
"style": "living_zone"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "20 м прямо",
"turn_angle": -89,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Максима Горького",
"icon": "turn_over_right_hand",
"id": "6269598694108373730",
"outcoming_path": {
"distance": 24,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 24,
"selection": "LINESTRING(82.910770 55.026516, 82.910809 55.026372, 82.910830 55.026294)",
"style": "living_zone"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "20 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Максима Горького",
"icon": "crossroad_left",
"id": "9936835193929746196",
"outcoming_path": {
"distance": 7,
"duration": 9,
"geometry": [
{
"color": "slow-jams",
"length": 7,
"selection": "LINESTRING(82.910830 55.026294, 82.910938 55.026305)",
"style": "normal"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "10 м прямо",
"turn_angle": -91,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Максима Горького",
"icon": "crossroad_right",
"id": "3539203364970541890",
"outcoming_path": {
"distance": 52,
"duration": 12,
"geometry": [
{
"color": "ignore",
"length": 52,
"selection": "LINESTRING(82.910938 55.026305, 82.910961 55.026220, 82.910976 55.026161, 82.911002 55.026061, 82.910976 55.026161, 82.910961 55.026220, 82.910938 55.026305)",
"style": "living_zone"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "50 м прямо",
"turn_angle": 91,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Максима Горького",
"icon": "crossroad_right",
"id": "7958835393974002945",
"outcoming_path": {
"distance": 27,
"duration": 36,
"geometry": [
{
"color": "slow-jams",
"length": 27,
"selection": "LINESTRING(82.910938 55.026305, 82.911157 55.026326, 82.911365 55.026346)",
"style": "normal"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": 89,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Максима Горького",
"icon": "crossroad_right",
"id": "8243569703064088692",
"outcoming_path": {
"distance": 35,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 35,
"selection": "LINESTRING(82.911365 55.026346, 82.911388 55.026261, 82.911405 55.026199, 82.911454 55.026015)",
"style": "living_zone"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": 91,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Максима Горького",
"icon": "turn_over_right_hand",
"id": "15380668529158188631",
"outcoming_path": {
"distance": 35,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 35,
"selection": "LINESTRING(82.911454 55.026015, 82.911405 55.026199, 82.911388 55.026261, 82.911365 55.026346)",
"style": "living_zone"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Максима Горького",
"icon": "crossroad_right",
"id": "10886632372805444348",
"outcoming_path": {
"distance": 35,
"duration": 47,
"geometry": [
{
"color": "slow-jams",
"length": 35,
"selection": "LINESTRING(82.911365 55.026346, 82.911635 55.026372, 82.911914 55.026399)",
"style": "normal"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": 89,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Максима Горького",
"icon": "crossroad_left",
"id": "13895309663809556111",
"outcoming_path": {
"distance": 138,
"duration": 33,
"geometry": [
{
"color": "ignore",
"length": 138,
"selection": "LINESTRING(82.911914 55.026399, 82.911895 55.026468, 82.911890 55.026491, 82.911852 55.026630, 82.911573 55.026605, 82.911143 55.026567, 82.911573 55.026605, 82.911852 55.026630, 82.911890 55.026491, 82.911895 55.026468, 82.911914 55.026399)",
"style": "living_zone"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "150 м прямо",
"turn_angle": -89,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Максима Горького",
"icon": "crossroad_left",
"id": "2159459536083871237",
"outcoming_path": {
"distance": 2,
"duration": 2,
"geometry": [
{
"color": "slow-jams",
"length": 2,
"selection": "LINESTRING(82.911914 55.026399, 82.911955 55.026403)",
"style": "normal"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "10 м прямо",
"turn_angle": -91,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Максима Горького",
"icon": "crossroad_right",
"id": "15517221417829800882",
"outcoming_path": {
"distance": 48,
"duration": 12,
"geometry": [
{
"color": "ignore",
"length": 48,
"selection": "LINESTRING(82.911955 55.026403, 82.911979 55.026319, 82.911997 55.026251, 82.912007 55.026215, 82.912016 55.026178, 82.912007 55.026215, 82.911997 55.026251, 82.911979 55.026319, 82.911955 55.026403)",
"style": "living_zone"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "50 м прямо",
"turn_angle": 91,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Максима Горького",
"icon": "crossroad_right",
"id": "10997195023579339430",
"outcoming_path": {
"distance": 32,
"duration": 42,
"geometry": [
{
"color": "slow-jams",
"length": 32,
"selection": "LINESTRING(82.911955 55.026403, 82.912038 55.026411, 82.912128 55.026420, 82.912389 55.026445, 82.912484 55.026455)",
"style": "normal"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": 89,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Максима Горького",
"icon": "crossroad_left",
"id": "7534847685777944761",
"outcoming_path": {
"distance": 18,
"duration": 4,
"geometry": [
{
"color": "ignore",
"length": 18,
"selection": "LINESTRING(82.912484 55.026455, 82.912462 55.026540, 82.912484 55.026455)",
"style": "living_zone"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "20 м прямо",
"turn_angle": -89,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Максима Горького",
"icon": "crossroad_left",
"id": "1698909775924485890",
"outcoming_path": {
"distance": 22,
"duration": 20,
"geometry": [
{
"color": "slow",
"length": 22,
"selection": "LINESTRING(82.912484 55.026455, 82.912838 55.026489)",
"style": "normal"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "20 м прямо",
"turn_angle": -91,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Максима Горького",
"icon": "crossroad_left",
"id": "1966892095460696419",
"outcoming_path": {
"distance": 35,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 35,
"selection": "LINESTRING(82.912838 55.026489, 82.912816 55.026571, 82.912754 55.026805)",
"style": "archway"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -89,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Максима Горького",
"icon": "turn_over_right_hand",
"id": "17221942145041415466",
"outcoming_path": {
"distance": 35,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 35,
"selection": "LINESTRING(82.912754 55.026805, 82.912816 55.026571, 82.912838 55.026489)",
"style": "archway"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Максима Горького",
"icon": "crossroad_left",
"id": "10343024980499500821",
"outcoming_path": {
"distance": 41,
"duration": 37,
"geometry": [
{
"color": "slow",
"length": 41,
"selection": "LINESTRING(82.912838 55.026489, 82.912958 55.026500, 82.913054 55.026510, 82.913347 55.026538, 82.913496 55.026552)",
"style": "normal"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -91,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Урицкого",
"icon": "crossroad_right",
"id": "523687396081229237",
"outcoming_path": {
"distance": 66,
"duration": 59,
"geometry": [
{
"color": "fast",
"length": 66,
"selection": "LINESTRING(82.913496 55.026552, 82.913520 55.026462, 82.913655 55.025957)",
"style": "normal"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": 91,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Урицкого",
"icon": "turn_over_right_hand",
"id": "5131351873546148140",
"outcoming_path": {
"distance": 120,
"duration": 34,
"geometry": [
{
"color": "normal",
"length": 66,
"selection": "LINESTRING(82.913655 55.025957, 82.913520 55.026462, 82.913496 55.026552)",
"style": "normal"
},
{
"color": "fast",
"length": 54,
"selection": "LINESTRING(82.913496 55.026552, 82.913480 55.026613, 82.913475 55.026630, 82.913408 55.026881, 82.913361 55.027059)",
"style": "normal"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Урицкого",
"icon": "crossroad_right",
"id": "17574239001062347165",
"outcoming_path": {
"distance": 266,
"duration": 64,
"geometry": [
{
"color": "ignore",
"length": 266,
"selection": "LINESTRING(82.913361 55.027059, 82.913532 55.027074, 82.913895 55.027106, 82.914069 55.027121, 82.914258 55.027138, 82.914295 55.027148, 82.914317 55.027166, 82.914321 55.027186, 82.914254 55.027437, 82.914225 55.027477, 82.914188 55.027493, 82.914143 55.027501, 82.913425 55.027437, 82.914143 55.027501, 82.914188 55.027493, 82.914225 55.027477, 82.914254 55.027437, 82.914321 55.027186, 82.914317 55.027166, 82.914295 55.027148, 82.914258 55.027138, 82.914069 55.027121, 82.913895 55.027106)",
"style": "living_zone"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "250 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Урицкого",
"icon": "crossroad_left",
"id": "5131033301057204470",
"outcoming_path": {
"distance": 104,
"duration": 25,
"geometry": [
{
"color": "ignore",
"length": 104,
"selection": "LINESTRING(82.913895 55.027106, 82.913906 55.027063, 82.913934 55.026962, 82.913950 55.026940, 82.913975 55.026923, 82.914010 55.026917, 82.914074 55.026916, 82.915164 55.027013, 82.915276 55.027023)",
"style": "living_zone"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Урицкого",
"icon": "turn_over_right_hand",
"id": "8695935726797779248",
"outcoming_path": {
"distance": 104,
"duration": 25,
"geometry": [
{
"color": "ignore",
"length": 104,
"selection": "LINESTRING(82.915276 55.027023, 82.915164 55.027013, 82.914074 55.026916, 82.914010 55.026917, 82.913975 55.026923, 82.913950 55.026940, 82.913934 55.026962, 82.913906 55.027063, 82.913895 55.027106)",
"style": "living_zone"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Урицкого",
"icon": "crossroad_left",
"id": "18205091855262094108",
"outcoming_path": {
"distance": 34,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 34,
"selection": "LINESTRING(82.913895 55.027106, 82.913532 55.027074, 82.913361 55.027059)",
"style": "living_zone"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Урицкого",
"icon": "crossroad_left",
"id": "9317237440306443814",
"outcoming_path": {
"distance": 54,
"duration": 16,
"geometry": [
{
"color": "fast",
"length": 54,
"selection": "LINESTRING(82.913361 55.027059, 82.913408 55.026881, 82.913475 55.026630, 82.913480 55.026613, 82.913496 55.026552)",
"style": "normal"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "50 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Максима Горького",
"icon": "crossroad_left",
"id": "11255249214607331510",
"outcoming_path": {
"distance": 53,
"duration": 19,
"geometry": [
{
"color": "slow",
"length": 53,
"selection": "LINESTRING(82.913496 55.026552, 82.913667 55.026568, 82.914323 55.026629)",
"style": "normal"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "50 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Максима Горького",
"icon": "crossroad_right",
"id": "15877967854884818214",
"outcoming_path": {
"distance": 38,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 38,
"selection": "LINESTRING(82.914323 55.026629, 82.914349 55.026540, 82.914418 55.026283)",
"style": "living_zone"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Максима Горького",
"icon": "turn_over_right_hand",
"id": "3363853713292504346",
"outcoming_path": {
"distance": 38,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 38,
"selection": "LINESTRING(82.914418 55.026283, 82.914349 55.026540, 82.914323 55.026629)",
"style": "living_zone"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Максима Горького",
"icon": "crossroad_right",
"id": "7921105167402411164",
"outcoming_path": {
"distance": 66,
"duration": 24,
"geometry": [
{
"color": "fluid",
"length": 66,
"selection": "LINESTRING(82.914323 55.026629, 82.915355 55.026725)",
"style": "normal"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Максима Горького",
"icon": "crossroad_left",
"id": "11501254230374286011",
"outcoming_path": {
"distance": 6,
"duration": 1,
"geometry": [
{
"color": "ignore",
"length": 6,
"selection": "LINESTRING(82.915355 55.026725, 82.915341 55.026779)",
"style": "living_zone"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "10 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Максима Горького",
"icon": "turn_over_right_hand",
"id": "3095364842087454837",
"outcoming_path": {
"distance": 45,
"duration": 11,
"geometry": [
{
"color": "ignore",
"length": 45,
"selection": "LINESTRING(82.915341 55.026779, 82.915355 55.026725, 82.915380 55.026635, 82.915432 55.026439, 82.915450 55.026374)",
"style": "living_zone"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "50 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Максима Горького",
"icon": "turn_over_right_hand",
"id": "9887601016095787827",
"outcoming_path": {
"distance": 39,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 39,
"selection": "LINESTRING(82.915450 55.026374, 82.915432 55.026439, 82.915380 55.026635, 82.915355 55.026725)",
"style": "living_zone"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Максима Горького",
"icon": "crossroad_right",
"id": "6749665852829011419",
"outcoming_path": {
"distance": 32,
"duration": 11,
"geometry": [
{
"color": "fluid",
"length": 32,
"selection": "LINESTRING(82.915355 55.026725, 82.915855 55.026772)",
"style": "normal"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Максима Горького",
"icon": "crossroad_right",
"id": "3185807355466919500",
"outcoming_path": {
"distance": 138,
"duration": 33,
"geometry": [
{
"color": "ignore",
"length": 138,
"selection": "LINESTRING(82.915855 55.026772, 82.915878 55.026682, 82.915902 55.026591, 82.915982 55.026292, 82.915973 55.026262, 82.915929 55.026250, 82.915786 55.026237, 82.915929 55.026250, 82.915973 55.026262, 82.915982 55.026292, 82.915902 55.026591, 82.915878 55.026682, 82.915855 55.026772)",
"style": "living_zone"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "150 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Максима Горького",
"icon": "crossroad_right",
"id": "3697639786656300804",
"outcoming_path": {
"distance": 34,
"duration": 11,
"geometry": [
{
"color": "fluid",
"length": 34,
"selection": "LINESTRING(82.915855 55.026772, 82.916393 55.026822)",
"style": "normal"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "12656051351823948205",
"outcoming_path": {
"distance": 37,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 37,
"selection": "LINESTRING(82.916393 55.026822, 82.916416 55.026732, 82.916468 55.026535, 82.916481 55.026489)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот",
"icon": "turn_over_right_hand",
"id": "7029648677227128234",
"outcoming_path": {
"distance": 37,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 37,
"selection": "LINESTRING(82.916481 55.026489, 82.916468 55.026535, 82.916416 55.026732, 82.916393 55.026822)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Максима Горького",
"icon": "crossroad_right",
"id": "2311769713441410337",
"outcoming_path": {
"distance": 18,
"duration": 6,
"geometry": [
{
"color": "fluid",
"length": 18,
"selection": "LINESTRING(82.916393 55.026822, 82.916680 55.026848)",
"style": "normal"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "20 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево",
"icon": "crossroad_left",
"id": "3753756573052804925",
"outcoming_path": {
"distance": 193,
"duration": 46,
"geometry": [
{
"color": "ignore",
"length": 29,
"selection": "LINESTRING(82.916680 55.026848, 82.916650 55.026959, 82.916632 55.027025, 82.916607 55.027118)",
"style": "normal"
},
{
"color": "ignore",
"length": 12,
"selection": "LINESTRING(82.916607 55.027118, 82.916578 55.027226)",
"style": "archway"
},
{
"color": "ignore",
"length": 130,
"selection": "LINESTRING(82.916578 55.027226, 82.916548 55.027338, 82.916533 55.027347, 82.916512 55.027349, 82.916043 55.027308, 82.916021 55.027310, 82.916013 55.027321, 82.915973 55.027468, 82.916013 55.027321, 82.916021 55.027310, 82.916043 55.027308, 82.916512 55.027349, 82.916533 55.027347, 82.916548 55.027338, 82.916578 55.027226)",
"style": "normal"
},
{
"color": "ignore",
"length": 12,
"selection": "LINESTRING(82.916578 55.027226, 82.916607 55.027118)",
"style": "archway"
},
{
"color": "ignore",
"length": 10,
"selection": "LINESTRING(82.916607 55.027118, 82.916632 55.027025)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "200 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево",
"icon": "crossroad_left",
"id": "6130421105973088820",
"outcoming_path": {
"distance": 34,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 34,
"selection": "LINESTRING(82.916632 55.027025, 82.916734 55.027033, 82.916919 55.027050, 82.916734 55.027033, 82.916632 55.027025)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево",
"icon": "crossroad_left",
"id": "7159939933769485842",
"outcoming_path": {
"distance": 19,
"duration": 5,
"geometry": [
{
"color": "ignore",
"length": 19,
"selection": "LINESTRING(82.916632 55.027025, 82.916650 55.026959, 82.916680 55.026848)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "20 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Максима Горького",
"icon": "crossroad_left",
"id": "514314539320492535",
"outcoming_path": {
"distance": 38,
"duration": 12,
"geometry": [
{
"color": "fluid",
"length": 32,
"selection": "LINESTRING(82.916680 55.026848, 82.917181 55.026895)",
"style": "normal"
},
{
"color": "fast",
"length": 6,
"selection": "LINESTRING(82.917181 55.026895, 82.917288 55.026905)",
"style": "normal"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Советская",
"icon": "crossroad_right",
"id": "4237155607708633550",
"outcoming_path": {
"distance": 40,
"duration": 10,
"geometry": [
{
"color": "normal",
"length": 40,
"selection": "LINESTRING(82.917288 55.026905, 82.917312 55.026815, 82.917383 55.026548)",
"style": "normal"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Советская",
"icon": "turn_over_right_hand",
"id": "10253472699384949421",
"outcoming_path": {
"distance": 243,
"duration": 85,
"geometry": [
{
"color": "slow",
"length": 40,
"selection": "LINESTRING(82.917383 55.026548, 82.917312 55.026815, 82.917288 55.026905)",
"style": "normal"
},
{
"color": "fluid",
"length": 203,
"selection": "LINESTRING(82.917288 55.026905, 82.917264 55.026988, 82.917120 55.027495, 82.917051 55.027733, 82.917039 55.027776, 82.917005 55.027898, 82.916764 55.028739)",
"style": "normal"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "250 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Советская",
"icon": "turn_over_right_hand",
"id": "13113225135854056987",
"outcoming_path": {
"distance": 107,
"duration": 28,
"geometry": [
{
"color": "normal",
"length": 94,
"selection": "LINESTRING(82.916764 55.028739, 82.917005 55.027898)",
"style": "normal"
},
{
"color": "fast",
"length": 13,
"selection": "LINESTRING(82.917005 55.027898, 82.917039 55.027776)",
"style": "normal"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "13137666036516126325",
"outcoming_path": {
"distance": 97,
"duration": 23,
"geometry": [
{
"color": "ignore",
"length": 97,
"selection": "LINESTRING(82.917039 55.027776, 82.916906 55.027764, 82.916888 55.027762, 82.916806 55.027755, 82.916705 55.027746, 82.916685 55.027742, 82.916671 55.027734, 82.916647 55.027713, 82.916626 55.027699, 82.916592 55.027692, 82.916312 55.027667, 82.916033 55.027642, 82.915929 55.027633, 82.915612 55.027605, 82.915516 55.027597)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево",
"icon": "crossroad_left",
"id": "12950385314795852563",
"outcoming_path": {
"distance": 67,
"duration": 16,
"geometry": [
{
"color": "ignore",
"length": 67,
"selection": "LINESTRING(82.915516 55.027597, 82.915592 55.027315, 82.915599 55.027235, 82.915577 55.027205, 82.915534 55.027184, 82.915385 55.027150, 82.915249 55.027119)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Советская",
"icon": "crossroad_left",
"id": "11484272645218491295",
"outcoming_path": {
"distance": 37,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 37,
"selection": "LINESTRING(82.915249 55.027119, 82.915276 55.027023, 82.915341 55.026779)",
"style": "living_zone"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -78,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево",
"icon": "crossroad_left",
"id": "9825759855961327894",
"outcoming_path": {
"distance": 84,
"duration": 20,
"geometry": [
{
"color": "ignore",
"length": 84,
"selection": "LINESTRING(82.915341 55.026779, 82.915608 55.026826, 82.916069 55.026907, 82.916625 55.026957, 82.916650 55.026959)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "80 м прямо",
"turn_angle": -98,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот",
"icon": "turn_over_right_hand",
"id": "9399185967094081558",
"outcoming_path": {
"distance": 84,
"duration": 20,
"geometry": [
{
"color": "ignore",
"length": 84,
"selection": "LINESTRING(82.916650 55.026959, 82.916625 55.026957, 82.916069 55.026907, 82.915608 55.026826, 82.915341 55.026779)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "80 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Советская",
"icon": "crossroad_right",
"id": "17899219967592108241",
"outcoming_path": {
"distance": 37,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 37,
"selection": "LINESTRING(82.915341 55.026779, 82.915276 55.027023, 82.915249 55.027119)",
"style": "living_zone"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": 98,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "810634204990508194",
"outcoming_path": {
"distance": 116,
"duration": 36,
"geometry": [
{
"color": "ignore",
"length": 78,
"selection": "LINESTRING(82.915249 55.027119, 82.915385 55.027150, 82.915534 55.027184, 82.915577 55.027205, 82.915599 55.027235, 82.915592 55.027315, 82.915516 55.027597, 82.915488 55.027703)",
"style": "normal"
},
{
"color": "fast",
"length": 38,
"selection": "LINESTRING(82.915488 55.027703, 82.915345 55.027765, 82.915006 55.027911)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": 78,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "6270876116141846963",
"outcoming_path": {
"distance": 39,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 39,
"selection": "LINESTRING(82.915006 55.027911, 82.915077 55.027965, 82.915319 55.028148, 82.915339 55.028175, 82.915338 55.028210)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Плавный поворот налево",
"icon": "crossroad_slightly_left",
"id": "11872248643036917338",
"outcoming_path": {
"distance": 80,
"duration": 19,
"geometry": [
{
"color": "ignore",
"length": 80,
"selection": "LINESTRING(82.915338 55.028210, 82.915315 55.028286, 82.915278 55.028487, 82.915285 55.028509, 82.915304 55.028527, 82.915343 55.028540, 82.915738 55.028575, 82.916014 55.028600)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "80 м прямо",
"turn_angle": -41,
"turn_direction": "slightly_left",
"type": "crossroad"
},
{
"comment": "Разворот",
"icon": "turn_over_right_hand",
"id": "8035016224837627458",
"outcoming_path": {
"distance": 17,
"duration": 4,
"geometry": [
{
"color": "ignore",
"length": 17,
"selection": "LINESTRING(82.916014 55.028600, 82.915738 55.028575)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "20 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "18231652951780120216",
"outcoming_path": {
"distance": 52,
"duration": 12,
"geometry": [
{
"color": "ignore",
"length": 52,
"selection": "LINESTRING(82.915738 55.028575, 82.915733 55.028598, 82.915717 55.028656, 82.916291 55.028708, 82.916347 55.028712, 82.916414 55.028708)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "50 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "15794552256216574258",
"outcoming_path": {
"distance": 31,
"duration": 7,
"geometry": [
{
"color": "ignore",
"length": 31,
"selection": "LINESTRING(82.916414 55.028708, 82.916387 55.028652, 82.916366 55.028637, 82.916329 55.028628, 82.916014 55.028600)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": 106,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево",
"icon": "crossroad_left",
"id": "5249993576231435790",
"outcoming_path": {
"distance": 14,
"duration": 3,
"geometry": [
{
"color": "ignore",
"length": 14,
"selection": "LINESTRING(82.916014 55.028600, 82.916025 55.028558, 82.916049 55.028469)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "10 м прямо",
"turn_angle": -85,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот",
"icon": "turn_over_right_hand",
"id": "9245631099549999142",
"outcoming_path": {
"distance": 14,
"duration": 3,
"geometry": [
{
"color": "ignore",
"length": 14,
"selection": "LINESTRING(82.916049 55.028469, 82.916025 55.028558, 82.916014 55.028600)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "10 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "14154406131667091205",
"outcoming_path": {
"distance": 31,
"duration": 7,
"geometry": [
{
"color": "ignore",
"length": 31,
"selection": "LINESTRING(82.916014 55.028600, 82.916329 55.028628, 82.916366 55.028637, 82.916387 55.028652, 82.916414 55.028708)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": 85,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "13241545925901274034",
"outcoming_path": {
"distance": 21,
"duration": 5,
"geometry": [
{
"color": "ignore",
"length": 21,
"selection": "LINESTRING(82.916414 55.028708, 82.916628 55.028727, 82.916764 55.028739)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "20 м прямо",
"turn_angle": 61,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Советская",
"icon": "crossroad_left",
"id": "17343651464256393543",
"outcoming_path": {
"distance": 48,
"duration": 16,
"geometry": [
{
"color": "fluid",
"length": 48,
"selection": "LINESTRING(82.916764 55.028739, 82.916643 55.029166)",
"style": "normal"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "50 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "18088314690534354965",
"outcoming_path": {
"distance": 86,
"duration": 21,
"geometry": [
{
"color": "ignore",
"length": 86,
"selection": "LINESTRING(82.916643 55.029166, 82.916729 55.029173, 82.916745 55.029175, 82.916814 55.029181, 82.917039 55.029201, 82.917199 55.029215, 82.917688 55.029258, 82.918024 55.029288)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "90 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот",
"icon": "turn_over_right_hand",
"id": "17016206711235697467",
"outcoming_path": {
"distance": 86,
"duration": 21,
"geometry": [
{
"color": "ignore",
"length": 86,
"selection": "LINESTRING(82.918024 55.029288, 82.917688 55.029258, 82.917199 55.029215, 82.917039 55.029201, 82.916814 55.029181, 82.916745 55.029175, 82.916729 55.029173, 82.916643 55.029166)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "90 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Советская",
"icon": "crossroad_right",
"id": "9998544359298438281",
"outcoming_path": {
"distance": 89,
"duration": 29,
"geometry": [
{
"color": "fluid",
"length": 58,
"selection": "LINESTRING(82.916643 55.029166, 82.916523 55.029583, 82.916494 55.029681)",
"style": "normal"
},
{
"color": "normal",
"length": 31,
"selection": "LINESTRING(82.916494 55.029681, 82.916456 55.029814, 82.916414 55.029960)",
"style": "normal"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "90 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Советская",
"icon": "turn_over_right_hand",
"id": "1369771835986389641",
"outcoming_path": {
"distance": 137,
"duration": 40,
"geometry": [
{
"color": "fluid",
"length": 31,
"selection": "LINESTRING(82.916414 55.029960, 82.916456 55.029814, 82.916494 55.029681)",
"style": "normal"
},
{
"color": "normal",
"length": 106,
"selection": "LINESTRING(82.916494 55.029681, 82.916523 55.029583, 82.916643 55.029166, 82.916764 55.028739)",
"style": "normal"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "150 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "7457088316525456925",
"outcoming_path": {
"distance": 73,
"duration": 18,
"geometry": [
{
"color": "ignore",
"length": 73,
"selection": "LINESTRING(82.916764 55.028739, 82.916628 55.028727, 82.916414 55.028708, 82.916347 55.028712, 82.916291 55.028708, 82.915717 55.028656, 82.915733 55.028598, 82.915738 55.028575)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "6906181307352591146",
"outcoming_path": {
"distance": 63,
"duration": 15,
"geometry": [
{
"color": "ignore",
"length": 63,
"selection": "LINESTRING(82.915738 55.028575, 82.915343 55.028540, 82.915304 55.028527, 82.915285 55.028509, 82.915278 55.028487, 82.915315 55.028286, 82.915338 55.028210)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "60 м прямо",
"turn_angle": 85,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Плавный поворот направо",
"icon": "crossroad_slightly_right",
"id": "1831160237714656854",
"outcoming_path": {
"distance": 39,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 39,
"selection": "LINESTRING(82.915338 55.028210, 82.915339 55.028175, 82.915319 55.028148, 82.915077 55.027965, 82.915006 55.027911)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": 41,
"turn_direction": "slightly_right",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "1881188815448087326",
"outcoming_path": {
"distance": 146,
"duration": 66,
"geometry": [
{
"color": "fast",
"length": 146,
"selection": "LINESTRING(82.915006 55.027911, 82.914716 55.028036, 82.914340 55.028198, 82.914163 55.028274, 82.913712 55.028469, 82.913173 55.028701)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "150 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "6647116847093895634",
"outcoming_path": {
"distance": 22,
"duration": 5,
"geometry": [
{
"color": "ignore",
"length": 9,
"selection": "LINESTRING(82.913173 55.028701, 82.913246 55.028751, 82.913273 55.028769)",
"style": "normal"
},
{
"color": "ignore",
"length": 13,
"selection": "LINESTRING(82.913273 55.028769, 82.913459 55.028823)",
"style": "living_zone"
}
],
"names": []
},
"outcoming_path_comment": "20 м прямо",
"turn_angle": 93,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Урицкого",
"icon": "turn_over_right_hand",
"id": "1689601912412576678",
"outcoming_path": {
"distance": 22,
"duration": 5,
"geometry": [
{
"color": "ignore",
"length": 13,
"selection": "LINESTRING(82.913459 55.028823, 82.913273 55.028769)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 9,
"selection": "LINESTRING(82.913273 55.028769, 82.913246 55.028751, 82.913173 55.028701)",
"style": "normal"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "20 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "2444778420719268457",
"outcoming_path": {
"distance": 52,
"duration": 17,
"geometry": [
{
"color": "fast",
"length": 20,
"selection": "LINESTRING(82.913173 55.028701, 82.913046 55.028755, 82.913000 55.028775, 82.912971 55.028782, 82.912934 55.028784, 82.912901 55.028781)",
"style": "normal"
},
{
"color": "ignore",
"length": 32,
"selection": "LINESTRING(82.912901 55.028781, 82.912761 55.028769, 82.912640 55.028758, 82.912390 55.028736)",
"style": "living_zone"
}
],
"names": []
},
"outcoming_path_comment": "50 м прямо",
"turn_angle": 87,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Урицкого",
"icon": "turn_over_right_hand",
"id": "14551412325508926290",
"outcoming_path": {
"distance": 32,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 32,
"selection": "LINESTRING(82.912390 55.028736, 82.912640 55.028758, 82.912761 55.028769, 82.912901 55.028781)",
"style": "living_zone"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Урицкого",
"icon": "crossroad_right",
"id": "15940183237005072592",
"outcoming_path": {
"distance": 47,
"duration": 11,
"geometry": [
{
"color": "fast",
"length": 47,
"selection": "LINESTRING(82.912901 55.028781, 82.912933 55.028664, 82.913005 55.028396, 82.913014 55.028357)",
"style": "normal"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "50 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Депутатская",
"icon": "crossroad_right",
"id": "3152571450607173352",
"outcoming_path": {
"distance": 55,
"duration": 40,
"geometry": [
{
"color": "fast",
"length": 55,
"selection": "LINESTRING(82.913014 55.028357, 82.912943 55.028351, 82.912503 55.028312, 82.912136 55.028279)",
"style": "normal"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "60 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Депутатская",
"icon": "crossroad_right",
"id": "17244119099276016598",
"outcoming_path": {
"distance": 144,
"duration": 35,
"geometry": [
{
"color": "ignore",
"length": 144,
"selection": "LINESTRING(82.912136 55.028279, 82.912113 55.028366, 82.912090 55.028450, 82.912057 55.028574, 82.912039 55.028598, 82.912000 55.028612, 82.911949 55.028616, 82.911685 55.028592, 82.911443 55.028571, 82.911685 55.028592, 82.911949 55.028616, 82.912000 55.028612, 82.912039 55.028598, 82.912057 55.028574, 82.912090 55.028450, 82.912113 55.028366, 82.912136 55.028279)",
"style": "living_zone"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "150 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Депутатская",
"icon": "crossroad_right",
"id": "17271350145681961329",
"outcoming_path": {
"distance": 57,
"duration": 41,
"geometry": [
{
"color": "fast",
"length": 57,
"selection": "LINESTRING(82.912136 55.028279, 82.911393 55.028214, 82.911252 55.028202)",
"style": "normal"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "60 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Депутатская",
"icon": "crossroad_left",
"id": "12092200883953196197",
"outcoming_path": {
"distance": 29,
"duration": 7,
"geometry": [
{
"color": "ignore",
"length": 29,
"selection": "LINESTRING(82.911252 55.028202, 82.911275 55.028115, 82.911324 55.027933)",
"style": "living_zone"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Депутатская",
"icon": "turn_over_right_hand",
"id": "17320379882821776049",
"outcoming_path": {
"distance": 29,
"duration": 7,
"geometry": [
{
"color": "ignore",
"length": 29,
"selection": "LINESTRING(82.911324 55.027933, 82.911275 55.028115, 82.911252 55.028202)",
"style": "living_zone"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Депутатская",
"icon": "crossroad_left",
"id": "8402570055051012495",
"outcoming_path": {
"distance": 42,
"duration": 30,
"geometry": [
{
"color": "fast",
"length": 42,
"selection": "LINESTRING(82.911252 55.028202, 82.910599 55.028143)",
"style": "normal"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Депутатская",
"icon": "crossroad_right",
"id": "207297863004646423",
"outcoming_path": {
"distance": 78,
"duration": 19,
"geometry": [
{
"color": "ignore",
"length": 78,
"selection": "LINESTRING(82.910599 55.028143, 82.910575 55.028230, 82.910543 55.028351, 82.910529 55.028360, 82.910505 55.028362, 82.910270 55.028341, 82.910505 55.028362, 82.910529 55.028360, 82.910543 55.028351, 82.910575 55.028230, 82.910599 55.028143)",
"style": "living_zone"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "80 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Депутатская",
"icon": "crossroad_right",
"id": "2699520786332193582",
"outcoming_path": {
"distance": 86,
"duration": 62,
"geometry": [
{
"color": "fast",
"length": 86,
"selection": "LINESTRING(82.910599 55.028143, 82.910549 55.028139, 82.910329 55.028120, 82.910172 55.028106, 82.910132 55.028102, 82.909361 55.028034, 82.909230 55.028022)",
"style": "normal"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "90 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Депутатская",
"icon": "turn_over_right_hand",
"id": "16450151437418466030",
"outcoming_path": {
"distance": 57,
"duration": 16,
"geometry": [
{
"color": "fast",
"length": 57,
"selection": "LINESTRING(82.909230 55.028022, 82.909361 55.028034, 82.910132 55.028102)",
"style": "normal"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "60 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Депутатская",
"icon": "crossroad_left",
"id": "16988097920956216996",
"outcoming_path": {
"distance": 44,
"duration": 11,
"geometry": [
{
"color": "ignore",
"length": 44,
"selection": "LINESTRING(82.910132 55.028102, 82.910108 55.028189, 82.910092 55.028251, 82.910073 55.028321, 82.910092 55.028251, 82.910108 55.028189, 82.910132 55.028102)",
"style": "living_zone"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Депутатская",
"icon": "crossroad_left",
"id": "14307681282737053792",
"outcoming_path": {
"distance": 2,
"duration": 1,
"geometry": [
{
"color": "fast",
"length": 2,
"selection": "LINESTRING(82.910132 55.028102, 82.910172 55.028106)",
"style": "normal"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "10 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Депутатская",
"icon": "crossroad_right",
"id": "5821819649974716618",
"outcoming_path": {
"distance": 29,
"duration": 7,
"geometry": [
{
"color": "ignore",
"length": 29,
"selection": "LINESTRING(82.910172 55.028106, 82.910195 55.028019, 82.910244 55.027838)",
"style": "living_zone"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Депутатская",
"icon": "crossroad_left",
"id": "5058773091219755684",
"outcoming_path": {
"distance": 8,
"duration": 2,
"geometry": [
{
"color": "ignore",
"length": 8,
"selection": "LINESTRING(82.910244 55.027838, 82.910312 55.027844, 82.910386 55.027850)",
"style": "living_zone"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "10 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Депутатская",
"icon": "turn_over_right_hand",
"id": "12230097497607891155",
"outcoming_path": {
"distance": 8,
"duration": 2,
"geometry": [
{
"color": "ignore",
"length": 8,
"selection": "LINESTRING(82.910386 55.027850, 82.910312 55.027844, 82.910244 55.027838)",
"style": "living_zone"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "10 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Депутатская",
"icon": "crossroad_right",
"id": "126381302983796488",
"outcoming_path": {
"distance": 29,
"duration": 7,
"geometry": [
{
"color": "ignore",
"length": 29,
"selection": "LINESTRING(82.910244 55.027838, 82.910195 55.028019, 82.910172 55.028106)",
"style": "living_zone"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Депутатская",
"icon": "crossroad_right",
"id": "10104882716955967036",
"outcoming_path": {
"distance": 78,
"duration": 24,
"geometry": [
{
"color": "fast",
"length": 78,
"selection": "LINESTRING(82.910172 55.028106, 82.910329 55.028120, 82.910549 55.028139, 82.910599 55.028143, 82.911252 55.028202, 82.911393 55.028214)",
"style": "normal"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "80 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Депутатская",
"icon": "crossroad_left",
"id": "6502072596633065146",
"outcoming_path": {
"distance": 86,
"duration": 21,
"geometry": [
{
"color": "ignore",
"length": 86,
"selection": "LINESTRING(82.911393 55.028214, 82.911370 55.028301, 82.911347 55.028385, 82.911317 55.028495, 82.911302 55.028509, 82.911274 55.028519, 82.911239 55.028522, 82.911128 55.028513, 82.911239 55.028522, 82.911274 55.028519, 82.911302 55.028509, 82.911317 55.028495, 82.911347 55.028385, 82.911370 55.028301, 82.911393 55.028214)",
"style": "living_zone"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "90 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Депутатская",
"icon": "crossroad_left",
"id": "2203801501984329865",
"outcoming_path": {
"distance": 103,
"duration": 31,
"geometry": [
{
"color": "fast",
"length": 103,
"selection": "LINESTRING(82.911393 55.028214, 82.912136 55.028279, 82.912503 55.028312, 82.912943 55.028351, 82.913014 55.028357)",
"style": "normal"
}
],
"names": [
"Депутатская"
]
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Урицкого",
"icon": "crossroad_right",
"id": "12906212173838035256",
"outcoming_path": {
"distance": 97,
"duration": 34,
"geometry": [
{
"color": "fast",
"length": 97,
"selection": "LINESTRING(82.913014 55.028357, 82.913024 55.028319, 82.913087 55.028086, 82.913221 55.027583, 82.913249 55.027479)",
"style": "normal"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Щетинкина",
"icon": "crossroad_right",
"id": "12712177224367846865",
"outcoming_path": {
"distance": 72,
"duration": 19,
"geometry": [
{
"color": "fast",
"length": 72,
"selection": "LINESTRING(82.913249 55.027479, 82.913099 55.027466, 82.912531 55.027416, 82.912110 55.027379)",
"style": "normal"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "14542779170672293304",
"outcoming_path": {
"distance": 46,
"duration": 11,
"geometry": [
{
"color": "ignore",
"length": 46,
"selection": "LINESTRING(82.912110 55.027379, 82.912134 55.027288, 82.912139 55.027268, 82.912207 55.027015, 82.912222 55.026959)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "50 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Щетинкина",
"icon": "turn_over_right_hand",
"id": "1450017985962649401",
"outcoming_path": {
"distance": 36,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 36,
"selection": "LINESTRING(82.912222 55.026959, 82.912207 55.027015, 82.912139 55.027268, 82.912134 55.027288)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "9069421740213730207",
"outcoming_path": {
"distance": 34,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 34,
"selection": "LINESTRING(82.912134 55.027288, 82.912081 55.027283, 82.911855 55.027263, 82.912081 55.027283, 82.912134 55.027288)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "12773085580561534276",
"outcoming_path": {
"distance": 10,
"duration": 2,
"geometry": [
{
"color": "ignore",
"length": 10,
"selection": "LINESTRING(82.912134 55.027288, 82.912110 55.027379)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "10 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "17315417659729215627",
"outcoming_path": {
"distance": 21,
"duration": 5,
"geometry": [
{
"color": "fast",
"length": 21,
"selection": "LINESTRING(82.912110 55.027379, 82.911782 55.027351)",
"style": "normal"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "20 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "2724324238426304232",
"outcoming_path": {
"distance": 66,
"duration": 16,
"geometry": [
{
"color": "ignore",
"length": 10,
"selection": "LINESTRING(82.911782 55.027351, 82.911807 55.027259)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 28,
"selection": "LINESTRING(82.911807 55.027259, 82.911874 55.027008)",
"style": "archway"
},
{
"color": "ignore",
"length": 7,
"selection": "LINESTRING(82.911874 55.027008, 82.911888 55.026957, 82.911900 55.026945)",
"style": "living_zone"
},
{
"color": "ignore",
"length": 21,
"selection": "LINESTRING(82.911900 55.026945, 82.911921 55.026938, 82.911957 55.026936, 82.912222 55.026959)",
"style": "archway"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "1450017985962649401",
"outcoming_path": {
"distance": 36,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 36,
"selection": "LINESTRING(82.912222 55.026959, 82.912207 55.027015, 82.912139 55.027268, 82.912134 55.027288)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -95,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Щетинкина",
"icon": "turn_over_right_hand",
"id": "3646383658383111296",
"outcoming_path": {
"distance": 36,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 36,
"selection": "LINESTRING(82.912134 55.027288, 82.912139 55.027268, 82.912207 55.027015, 82.912222 55.026959)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "11419782354266012831",
"outcoming_path": {
"distance": 33,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 33,
"selection": "LINESTRING(82.912222 55.026959, 82.912253 55.026961, 82.912292 55.026965, 82.912765 55.027007)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Щетинкина",
"icon": "turn_over_right_hand",
"id": "3289684569882115656",
"outcoming_path": {
"distance": 33,
"duration": 8,
"geometry": [
{
"color": "ignore",
"length": 33,
"selection": "LINESTRING(82.912765 55.027007, 82.912292 55.026965, 82.912253 55.026961, 82.912222 55.026959)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "10288145956787445747",
"outcoming_path": {
"distance": 44,
"duration": 11,
"geometry": [
{
"color": "ignore",
"length": 44,
"selection": "LINESTRING(82.912222 55.026959, 82.912274 55.026763, 82.912222 55.026959)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "1028135104171519141",
"outcoming_path": {
"distance": 28,
"duration": 7,
"geometry": [
{
"color": "ignore",
"length": 21,
"selection": "LINESTRING(82.912222 55.026959, 82.911957 55.026936, 82.911921 55.026938, 82.911900 55.026945)",
"style": "archway"
},
{
"color": "ignore",
"length": 7,
"selection": "LINESTRING(82.911900 55.026945, 82.911888 55.026957, 82.911874 55.027008)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -85,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "17457327645704949212",
"outcoming_path": {
"distance": 90,
"duration": 22,
"geometry": [
{
"color": "ignore",
"length": 90,
"selection": "LINESTRING(82.911874 55.027008, 82.911812 55.027002, 82.911086 55.026938, 82.911035 55.026929, 82.911000 55.026915, 82.910862 55.026851, 82.910778 55.026785, 82.910776 55.026784, 82.910750 55.026742, 82.910730 55.026666)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "90 м прямо",
"turn_angle": -86,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Щетинкина",
"icon": "turn_over_right_hand",
"id": "17810484497521610968",
"outcoming_path": {
"distance": 90,
"duration": 22,
"geometry": [
{
"color": "ignore",
"length": 90,
"selection": "LINESTRING(82.910730 55.026666, 82.910750 55.026742, 82.910776 55.026784, 82.910778 55.026785, 82.910862 55.026851, 82.911000 55.026915, 82.911035 55.026929, 82.911086 55.026938, 82.911812 55.027002, 82.911874 55.027008)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "90 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "7681721221729937638",
"outcoming_path": {
"distance": 38,
"duration": 9,
"geometry": [
{
"color": "ignore",
"length": 28,
"selection": "LINESTRING(82.911874 55.027008, 82.911807 55.027259)",
"style": "archway"
},
{
"color": "ignore",
"length": 10,
"selection": "LINESTRING(82.911807 55.027259, 82.911782 55.027351)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "913863854911073784",
"outcoming_path": {
"distance": 147,
"duration": 38,
"geometry": [
{
"color": "fast",
"length": 147,
"selection": "LINESTRING(82.911782 55.027351, 82.911398 55.027317, 82.910370 55.027226, 82.910198 55.027211, 82.909767 55.027173, 82.909599 55.027143, 82.909473 55.027114)",
"style": "normal"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "150 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Щетинкина",
"icon": "turn_over_right_hand",
"id": "6039669546446082412",
"outcoming_path": {
"distance": 46,
"duration": 14,
"geometry": [
{
"color": "free",
"length": 46,
"selection": "LINESTRING(82.909473 55.027114, 82.909599 55.027143, 82.909767 55.027173, 82.910198 55.027211)",
"style": "normal"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "50 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "11196026247299177259",
"outcoming_path": {
"distance": 76,
"duration": 18,
"geometry": [
{
"color": "ignore",
"length": 76,
"selection": "LINESTRING(82.910198 55.027211, 82.910177 55.027293, 82.910062 55.027720, 82.910068 55.027749, 82.910098 55.027770, 82.910143 55.027780, 82.910185 55.027784, 82.910215 55.027794, 82.910237 55.027811, 82.910244 55.027838)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "80 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Щетинкина",
"icon": "turn_over_right_hand",
"id": "11515209509624382594",
"outcoming_path": {
"distance": 161,
"duration": 39,
"geometry": [
{
"color": "ignore",
"length": 161,
"selection": "LINESTRING(82.910244 55.027838, 82.910237 55.027811, 82.910215 55.027794, 82.910185 55.027784, 82.910143 55.027780, 82.910098 55.027770, 82.910068 55.027749, 82.910062 55.027720, 82.910177 55.027293, 82.910198 55.027211, 82.910217 55.027143, 82.910240 55.027055, 82.910341 55.026679, 82.910363 55.026655, 82.910391 55.026645, 82.910443 55.026641, 82.910730 55.026666)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "150 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Щетинкина",
"icon": "turn_over_right_hand",
"id": "4462111365109133879",
"outcoming_path": {
"distance": 85,
"duration": 20,
"geometry": [
{
"color": "ignore",
"length": 85,
"selection": "LINESTRING(82.910730 55.026666, 82.910443 55.026641, 82.910391 55.026645, 82.910363 55.026655, 82.910341 55.026679, 82.910240 55.027055, 82.910217 55.027143, 82.910198 55.027211)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "90 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Щетинкина",
"icon": "crossroad_right",
"id": "830543853333660792",
"outcoming_path": {
"distance": 77,
"duration": 23,
"geometry": [
{
"color": "free",
"length": 77,
"selection": "LINESTRING(82.910198 55.027211, 82.910370 55.027226, 82.911398 55.027317)",
"style": "normal"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "80 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "14144389025433987537",
"outcoming_path": {
"distance": 27,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 27,
"selection": "LINESTRING(82.911398 55.027317, 82.911334 55.027559)",
"style": "archway"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Щетинкина",
"icon": "turn_over_right_hand",
"id": "222455065995754255",
"outcoming_path": {
"distance": 27,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 27,
"selection": "LINESTRING(82.911334 55.027559, 82.911398 55.027317)",
"style": "archway"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "30 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "2381551974200631350",
"outcoming_path": {
"distance": 72,
"duration": 20,
"geometry": [
{
"color": "free",
"length": 72,
"selection": "LINESTRING(82.911398 55.027317, 82.911782 55.027351, 82.912110 55.027379, 82.912531 55.027416)",
"style": "normal"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "2837124246628292140",
"outcoming_path": {
"distance": 100,
"duration": 24,
"geometry": [
{
"color": "ignore",
"length": 100,
"selection": "LINESTRING(82.912531 55.027416, 82.912448 55.027728, 82.912433 55.027780, 82.912413 55.027865, 82.912433 55.027780, 82.912448 55.027728, 82.912531 55.027416)",
"style": "living_zone"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Щетинкина",
"icon": "crossroad_left",
"id": "6008131347605573261",
"outcoming_path": {
"distance": 45,
"duration": 12,
"geometry": [
{
"color": "free",
"length": 45,
"selection": "LINESTRING(82.912531 55.027416, 82.913099 55.027466, 82.913249 55.027479)",
"style": "normal"
}
],
"names": [
"Щетинкина"
]
},
"outcoming_path_comment": "50 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Урицкого",
"icon": "crossroad_left",
"id": "16960745065645997815",
"outcoming_path": {
"distance": 164,
"duration": 62,
"geometry": [
{
"color": "fast",
"length": 97,
"selection": "LINESTRING(82.913249 55.027479, 82.913221 55.027583, 82.913087 55.028086, 82.913024 55.028319, 82.913014 55.028357)",
"style": "normal"
},
{
"color": "fluid",
"length": 47,
"selection": "LINESTRING(82.913014 55.028357, 82.913005 55.028396, 82.912933 55.028664, 82.912901 55.028781)",
"style": "normal"
},
{
"color": "fast",
"length": 20,
"selection": "LINESTRING(82.912901 55.028781, 82.912854 55.028960)",
"style": "normal"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "150 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Урицкого",
"icon": "crossroad_left",
"id": "3633412673200782761",
"outcoming_path": {
"distance": 40,
"duration": 10,
"geometry": [
{
"color": "ignore",
"length": 40,
"selection": "LINESTRING(82.912854 55.028960, 82.912713 55.028947, 82.912592 55.028937, 82.912530 55.028931, 82.912592 55.028937, 82.912713 55.028947, 82.912854 55.028960)",
"style": "living_zone"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Урицкого",
"icon": "crossroad_left",
"id": "8035824455599507098",
"outcoming_path": {
"distance": 41,
"duration": 14,
"geometry": [
{
"color": "fast",
"length": 41,
"selection": "LINESTRING(82.912854 55.028960, 82.912783 55.029227, 82.912757 55.029326)",
"style": "normal"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "40 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Урицкого",
"icon": "turn_over_right_hand",
"id": "16002412874060853353",
"outcoming_path": {
"distance": 61,
"duration": 21,
"geometry": [
{
"color": "fast",
"length": 61,
"selection": "LINESTRING(82.912757 55.029326, 82.912783 55.029227, 82.912854 55.028960, 82.912901 55.028781)",
"style": "normal"
}
],
"names": [
"Урицкого"
]
},
"outcoming_path_comment": "60 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево",
"icon": "crossroad_left",
"id": "18375951945587815950",
"outcoming_path": {
"distance": 63,
"duration": 20,
"geometry": [
{
"color": "fast",
"length": 63,
"selection": "LINESTRING(82.912901 55.028781, 82.912934 55.028784, 82.912971 55.028782, 82.913000 55.028775, 82.913046 55.028755, 82.913173 55.028701, 82.913712 55.028469)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "60 м прямо",
"turn_angle": -64,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Советская",
"icon": "crossroad_left",
"id": "1508304054474122258",
"outcoming_path": {
"distance": 23,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 23,
"selection": "LINESTRING(82.913712 55.028469, 82.913782 55.028521, 82.913877 55.028593, 82.913941 55.028644)",
"style": "living_zone"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "20 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Разворот на ул. Советская",
"icon": "turn_over_right_hand",
"id": "13789536983238138540",
"outcoming_path": {
"distance": 23,
"duration": 6,
"geometry": [
{
"color": "ignore",
"length": 23,
"selection": "LINESTRING(82.913941 55.028644, 82.913877 55.028593, 82.913782 55.028521, 82.913712 55.028469)",
"style": "living_zone"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "20 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот налево",
"icon": "crossroad_left",
"id": "9832193823330691637",
"outcoming_path": {
"distance": 152,
"duration": 47,
"geometry": [
{
"color": "fast",
"length": 141,
"selection": "LINESTRING(82.913712 55.028469, 82.914163 55.028274, 82.914340 55.028198, 82.914716 55.028036, 82.915006 55.027911, 82.915345 55.027765, 82.915488 55.027703)",
"style": "normal"
},
{
"color": "ignore",
"length": 11,
"selection": "LINESTRING(82.915488 55.027703, 82.915516 55.027597)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "150 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот налево",
"icon": "crossroad_left",
"id": "8519106248795573963",
"outcoming_path": {
"distance": 97,
"duration": 23,
"geometry": [
{
"color": "ignore",
"length": 97,
"selection": "LINESTRING(82.915516 55.027597, 82.915612 55.027605, 82.915929 55.027633, 82.916033 55.027642, 82.916312 55.027667, 82.916592 55.027692, 82.916626 55.027699, 82.916647 55.027713, 82.916671 55.027734, 82.916685 55.027742, 82.916705 55.027746, 82.916806 55.027755, 82.916888 55.027762, 82.916906 55.027764, 82.917039 55.027776)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Советская",
"icon": "crossroad_right",
"id": "15242592515405157435",
"outcoming_path": {
"distance": 96,
"duration": 24,
"geometry": [
{
"color": "fast",
"length": 30,
"selection": "LINESTRING(82.917039 55.027776, 82.917051 55.027733, 82.917120 55.027495)",
"style": "normal"
},
{
"color": "normal",
"length": 57,
"selection": "LINESTRING(82.917120 55.027495, 82.917264 55.026988)",
"style": "normal"
},
{
"color": "fast",
"length": 9,
"selection": "LINESTRING(82.917264 55.026988, 82.917288 55.026905)",
"style": "normal"
}
],
"names": [
"Советская"
]
},
"outcoming_path_comment": "100 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево на ул. Максима Горького",
"icon": "crossroad_left",
"id": "14042707560222068994",
"outcoming_path": {
"distance": 245,
"duration": 105,
"geometry": [
{
"color": "slow",
"length": 245,
"selection": "LINESTRING(82.917288 55.026905, 82.917463 55.026920, 82.918104 55.026976, 82.918874 55.027042, 82.918989 55.027052, 82.920857 55.027214, 82.920944 55.027221, 82.921133 55.027238)",
"style": "normal"
}
],
"names": [
"Максима Горького"
]
},
"outcoming_path_comment": "250 м прямо",
"turn_angle": -90,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "Крутой поворот направо на ул. Красный проспект",
"icon": "crossroad_sharply_right",
"id": "6159415305385843739",
"outcoming_path": {
"distance": 275,
"duration": 54,
"geometry": [
{
"color": "fluid",
"length": 275,
"selection": "LINESTRING(82.921133 55.027238, 82.921159 55.026899, 82.921348 55.026196, 82.921400 55.026000, 82.921417 55.025938, 82.921433 55.025879, 82.921617 55.025193, 82.921685 55.024937, 82.921732 55.024762)",
"style": "normal"
}
],
"names": [
"Красный проспект"
]
},
"outcoming_path_comment": "300 м прямо",
"turn_angle": 97,
"turn_direction": "sharply_right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Октябрьская",
"icon": "crossroad_right",
"id": "6937026402347935908",
"outcoming_path": {
"distance": 719,
"duration": 234,
"geometry": [
{
"color": "normal",
"length": 719,
"selection": "LINESTRING(82.921732 55.024762, 82.921565 55.024747, 82.921191 55.024714, 82.919673 55.024580, 82.919558 55.024569, 82.919277 55.024544, 82.919194 55.024537, 82.918959 55.024516, 82.918619 55.024486, 82.918427 55.024469, 82.918108 55.024441, 82.917942 55.024426, 82.917784 55.024412, 82.917573 55.024394, 82.917109 55.024354, 82.916902 55.024336, 82.916456 55.024297, 82.916050 55.024261, 82.915883 55.024247, 82.915805 55.024240, 82.915248 55.024191, 82.915215 55.024188, 82.914702 55.024144, 82.914326 55.024111, 82.914152 55.024096, 82.913999 55.024081, 82.913711 55.024052, 82.913318 55.024014, 82.913270 55.024009, 82.912846 55.023967, 82.912560 55.023939, 82.912266 55.023910, 82.911374 55.023822, 82.911315 55.023816, 82.911158 55.023800, 82.910531 55.023739, 82.910447 55.023730, 82.910381 55.023723)",
"style": "normal"
}
],
"names": [
"Октябрьская"
]
},
"outcoming_path_comment": "700 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Революции",
"icon": "crossroad_right",
"id": "2617558692773097520",
"outcoming_path": {
"distance": 751,
"duration": 239,
"geometry": [
{
"color": "normal",
"length": 133,
"selection": "LINESTRING(82.910381 55.023723, 82.910372 55.023758, 82.910363 55.023797, 82.910245 55.024236, 82.910076 55.024863, 82.910058 55.024931)",
"style": "normal"
},
{
"color": "fluid",
"length": 445,
"selection": "LINESTRING(82.910058 55.024931, 82.910037 55.025008, 82.909807 55.025869, 82.909744 55.026107, 82.909722 55.026187, 82.909698 55.026277, 82.909499 55.027017, 82.909473 55.027114, 82.909447 55.027211, 82.909405 55.027369, 82.909385 55.027443, 82.909264 55.027895, 82.909230 55.028022, 82.909211 55.028092, 82.909082 55.028573, 82.909004 55.028864, 82.908976 55.028967)",
"style": "normal"
},
{
"color": "slow",
"length": 64,
"selection": "LINESTRING(82.908976 55.028967, 82.908947 55.029078, 82.908938 55.029110, 82.908819 55.029553)",
"style": "normal"
},
{
"color": "fluid",
"length": 58,
"selection": "LINESTRING(82.908819 55.029553, 82.908682 55.030069)",
"style": "normal"
},
{
"color": "slow",
"length": 51,
"selection": "LINESTRING(82.908682 55.030069, 82.908636 55.030238, 82.908844 55.030431, 82.908895 55.030485)",
"style": "normal"
}
],
"names": [
"Революции"
]
},
"outcoming_path_comment": "800 м прямо",
"turn_angle": 91,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "11417745982137571123",
"outcoming_path": {
"distance": 60,
"duration": 14,
"geometry": [
{
"color": "ignore",
"length": 60,
"selection": "LINESTRING(82.908895 55.030485, 82.909066 55.030443, 82.909230 55.030403, 82.909785 55.030267)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "60 м прямо",
"turn_angle": 82,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Разворот",
"icon": "turn_over_right_hand",
"id": "3228382340441149947",
"outcoming_path": {
"distance": 60,
"duration": 14,
"geometry": [
{
"color": "ignore",
"length": 60,
"selection": "LINESTRING(82.909785 55.030267, 82.909230 55.030403, 82.909066 55.030443, 82.908895 55.030485)",
"style": "normal"
}
],
"names": []
},
"outcoming_path_comment": "60 м прямо",
"turn_angle": -180,
"turn_direction": "uturn_left",
"type": "crossroad"
},
{
"comment": "Поворот направо на ул. Димитрова проспект",
"icon": "crossroad_right",
"id": "11273720810944531448",
"outcoming_path": {
"distance": 179,
"duration": 84,
"geometry": [
{
"color": "slow",
"length": 72,
"selection": "LINESTRING(82.908895 55.030485, 82.909140 55.030739, 82.909167 55.030767, 82.909451 55.031060)",
"style": "normal"
},
{
"color": "slow",
"length": 107,
"selection": "LINESTRING(82.909451 55.031060, 82.909520 55.031132, 82.910155 55.031936)",
"style": "normal"
}
],
"names": [
"Димитрова проспект"
]
},
"outcoming_path_comment": "200 м прямо",
"turn_angle": 96,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот направо",
"icon": "crossroad_right",
"id": "9953994410363890669",
"outcoming_path": {
"distance": 66,
"duration": 16,
"geometry": [
{
"color": "ignore",
"length": 11,
"selection": "LINESTRING(82.910155 55.031936, 82.910313 55.031895)",
"style": "normal"
},
{
"color": "ignore",
"length": 55,
"selection": "LINESTRING(82.910313 55.031895, 82.910818 55.031764, 82.910864 55.031752, 82.910887 55.031739, 82.910897 55.031721, 82.910891 55.031702, 82.910825 55.031619)",
"style": "archway"
}
],
"names": []
},
"outcoming_path_comment": "70 м прямо",
"turn_angle": 90,
"turn_direction": "right",
"type": "crossroad"
},
{
"comment": "Поворот налево",
"icon": "crossroad_left",
"id": "10734244457971753876",
"outcoming_path": {
"distance": 219,
"duration": 53,
"geometry": [
{
"color": "ignore",
"length": 219,
"selection": "LINESTRING(82.910825 55.031619, 82.910902 55.031598, 82.911159 55.031531, 82.910902 55.031598, 82.910825 55.031619, 82.910716 55.031636, 82.910593 55.031656, 82.910540 55.031655, 82.910501 55.031643, 82.910472 55.031620, 82.910156 55.031220, 82.910152 55.031196, 82.910160 55.031181, 82.910187 55.031166, 82.910339 55.031126, 82.910187 55.031166, 82.910160 55.031181, 82.910152 55.031196, 82.910156 55.031220, 82.910472 55.031620, 82.910501 55.031643, 82.910540 55.031655, 82.910593 55.031656, 82.910716 55.031636)",
"style": "living_zone"
}
],
"names": []
},
"outcoming_path_comment": "200 м прямо",
"turn_angle": -83,
"turn_direction": "left",
"type": "crossroad"
},
{
"comment": "finish",
"icon": "finish",
"id": "14294258866269052104",
"outcoming_path_comment": "Вы на месте!",
"type": "end"
}
],
"reliability": 1.0,
"total_distance": 16918,
"total_duration": 5116,
"type": "carrouting",
"ui_total_distance": {
"unit": "км",
"value": "17"
},
"ui_total_duration": "1 час 25 мин",
"waypoints": [
{
"original_point": {
"lat": 55.02968191583452,
"lon": 82.91649498416258
},
"projected_point": {
"lat": 55.02968191583452,
"lon": 82.91649498416258
},
"transit": false
},
{
"original_point": {
"lat": 55.03163683410334,
"lon": 82.91071612193984
},
"projected_point": {
"lat": 55.03163683410334,
"lon": 82.91071612193984
},
"transit": false
}
]
},
"success": true
}