私のアプリケーションでは、Google Maps iOS SDKのGMSMapViewを使用しています。 設定ページでアプリの言語を変更できます。 実行時にマップ上の言語を変更するにはどうすればよいですか?私はこの方法でGoogleMapで言語を変更するにはどうすればよいですか?
(void)prepareMap
{
[self.viewForMap removeAllSubviews];
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:latitude longitude:longtitude];
GMSMapView *mapView = [GMSMapView mapWithFrame:rect camera:camera];
[self.viewForMap addSubview:mapView];
}