Яндекс
0
Вклад в тег
var result = ymaps.geoQuery({
type: 'FeatureCollection',
features: [
{
type: 'Feature',
geometry: {
type: 'Circle',
coordinates: [15, 15],
radius: 100
}
},
{
type: 'Feature',
geometry: {
type: 'LineString',
coordinates: [[15, 16], [66, 23]]
}
},
{
type: 'FeatureCollection',
features: [
{
type: 'Feature',
geometry: {
type: 'Point',
coordinates: [12, 41]
},
properties: {
name: 'point'
},
options: {
preset: 'islands#yellowIcon'
}
}
]
}
]
});