I want to get a specific object from a group, for example I have the following objects:
var circleGroup = new H.map.Group({
volatility: true,
objects: [theCircle, circleOutline]
});
this._circle = circleGroup;
And I want to get the value of the object "theCircle", I'm using the below code to get the value of the object "theCircle" but it does not work.
_circle.getObjects()[0];