I need to put a mapView inside a ScrollView, but when I try to drag the map in the same direction as the scrollview, the scroll moves instead of the map, I found this question here in SO, the problem seems to be the exact same, however I am using Javascript.
my xml looks something like this:
<ScrollView>
<View>
<View id = "mapView">
</View>
<View>
<!-- stuff added programmatically -->
</View>
</View>
</ScrollView>
One more thing, this problem only happens in Android, not iOS.
Any help will be appreciated.