capacitor-plugins
capacitor-plugins copied to clipboard
bugfix for getIdFromMarker()
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) {