Tag: 谷歌 地图 SDK IOS

标记群集与谷歌地图SDK的iOS?

我在iOS应用程序中使用Google Maps SDK,并且需要将彼此非常接近的标记进行分组 – 基本上需要使用标记集群,如附加的url中所示。 我能够在Android地图SDK中获得此function,但是我没有findiOS Google Maps SDK的任何库。 你能为此build议任何图书馆吗? 或build议一种方法来实现这个自定义库? (这张图片的来源 )

适用于iOS的Google Maps SDK需要GoogleMaps.bundle作为“复制包资源”下目标的一部分

当我为iOS构buildGoogleMaps SDK时,会发生这些错误。 *** Terminating app due to uncaught exception 'GMSException', reason: 'Google Maps SDK for iOS requires GoogleMaps.bundle to be part of your target under 'Copy Bundle Resources'' 但是,GoogleMaps.framework是在复制束资源。所以,我很困惑。请告诉我这个问题的原因。

添加button以查看由markerInfoWindow委托方法返回的结果

我目前正在创build和返回自定义视图与谷歌地图iOS SDK通过设置委托给自己并使用下面的代码。 #pragma mark – GMSMapViewDelegate -(UIView*)mapView:(GMSMapView *)mapView markerInfoWindow:(id<GMSMarker>)marker { int popupWidth = 200; int contentWidth = 180; int contentPad = 10; int popupHeight = 140; int popupBottomPadding = 16; int popupContentHeight = popupHeight – popupBottomPadding; int buttonHeight = 30; UIView *outerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, popupWidth, popupHeight)]; UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, […]

Google地图的自定义信息窗口

我想为iOS版Google地图制作自定义信息窗口,如下图所示。 是否可以像GMSMarker,GMSPolyline和GMSPolygon那样扩展GMSOverlay来创build自定义graphics?