3

google map iOS SDK の InfoWindow の幅を変更したいです。とにかくすることはありますか?

私がやりたい理由は、InfoWindow に完全なアドレスを表示するためです。InfoWindow をカスタマイズする代わりに、他の方法はありますか?

また、InfoWindow のテキスト サイズを変更することはできますか?

少なくとも、ハイパーリンクを適用できるhttp://www.google.com/about/company/facts/locations/の地図のような効果を達成したいと思い ます。

4

1 に答える 1

9

マップdelegateをビュー コントローラーに設定し、Google マップのデリゲート メソッドを実装します。

-(UIView *)mapView:(GMSMapView *) aMapView markerInfoWindow:(GMSMarker*) marker
{
    UIView *view = [[UIView alloc]init];
    //customize the UIView, for example, in your case, add a UILabel as the subview of the view
    return view;
}
于 2013-03-03T23:24:09.520 に答える