From 336409b8613c4737d73e669b1ac3e0b6747f7ede Mon Sep 17 00:00:00 2001 From: Chris Loer Date: Tue, 20 Nov 2018 12:09:20 -0800 Subject: [ios, macos] Pass program cache path and local font family config options to MGLMapSnapshotter. --- platform/darwin/src/MGLMapSnapshotter.mm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/platform/darwin/src/MGLMapSnapshotter.mm b/platform/darwin/src/MGLMapSnapshotter.mm index 639a3b62ee..3d2a2525bc 100644 --- a/platform/darwin/src/MGLMapSnapshotter.mm +++ b/platform/darwin/src/MGLMapSnapshotter.mm @@ -16,6 +16,7 @@ #import "MGLStyle.h" #import "MGLAttributionInfo_Private.h" #import "MGLLoggingConfiguration_Private.h" +#import "MGLRendererConfiguration.h" #if TARGET_OS_IPHONE #import "UIImage+MGLAdditions.h" @@ -615,8 +616,11 @@ const CGFloat MGLSnapshotterMinimumPixelSize = 64; coordinateBounds = MGLLatLngBoundsFromCoordinateBounds(options.coordinateBounds); } + // App-global configuration + MGLRendererConfiguration* config = [MGLRendererConfiguration currentConfiguration]; + // Create the snapshotter - _mbglMapSnapshotter = std::make_unique(mbglFileSource, _mbglThreadPool, style, size, pixelRatio, cameraOptions, coordinateBounds); + _mbglMapSnapshotter = std::make_unique(mbglFileSource, _mbglThreadPool, style, size, pixelRatio, cameraOptions, coordinateBounds, config.cacheDir, config.localFontFamilyName); } @end -- cgit v1.2.1