A
A
Anton2019-06-07 17:23:17
Google Maps
Anton, 2019-06-07 17:23:17

What service to make a large wall map?

Hello.
I found an article on the topic: https://plunix.ru/zahvat-bolshoy-yandex-karty-dlya...
but simple saving/editing of html did not work in this case, the hands are crooked or the code has already changed.
Maybe you know how to make your big map on the wall in Yandex (like it the most) or other services?
30000x18000 pixels, for example.
Thank you.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
E
Evgeny Mikhalev, 2019-06-07
@hunk3r

sasgis.ru/sasplaneta is a free program that can download and glue maps from many sources at different scales

S
should, 2019-06-07
@should

Regarding the article, there were also problems. I fix the last successful code on it. You change the center of the map, choose the scale and the desired resolution.
For example, set 1000x1000px.
I don’t remember what the screen shot was, like Full Page Screen Capture, here you will need to try different ones.

spoiler
<!DOCTYPE html>
<html>
<head>
<title>Yandex Map</title>
<meta charset="utf-8">
<script src="http://api-maps.yandex.ru/2.0/?load=package.full&lang=ru-RU"></script>
<script>
ymaps.ready(init);
function init () {
var myMap = new ymaps.Map("map", {
center: [51.651080, 39.221870], 
zoom: 15
});
}
</script>
</head>
<body style="margin:0;">
<div id="map" style="width:1000px; height:1000px"></div>
</body>
</html>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question