Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/core/ui/layer/EllipseLayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class EllipseLayer extends Layer {
* @param {Function} [properties.getSemiMinorAxis] - defines a function to return the semiMinorAxis
* @param {Function} [properties.getHeight] - defines a function to return the height of the ellipse above the ellipsoid
* @param {Function} [properties.getRotation] - defines a function to return the rotation of the ellipse
* @param {Function} [properties.getEllipseID] - map an id to a unique ellipse
* @param {Function} [properties.getEllipseId] - map an id to a unique ellipse
*/
constructor(properties) {
super(properties);
Expand Down Expand Up @@ -98,7 +98,7 @@ class EllipseLayer extends Layer {
props.zIndex = properties.zIndex;
}

this.definedId('ellipseID', props)
this.definedId('ellipseId', props)

if (isDefined(properties.getPosition)){
let fn = async (rec, timestamp, options) => {
Expand Down