我一直在上网,看过谷歌提供的试图找到这方面的文件。设置当前位置标题和副标题?
我特别想要的是为当前位置“点”设置标题和副标题。因此,当用户点击点/当前位置时,会出现标题和副标题。
它应该与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;
答案 0 :(得分:3)
你可以做你目前正在做的事情,但是将标记的图标设置为透明图像吗?
答案 1 :(得分:0)
正如您目前所做的那样,您可以在当前位置添加标记。现在,对于显示完整地址的第二部分,您可以使用Google地图ios sdk中提供的reversegeocode服务,并从响应中的addressline1 and addressline2获取字段firstresult并附加他们到这个标记的片段