Stilli Harita Ekle

Platform seçin: Android iOS JavaScript

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

import GoogleMaps

class MapStyling: UIViewController {

  // Set the status bar style to complement night-mode.
  override var preferredStatusBarStyle: UIStatusBarStyle {
    return .lightContent
  }

  override func loadView() {
    let camera = GMSCameraPosition.camera(withLatitude: -33.86, longitude: 151.20, zoom: 14.0)
    let mapView = GMSMapView.map(withFrame: CGRect.zero, camera: camera)

    do {
      // Set the map style by passing the URL of the local file.
      if let styleURL = Bundle.main.url(forResource: "style", withExtension: "json") {
        mapView.mapStyle = try GMSMapStyle(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"
@import GoogleMaps;

@interface MapStyling ()

@end

@implementation MapStyling

// Set the status bar style to complement night-mode.
- (UIStatusBarStyle)preferredStatusBarStyle {
  return UIStatusBarStyleLightContent;
}

- (void)loadView {
  GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:-33.86
                                                          longitude:151.20
                                                               zoom:12];
  GMSMapView *mapView = [GMSMapView mapWithFrame:CGRectZero camera:camera];
  mapView.myLocationEnabled = YES;

  NSBundle *mainBundle = [NSBundle mainBundle];
  NSURL *styleUrl = [mainBundle URLForResource:@"style" withExtension:@"json"];
  NSError *error;

  // Set the map style by passing the URL for style.json.
  GMSMapStyle *style = [GMSMapStyle styleWithContentsOfFileURL:styleUrl error:&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:

Dize kaynağı kullanma

Aşağıdaki örneklerde, GMSMapStyle(...) işlevinin çağrılması ve bir dize kaynağının iletilmesi gösterilmektedir:

Swift

class MapStylingStringResource: UIViewController {

  let MapStyle = "JSON_STYLE_GOES_HERE"

  // Set the status bar style to complement night-mode.
  override var preferredStatusBarStyle: UIStatusBarStyle {
    return .lightContent
  }

  override func loadView() {
    let camera = GMSCameraPosition.camera(withLatitude: -33.86, longitude: 151.20, zoom: 14.0)
    let mapView = GMSMapView.map(withFrame: CGRect.zero, camera: camera)

    do {
      // Set the map style by passing a valid JSON string.
      mapView.mapStyle = try GMSMapStyle(jsonString: MapStyle)
    } catch {
      NSLog("One or more of the map styles failed to load. \(error)")
    }

    self.view = mapView
  }
}
      

Objective-C

@implementation MapStylingStringResource

// Paste the JSON string to use.
static NSString *const kMapStyle = @"JSON_STYLE_GOES_HERE";

// Set the status bar style to complement night-mode.
- (UIStatusBarStyle)preferredStatusBarStyle {
  return UIStatusBarStyleLightContent;
}

- (void)loadView {
  GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:-33.86
                                                          longitude:151.20
                                                               zoom:12];
  GMSMapView *mapView = [GMSMapView mapWithFrame:CGRectZero camera:camera];
  mapView.myLocationEnabled = YES;

  NSError *error;

  // Set the map style by passing a valid JSON string.
  GMSMapStyle *style = [GMSMapStyle styleWithJSONString:kMapStyle error:&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:

JSON stil beyanları

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 kütleleri ve 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.

Haritalar Platformu Stil Sihirbazı

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.

Sonraki adım

Stillendirmeyle haritadaki özellikleri nasıl gizleyeceğinizi öğrenin.