-1

I'm creating an Android app with Cordova. I'm currently using iScroll for smooth scrolling and have set the following iScroll options click = true and tap = true.

All the clicks/taps work fine with the exception of all click events on the map, map markers.

If I remove the iScroll options then only the map click events work and not all the others in the app.

How can I solve this and what is going on?

geocodezip
  • 158,664
  • 13
  • 220
  • 245
Daniela
  • 861
  • 5
  • 11
  • 28
  • I assume you're using a MapView. You'll probably have to create a custom MapView and override the touch event. See this question: http://stackoverflow.com/questions/6546108/mapview-inside-a-scrollview – Andy May 06 '15 at 15:40

1 Answers1

0

I solved the issue by using 'onmouseover' event instead of 'onclick'.

Daniela
  • 861
  • 5
  • 11
  • 28