JavaScript
var myMap, mySearchControl;
function init() {
myMap = new ymaps.Map('map', {
center: [55.7, 37.5],
zoom: 9,
controls: ['zoomControl']
}),
// Создаем коллекцию.
myCollection = new ymaps.GeoObjectCollection({
}, {
preset: 'islands#redIcon'
});
// Создаем массив с данными.
myPoints = [
{ coords: [55.77, 37.46], text: 'Первый' },
{ coords: [55.66, 37.48], text: 'Кафе' },
{ coords: [55.65, 37.42], text: 'Ресторан' },
{ coords: [55.64, 37.54], text: 'Музей' },
{ coords: [55.54, 37.52], text: 'Библиотека' },
{ coords: [55.53, 37.56], text: 'Школа' },
{ coords: [55.61, 37.61], text: 'Аптека' },
{ coords: [55.80, 37.58], text: 'Бар' },
{ coords: [55.71, 37.35], text: 'Институт' },
{ coords: [55.74, 37.57], text: 'Университет' },
{ coords: [55.58, 37.69], text: 'Больница' },
{ coords: [55.57, 37.70], text: 'Цирк' },
{ coords: [55.55, 37.64], text: 'Магазин' },
{ coords: [55.50, 37.75], text: 'Булочная' },
{ coords: [55.81, 37.73], text: 'Полиция' },
{ coords: [55.73, 37.68], text: 'Салон красоты' },
{ coords: [55.86, 37.76], text: 'Баня' },
{ coords: [55.38, 37.69], text: 'Гараж' },
{ coords: [55.91, 37.50], text: 'Дом' },
{ coords: [55.62, 37.32], text: 'Прачечная' },
{ coords: [55.85, 37.41], text: 'Стадион' },
{ coords: [55.67, 37.24], text: 'Вокзал' },
{ coords: [45.67, 37.24], text: 'Вокзал5' },
{ coords: [40.67, 37.24], text: 'Вокзал4' },
{ coords: [65.67, 37.24], text: 'Вокзал3' },
{ coords: [60.67, 37.24], text: 'Последний' }
];
// Заполняем коллекцию данными.
for (var i = 0, l = myPoints.length; i < l; i++) {
var point =...