diff options
author | Mikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com> | 2018-11-12 17:22:54 +0200 |
---|---|---|
committer | Mikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com> | 2018-11-19 22:31:20 +0200 |
commit | 8077055b1ad5bb7324b81c9b199176124240237b (patch) | |
tree | 715e92591a4187469614f726566eaeefe2757e15 /platform/darwin/src/MGLLineStyleLayer.mm | |
parent | 8ac87ec5cb2374d212a31942ca19ce395704eb69 (diff) | |
download | qtlocation-mapboxgl-8077055b1ad5bb7324b81c9b199176124240237b.tar.gz |
[ios, macos] Layer manager for Darwin platforms
The newly introduced `MGLStyleLayerManager` is now responsible
for creating both style layer objects and their obj C peers on Darwin.
Diffstat (limited to 'platform/darwin/src/MGLLineStyleLayer.mm')
-rw-r--r-- | platform/darwin/src/MGLLineStyleLayer.mm | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/platform/darwin/src/MGLLineStyleLayer.mm b/platform/darwin/src/MGLLineStyleLayer.mm index 1409a4608d..8fdd9a0bcc 100644 --- a/platform/darwin/src/MGLLineStyleLayer.mm +++ b/platform/darwin/src/MGLLineStyleLayer.mm @@ -8,9 +8,10 @@ #import "MGLStyleValue_Private.h" #import "MGLLineStyleLayer.h" #import "MGLLoggingConfiguration_Private.h" +#import "MGLLineStyleLayer_Private.h" #include <mbgl/style/transition_options.hpp> -#include <mbgl/style/layers/line_layer.hpp> + namespace mbgl { @@ -592,3 +593,11 @@ namespace mbgl { } @end + +namespace mbgl { + +MGLStyleLayer* LineStyleLayerPeerFactory::createPeer(style::Layer* rawLayer) { + return [[MGLLineStyleLayer alloc] initWithRawLayer:rawLayer]; +} + +} // namespace mbgl |