You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 2, 2023. It is now read-only.
Scenario:
1- Create ASMapNode
2- At some point during the app, toggle liveMap = true
3- Map does not receive touches
Solution:
when you set liveMap = true, set mapNode.userInteractionEnabled = true
Looking at the code, I saw that self.userInteractionEnabled = YES is only enabled in didLoad of ASMapNode when the node is created with liveMap = true, was there a reason for it to be that way rather than enabling and disabling it in addLiveMap and removeLiveMap respectively?