1

我一直在上网,并查看了谷歌提供的文档,试图找到有关此的内容。设置当前位置标题和副标题?

我特别要寻找的是为当前位置“点”设置标题和副标题。因此,当用户点击点/当前位置时,会出现标题和副标题。

它应该与 GMSMarker 非常相似。我已经能够在当前位置点的顶部设置 GMSMarker,但结果并不完全相同。如果有兴趣,这是我的代码:

//为当前位置创建标记//

 GMSMarker *CurrentLocationMarker = [[GMSMarker alloc] init];

    CLLocation *CurrentLocationNote = GoogleMaps.myLocation;

CurrentLocationMarker.position = CLLocationCoordinate2DMake(CurrentLocationNote.coordinate.latitude, CurrentLocationNote.coordinate.longitude);
CurrentLocationMarker.title = @"Current Location";
CurrentLocationMarker.snippet = CurrentLocation;
CurrentLocationMarker.map = GoogleMaps;

只是一个示例应用程序,因此所有的混乱

4

2 回答 2

4

你能做你目前正在做的事情,但将标记的图标设置为透明图像吗?

于 2013-06-18T00:28:11.087 回答
0

正如您当前所做的那样,您可以在当前位置添加一个标记。现在对于显示完整地址的第二部分,您可以利用 google maps ios sdk 中提供的reversegeocode服务,并从响应中的firstresult中获取字段addressline1 和 addressline2并将它们附加到此标记的片段

于 2013-07-27T14:51:50.717 回答