Scrolling ion-content over my google-map :)

@brengsekerz has talk about a but when I use it, nothing happens.
I’m a bit desperate.

Here’s my “new” code :

<ion-view title="Places">
	<ion-content overflow-scroll="true" ng-controller="InterestMapViewCtrl" scroll="false" ng-init="init()">

		<google-map class="interestsmap" draggable="true" center="map.center" zoom="map.zoom" options="map.options">
			<markers models="map.markers" coords="'self'" click="'onClicked'" fit="fit" doCluster="true">
				<windows show="'showWindow'" closeClick="'closeClick'" ng-cloak>
					<div>
						<h4>{{ placeName(title) }}</h4>
						<p>
							{{ placeAddress(title) }}
						</p>
						<p>
							&nbsp;
						</p>
					</div>
				</windows>
			</markers>
		</google-map>
		
		<ion-scroll direction="y" class="hotel-view" on-scroll="onScrollHotelView()">
			<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sit recusandae aut, fugit in, sequi modi, eaque, temporibus quis odio dolores nemo ullam debitis?</p>
		</ion-scroll>
		
	</ion-content
</ion-view>