我在我的 IOS 应用程序中使用谷歌地图。我在地图中添加了几个标记,现在我需要使用它的坐标来获取一个特定的标记。我用了:
CLLocationCoordinate2D position = CLLocationCoordinate2DMake(51.5, -0.127);
GMSMarker *marker = [GMSMarker markerWithPosition:position];
但我认为我需要创建一个新标记,而不是之前创建一个。
我在我的 IOS 应用程序中使用谷歌地图。我在地图中添加了几个标记,现在我需要使用它的坐标来获取一个特定的标记。我用了:
CLLocationCoordinate2D position = CLLocationCoordinate2DMake(51.5, -0.127);
GMSMarker *marker = [GMSMarker markerWithPosition:position];
但我认为我需要创建一个新标记,而不是之前创建一个。