我正在使用谷歌ios SDK在我的应用程序中显示方向。我已使用下面的代码绘制了两个点并显示了相应点的信息。
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:9.96 longitude:76.31 zoom:12];
_mapView = [GMSMapView mapWithFrame:self.view.bounds camera:camera];
_mapView.myLocationEnabled = YES;
_mapView.delegate = self;
[self.view addSubview:_mapView];
_markerStart = [GMSMarker new];
_markerStart.title = @"Sreeni";
_markerStart.snippet=@"2Km";
_markerStart.icon = [GMSMarker markerImageWithColor:[UIColor greenColor]];
现在我想显示一个信息窗口,显示每个点之间的距离和行走物体的图像。