27 lines
898 B
HTML
27 lines
898 B
HTML
<!DOCTYPE html>
|
||
|
||
<html>
|
||
|
||
<head>
|
||
<title>Построение пешеходного мультимаршрута</title>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||
<!--
|
||
Укажите свой API-ключ. Тестовый ключ НЕ БУДЕТ работать на других сайтах.
|
||
Получить ключ можно в Кабинете разработчика: https://developer.tech.yandex.ru/keys/
|
||
-->
|
||
<script src="https://api-maps.yandex.ru/2.1/?lang=ru_RU&apikey=d101001e-49f5-4a17-ac39-2d67f64b3f9b" type="text/javascript"></script>
|
||
<script src="../../static/js/safe_app_school/mapbasics.js" type="text/javascript"></script>
|
||
<style>
|
||
html, body, #map {
|
||
width: 100%; height: 100%; padding: 0; margin: 0;
|
||
}
|
||
|
||
</style>
|
||
</head>
|
||
|
||
<body>
|
||
<div id="map"></div>
|
||
</body>
|
||
|
||
</html>
|