I’m sorry to write a post similar to others but I have this problem and I can’t find a working solution, I have this view
<ion-view title="Places" class="background">
<ion-content scroll="false">
<div data-tap-disabled="true">
<google-map center="map.center" zoom="map.zoom" draggable="true" options="map.options" >
<markers models="pictures" coords="'self'" doCluster="true" click="onPictureSelected" options="'options'">
</markers>
</google-map>
</div>
</ion-content>
</ion-view>
and I’m using tabs
<ion-tab title="Places" icon="ion-map" ui-sref="tabs.places">
<ion-nav-view name="places-tab"></ion-nav-view>
</ion-tab>
I’m using angular google maps and in the controller I’m binding the onPictureSelected function. Everything is working well on desktop but when I run the application on android (Nexus 7 2013) the tap/click is not triggered.
I’ve already searched and read similar problems on github issues like this one but I can’t get it working.