Skip to content

Commit 82e5710

Browse files
committed
feat (offline): allows to download TileRegion
1 parent 74e65d1 commit 82e5710

File tree

70 files changed

+811
-176
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+811
-176
lines changed

src/libs/Mapbox.Maui/IMapboxView.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
namespace Mapbox.Maui;
1+
namespace MapboxMaui;
22

33
using System.Windows.Input;
4-
using Mapbox.Maui.Annotations;
5-
using Mapbox.Maui.Styles;
4+
using MapboxMaui.Annotations;
5+
using MapboxMaui.Styles;
66

77
public partial interface IMapboxView : IView
88
{

src/libs/Mapbox.Maui/Mapbox.Maui.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
</ItemGroup>
5858

5959
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0-ios'">
60-
<PackageReference Include="MapboxMapsObjC.iOS" Version="10.11.1-alpha2" />
60+
<PackageReference Include="MapboxMapsObjC.iOS" Version="10.11.1-alpha3" />
6161
<PackageReference Include="MapboxMobileEvents.iOS" Version="1.0.10" />
6262
</ItemGroup>
6363
<ItemGroup>

src/libs/Mapbox.Maui/MapboxView.Events.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Mapbox.Maui;
1+
namespace MapboxMaui;
22

33
using System.Windows.Input;
44

src/libs/Mapbox.Maui/MapboxView.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
namespace Mapbox.Maui;
1+
namespace MapboxMaui;
22

3-
using Mapbox.Maui.Annotations;
4-
using Mapbox.Maui.Styles;
3+
using MapboxMaui.Annotations;
4+
using MapboxMaui.Styles;
55

66
public partial class MapboxView : View, IMapboxView
77
{

src/libs/Mapbox.Maui/MapboxViewHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
namespace Mapbox.Maui;
1+
namespace MapboxMaui;
22

33
using Microsoft.Maui.Handlers;
44

55
#if IOS
6-
using PlatformView = Mapbox.Maui.MapViewContainer;
6+
using PlatformView = MapboxMaui.MapViewContainer;
77
#elif __ANDROID__
88
using PlatformView = AndroidX.Fragment.App.FragmentContainerView;
99
#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS && !__ANDROID__)

src/libs/Mapbox.Maui/MauiAppBuilderExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Mapbox.Maui;
1+
namespace MapboxMaui;
22

33
#if IOS
44
using PlatformView = MapboxMaps.MapView;

src/libs/Mapbox.Maui/Models/Annotations/AnnotationsSelectedEventArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Mapbox.Maui.Annotations;
1+
namespace MapboxMaui.Annotations;
22

33
public class AnnotationsSelectedEventArgs : EventArgs
44
{

src/libs/Mapbox.Maui/Models/Annotations/IAnnotation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Mapbox.Maui.Annotations;
1+
namespace MapboxMaui.Annotations;
22

33
using GeoJSON.Net.Geometry;
44

src/libs/Mapbox.Maui/Models/Annotations/IAnnotationManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Mapbox.Maui.Annotations;
1+
namespace MapboxMaui.Annotations;
22

33
public interface IAnnotationManager<TAnnotation> where TAnnotation : IAnnotation
44
{

src/libs/Mapbox.Maui/Models/Annotations/IPolygonAnnotationManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Mapbox.Maui.Annotations;
1+
namespace MapboxMaui.Annotations;
22

33
public interface IPolygonAnnotationManager : IAnnotationManager<PolygonAnnotation>
44
{

0 commit comments

Comments
 (0)