blob: 5d6e47eecb192dfe9f3015d3373c0756bde31aad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// CustomOverlayRenderer.swift
// MullvadVPN
//
// Created by pronebird on 26/10/2022.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import MapKit
class CustomOverlayRenderer: MKOverlayRenderer {
override func draw(_ mapRect: MKMapRect, zoomScale: MKZoomScale, in context: CGContext) {
let drawRect = rect(for: mapRect)
context.setFillColor(UIColor.secondaryColor.cgColor)
context.fill(drawRect)
}
}
|