capacitor-plugins icon indicating copy to clipboard operation
capacitor-plugins copied to clipboard

bugfix for getIdFromMarker()

Open mjwheatley opened this issue 3 years ago • 0 comments

bug: The for loop iterating the markers for a specified mapId will never return a match because the cursor representing the marker ID is being used as the mapId. bugfix: change line 87 from if (this.maps[id].markers[id] == marker) { to if (this.maps[mapId].markers[id] == marker) {

mjwheatley avatar Jun 14 '22 15:06 mjwheatley