Made on samples from the sandbox to add an array of points and create your own drop-down menu. At the moment, the points on the map are placed, but how to handle the JSON array and pull the necessary information out of it has not yet understood. At the moment, I got to this, but it does not work
$.getJSON('geojson.json').done(function (json){ for (var y = 0; y < json.features.length; y++) { var b = json.features[y]["properties"].address, c = json.features[y]["geometry"].coordinates; var listBoxItem = new ymaps.control.ListBoxItem({ data: { content: b, center: c } }) } }); I would be grateful for help, or at least for a hint where to spy and what can be adapted to my goal. If necessary - a demo , but without JSON it can be useless. Cross-domain requests for the demo do not work