我一直在上网,并查看了谷歌提供的文档,试图找到有关此的内容。设置当前位置标题和副标题?
我特别要寻找的是为当前位置“点”设置标题和副标题。因此,当用户点击点/当前位置时,会出现标题和副标题。
它应该与 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;