Answer the question
In order to leave comments, you need to log in
How to increase the size of names in Yandex maps in html?
There is a page map.html
What can be added here so that the names of settlements become 2-4 times larger?
I could not find such a parameter in Yandex maps
<!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 src="https://yandex.st/jquery/1.6.4/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
ymaps.ready(init);
var myMap;
function init () {
myMap = new ymaps.Map(
'map',
{
center: [38.60351187, 29.66400591], zoom: 9,
type: 'yandex#map'
}
);
myMap.behaviors
.disable(['drag', 'rightMouseButtonMagnifier']);
}
</script>
</head>
<body style="margin:0;">
<div id="map" style="width:1500px; height:1500px"></div>
</body>
</html>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question