A
A
Alexander Ivanov2017-10-02 11:37:52
JavaScript
Alexander Ivanov, 2017-10-02 11:37:52

How to display the coordinates of the active point yandex map?

https://tech.yandex.ru/maps/jsbox/2.1/search_contr... - in the example we find coordinates

function init() {
    var myMap = new ymaps.Map('map', {
        center: [55.74, 37.58],
        zoom: 13,
        controls: []
    });
    
    // Создадим экземпляр элемента управления «поиск по карте»
    // с установленной опцией провайдера данных для поиска по организациям.
    var searchControl = new ymaps.control.SearchControl({
        options: {
            provider: 'yandex#search'
        }
    });
    
    myMap.controls.add(searchControl);
    
    // Программно выполним поиск определённых кафе в текущей
    // прямоугольной области карты.
    searchControl.search('Шоколадница');
}

ymaps.ready(init);

Suppose when you click on find, we get an alert with coordinates

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question