gpt4 book ai didi

ios - 如何在 GMSMapView 上实现 GMSMarker 拖放?

转载 作者:可可西里 更新时间:2023-11-01 03:07:07 31 4
gpt4 key购买 nike

  1. 我在谷歌地图上设置了标记,但是当我拖动它时,所有 map 都被拖动了。

  2. 我想要在点击并拖动它时拖动标记

  3. 点击并拖动标记外部时拖动 map 。

这是我的代码

self.camera = [GMSCameraPosition cameraWithLatitude:-33.86 longitude:151.20 zoom:6 bearing:0 viewingAngle:0];
self.Map = [GMSMapView mapWithFrame:self.MapView.bounds camera:self.camera];
self.Map.myLocationEnabled = YES;
self.Map.delegate = self;

GMSMarker *marker = [[GMSMarker alloc] init];
marker.position = self.camera.target;
marker.draggable = YES;
marker.title = @"Sydney";
marker.snippet = @"Australia";
marker.map = self.Map;
marker.icon = [GMSMarker markerImageWithColor:[UIColor blueColor]];
marker.appearAnimation = kGMSMarkerAnimationPop;

[self.MapView addSubview:self.Map];

这是拖放事件

- (void) mapView:(GMSMapView *)mapView didBeginDraggingMarker:(GMSMarker *)marker
{

}

- (void) mapView:(GMSMapView *)mapView didEndDraggingMarker:(GMSMarker *)marker
{

}

- (void) mapView:(GMSMapView *)mapView didDragMarker:(GMSMarker *)marker
{

}

当我运行我的应用程序并调试上述所有事件时,它们都不起作用。但事件点击标记效果很好。

我如何实现拖放?

最佳答案

在开始拖动之前,您必须按住标记。在有人指出这一点之前,我认为它也不起作用……真的需要在 Google 的文档中。

关于ios - 如何在 GMSMapView 上实现 GMSMarker 拖放?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22294545/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com