R
R
Ruslan Shadura2016-05-13 12:10:21
API
Ruslan Shadura, 2016-05-13 12:10:21

How to download a Yandex map with an address from an additional field?

The task is as follows: on the record page, you need to load a Yandex map with an address from an additional field. Can you tell me how this can be implemented?
PS I did not find anything suitable in the search.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexander, 2016-05-20
@Houdy

Here is the code for direct geocoding in the Yandex sandbox . 17:15 I myself became interested in how to implement this, and here is the result . In the files where we display the map, we write:

<?php
$adress = '<?php echo $adress[0];?>';       // получаем значение переменной
?>

here $adress - change to your variable
Next, write the following
<script>
      //Определяется переменная, которая будет доступна для 
      // всех JavaScript, подключаемых на данной странице
      var js_ad = '<?php echo $adress; ?>';
 </script>

We connect the map script
We connect our file with the script direct_geocode.js
We make the output of the map itself in the place we need on the page
And here is the code of our script direct_geocode.js
ymaps.ready(init);

function init() {
    var myMap = new ymaps.Map('map', {
        center: [55.753994, 37.622093],    // поменяйте местоположение центрирования карты, можно воспользоваться сервисом https://constructor.maps.yandex.ru/location-tool/
        zoom: 9
    });

    // Поиск координат центра значения нашей переменной js_ad.
    ymaps.geocode(js_ad, {
        /**
         * Опции запроса
         * @see https://api.yandex.ru/maps/doc/jsapi/2.1/ref/reference/geocode.xml
         */
        // Сортировка результатов от центра окна карты.
        // boundedBy: myMap.getBounds(),
        // strictBounds: true,
        // Вместе с опцией boundedBy будет искать строго внутри области, указанной в boundedBy.
        // Если нужен только один результат, экономим трафик пользователей.
        results: 1
    }).then(function (res) {
            // Выбираем первый результат геокодирования.
            var firstGeoObject = res.geoObjects.get(0),
                // Координаты геообъекта.
                coords = firstGeoObject.geometry.getCoordinates(),
                // Область видимости геообъекта.
                bounds = firstGeoObject.properties.get('boundedBy');

            // Добавляем первый найденный геообъект на карту.
            myMap.geoObjects.add(firstGeoObject);
            // Масштабируем карту на область видимости геообъекта.
            myMap.setBounds(bounds, {
                // Проверяем наличие тайлов на данном масштабе.
                checkZoomRange: true
            });

            /**
             * Все данные в виде javascript-объекта.
             */
            console.log('Все данные геообъекта: ', firstGeoObject.properties.getAll());
            /**
             * Метаданные запроса и ответа геокодера.
             * @see https://api.yandex.ru/maps/doc/geocoder/desc/reference/GeocoderResponseMetaData.xml
             */
            console.log('Метаданные ответа геокодера: ', res.metaData);
            /**
             * Метаданные геокодера, возвращаемые для найденного объекта.
             * @see https://api.yandex.ru/maps/doc/geocoder/desc/reference/GeocoderMetaData.xml
             */
            console.log('Метаданные геокодера: ', firstGeoObject.properties.get('metaDataProperty.GeocoderMetaData'));
            /**
             * Точность ответа (precision) возвращается только для домов.
             * @see https://api.yandex.ru/maps/doc/geocoder/desc/reference/precision.xml
             */
            console.log('precision', firstGeoObject.properties.get('metaDataProperty.GeocoderMetaData.precision'));
            /**
             * Тип найденного объекта (kind).
             * @see https://api.yandex.ru/maps/doc/geocoder/desc/reference/kind.xml
             */
            console.log('Тип геообъекта: %s', firstGeoObject.properties.get('metaDataProperty.GeocoderMetaData.kind'));
            console.log('Название объекта: %s', firstGeoObject.properties.get('name'));
            console.log('Описание объекта: %s', firstGeoObject.properties.get('description'));
            console.log('Полное описание объекта: %s', firstGeoObject.properties.get('text'));

            /**
             * Если нужно добавить по найденным геокодером координатам метку со своими стилями и контентом балуна, создаем новую метку по координатам найденной и добавляем ее на карту вместо найденной.
             */
            /**
             var myPlacemark = new ymaps.Placemark(coords, {
             iconContent: 'моя метка',
             balloonContent: 'Содержимое балуна <strong>моей метки</strong>'
             }, {
             preset: 'islands#violetStretchyIcon'
             });

             myMap.geoObjects.add(myPlacemark);
             */
        });
}

Actually, that's all :)
UPD based on the comment :
here you write like this
<?php
$address = get_the_title(); // подставляет текст из тайтла
?>

and here it is
<script>
      //Определяется переменная, которая будет доступна для 
      // всех JavaScript, подключаемых на данной странице. ПОДСТАВЛЯЕМ город
      var js_ad = 'Казань, <?php echo $adress; ?>';
 </script>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question