-
Notifications
You must be signed in to change notification settings - Fork 96
Open
Labels
triage meI really want to be triaged.I really want to be triaged.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
Description
With the addition of the changes for the AdvancedMarkers, a problem has slipped in.
The documentation of AdvancedMarkers.position says:
An AdvancedMarkerElement may be constructed without a position, but will not be displayed until its position is provided
The problem is that in every algorithm (supercluster/grid/superviewport) the MarkerUtils.getPosition function is used which assumes that position of null
means lat=0, lng=0
which then leads to problems when calculating the center of a cluster.
One solution could be to return null
instead of google.maps.LatLng(null)
in the MarkerUtils.getPosition
function and then check everywhere where the position is used if MarkerUtils.getPosition(marker) == null
.
Metadata
Metadata
Assignees
Labels
triage meI really want to be triaged.I really want to be triaged.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.