Yeni harita stilleri yakında Google Haritalar Platformu'nda kullanıma sunulacak. Harita stilinde yapılan bu güncelleme, yeni bir varsayılan renk paletinin yanı sıra harita deneyimleri ve kullanılabilirliğiyle ilgili iyileştirmeler içermektedir. Tüm harita stilleri Mart 2025'te otomatik olarak güncellenecektir. Bu özelliğin kullanılabilirliği ve bu özelliğe daha önce nasıl katılacağınız hakkında daha fazla bilgi edinmek için Google Haritalar Platformu için yeni harita stili başlıklı makaleyi inceleyin.
Bu sayfada, gece modunu örnek olarak kullanarak haritanıza stil uygulamayla ilgili kısa bir kılavuz sunulmaktadır.
Genel Bakış
Stil seçenekleri sayesinde standart Google harita stillerinin sunumunu özelleştirebilir, yollar, parklar, işletmeler ve diğer önemli yerler gibi özelliklerin görsel görüntüsünü değiştirebilirsiniz. Bu sayede haritanın belirli bileşenlerini vurgulayabilir veya haritanın uygulamanızın tarzını tamamlamasını sağlayabilirsiniz.
Stillendirme yalnızca kGMSTypeNormal harita türünde çalışır.
Haritanıza stil uygulama
Bir haritaya özel harita stilleri uygulamak için yerel bir JSON dosyasının URL'sini veya stil tanımlarını içeren bir JSON dizesini ileterek GMSMapStyle(...) örneği oluşturmak için GMSMapStyle işlevini çağırın. GMSMapStyle örneğini haritanın mapStyle özelliğine atayın.
JSON dosyası kullanma
Aşağıdaki örneklerde, GMSMapStyle(...) işlevinin çağrılması ve yerel bir dosya için URL'nin iletilmesi gösterilmektedir:
Swift
importGoogleMapsclassMapStyling:UIViewController{// Set the status bar style to complement night-mode.overridevarpreferredStatusBarStyle:UIStatusBarStyle{return.lightContent}overridefuncloadView(){letcamera=GMSCameraPosition.camera(withLatitude:-33.86,longitude:151.20,zoom:14.0)letmapView=GMSMapView.map(withFrame:CGRect.zero,camera:camera)do{// Set the map style by passing the URL of the local file.ifletstyleURL=Bundle.main.url(forResource:"style",withExtension:"json"){mapView.mapStyle=tryGMSMapStyle(contentsOfFileURL:styleURL)}else{NSLog("Unable to find style.json")}}catch{NSLog("One or more of the map styles failed to load. \(error)")}self.view=mapView}}
Objective-C
#import "MapStyling.h"@importGoogleMaps;@interfaceMapStyling()@end@implementationMapStyling// Set the status bar style to complement night-mode.-(UIStatusBarStyle)preferredStatusBarStyle{returnUIStatusBarStyleLightContent;}-(void)loadView{GMSCameraPosition*camera=[GMSCameraPositioncameraWithLatitude:-33.86longitude:151.20zoom:12];GMSMapView*mapView=[GMSMapViewmapWithFrame:CGRectZerocamera:camera];mapView.myLocationEnabled=YES;NSBundle*mainBundle=[NSBundlemainBundle];NSURL*styleUrl=[mainBundleURLForResource:@"style"withExtension:@"json"];NSError*error;// Set the map style by passing the URL for style.json.GMSMapStyle*style=[GMSMapStylestyleWithContentsOfFileURL:styleUrlerror:&error];if(!style){NSLog(@"The style definition could not be loaded: %@",error);}mapView.mapStyle=style;self.view=mapView;}@end
Stil seçeneklerini tanımlamak için projenize style.json adlı yeni bir dosya ekleyin ve gece modu stili için aşağıdaki JSON stil beyanını yapıştırın:
Aşağıdaki örneklerde, GMSMapStyle(...) işlevinin çağrılması ve bir dize kaynağının iletilmesi gösterilmektedir:
Swift
classMapStylingStringResource:UIViewController{letMapStyle="JSON_STYLE_GOES_HERE"// Set the status bar style to complement night-mode.overridevarpreferredStatusBarStyle:UIStatusBarStyle{return.lightContent}overridefuncloadView(){letcamera=GMSCameraPosition.camera(withLatitude:-33.86,longitude:151.20,zoom:14.0)letmapView=GMSMapView.map(withFrame:CGRect.zero,camera:camera)do{// Set the map style by passing a valid JSON string.mapView.mapStyle=tryGMSMapStyle(jsonString:MapStyle)}catch{NSLog("One or more of the map styles failed to load. \(error)")}self.view=mapView}}
Objective-C
@implementationMapStylingStringResource// Paste the JSON string to use.staticNSString*constkMapStyle=@"JSON_STYLE_GOES_HERE";// Set the status bar style to complement night-mode.-(UIStatusBarStyle)preferredStatusBarStyle{returnUIStatusBarStyleLightContent;}-(void)loadView{GMSCameraPosition*camera=[GMSCameraPositioncameraWithLatitude:-33.86longitude:151.20zoom:12];GMSMapView*mapView=[GMSMapViewmapWithFrame:CGRectZerocamera:camera];mapView.myLocationEnabled=YES;NSError*error;// Set the map style by passing a valid JSON string.GMSMapStyle*style=[GMSMapStylestyleWithJSONString:kMapStyleerror:&error];if(!style){NSLog(@"The style definition could not be loaded: %@",error);}mapView.mapStyle=style;self.view=mapView;}@end
Stil seçeneklerini tanımlamak için kMapStyle değişkeninin değeri olarak aşağıdaki stil dizesini yapıştırın:
Stilize haritalar, haritaya renk ve diğer stil değişikliklerini uygulamak için iki kavram kullanır:
Seçiciler, haritada stil uygulayabileceğiniz coğrafi bileşenleri belirtir. Buna yollar, parklar, su alanları ve daha fazlası ile bunların etiketleri dahildir. Seçiciler, featureType ve elementType özellikleri olarak belirtilen özellikleri ve öğeleri içerir.
Stil uygulayıcılar, harita öğelerine uygulayabileceğiniz renk ve görünürlük özellikleridir. Bunlar; ton, renk ve açıklık/gama değerlerinin bir kombinasyonuyla görüntülenen rengi tanımlar.
JSON stil seçeneklerinin ayrıntılı açıklaması için stil referansı bölümüne bakın.
JSON stil nesnesi oluşturmanın hızlı bir yolu olarak Haritalar Platformu Stil Düzenleyicisi'ni kullanın. iOS için Haritalar SDK'sı, Maps JavaScript API ile aynı stil beyanlarını destekler.
Tam kod örnekleri
GitHub'daki ApiDemos deposu, stil kullanımının gösterildiği örnekler içerir.
[null,null,["Son güncelleme tarihi: 2024-12-22 UTC."],[[["This guide provides instructions for styling Google Maps using JSON to customize the appearance of map elements."],["You can style your map using a local JSON file or a JSON string, applying it to the `mapStyle` property of the map."],["JSON style declarations consist of selectors (`featureType`, `elementType`) to target map components and stylers to define their visual properties."],["Leverage the Maps Platform Styling Wizard to easily create custom JSON styles and apply them to your maps."],["Styling is applicable only to the `kGMSTypeNormal` map type and offers flexibility in highlighting or blending map features with your application's design."]]],[]]