Skip to content

Commit

Permalink
fix: properly handle info windows again (fixes #139)
Browse files Browse the repository at this point in the history
  • Loading branch information
hansemannn committed Feb 5, 2021
1 parent f54c1b2 commit 228f910
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Classes/TiGooglemapsView.m
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,10 @@ - (BOOL)mapView:(GMSMapView *)mapView didTapMarker:(GMSMarker *)marker
@"latitude" : @(marker.position.latitude),
@"longitude" : @(marker.position.longitude)
}];
return YES;
}

return YES;
return NO;
}

- (void)mapView:(GMSMapView *)mapView didTapInfoWindowOfMarker:(GMSMarker *)marker
Expand Down
2 changes: 1 addition & 1 deletion manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 6.1.0
version: 6.1.1
apiversion: 2
mac: false
architectures: armv7 arm64 i386 x86_64
Expand Down

0 comments on commit 228f910

Please sign in to comment.