I use GMSMapView from Google Maps iOS SDK in my application.
I can change app language in settings page.
How to change language on map in runtime?
I can reload or recreate map on this method
(void)prepareMap
{
[self.viewForMap removeAllSubviews];
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:latitude longitude:longtitude];
GMSMapView *mapView = [GMSMapView mapWithFrame:rect camera:camera];
[self.viewForMap addSubview:mapView];
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…