Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rbrundritt committed Nov 11, 2020
1 parent e12d634 commit 4b5a565
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/azure-maps-selection-control.js
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ MIT License
if (s.getType() === 'Point') {
id = s.getId();
idLoookupTable_1[id] = s;
points.push(new azmaps.data.Feature(new azmaps.data.Point(s.getCoordinates()), { id: id }, id));
points.push(new azmaps.data.Feature(new azmaps.data.Point(s.getCoordinates()), null, id));
}
}
//Filter the points.
Expand Down
2 changes: 1 addition & 1 deletion dist/azure-maps-selection-control.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/extensions/MapMath.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class MapMath {
if(s.getType() === 'Point'){
id = s.getId();
idLoookupTable[id] = s;
points.push(new azmaps.data.Feature(new azmaps.data.Point(<azmaps.data.Position>s.getCoordinates()), { id: id }, id));
points.push(new azmaps.data.Feature(new azmaps.data.Point(<azmaps.data.Position>s.getCoordinates()), null, id));
}
}

Expand Down

0 comments on commit 4b5a565

Please sign in to comment.