-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP * - new sample * - correct package version (cherry picked from commit 7002f7b68fd805250a98b39dc001b70fe983086d) * - hide build errors (cherry picked from commit 9746886adb1a4f6aa6d2fda209434d214a3ae7cb) * - hide build errors * - Checking iOS [WIP] * - set access token for iOS * - remove unnecessary code * - add groupindex and item index * - align built-in styles to v11.1.0 Android SDK * - upgrade nuget version * - Fix many TODOs * - MapboxMapsObjc v11.1.0 * - use Mapbox SDK v11 (many examples not working) * - Set lib version * - correct version in readme * Extend GeometryExtension on Android to support converting Point to MapTappedPosition * MapboxFragment - Implement long clicked listener * Add new event and command for shared MapboxView that handles long click * Android MapboxViewHandler - handle long click event from fragment * iOS MapboxViewHandler - support long press * Android - unsubscribe long press in handler * iOS - Check long press state and make sure event is triggered only 1 time, when it begins * iOS - Add extension which helps with creating MapTappedPosition * Android - Fix issue where MapTappedPosition doesn't contain actual screen coordinates * Android - for screen coordinates adjust pixels to dp * - use .NET8 - use latest Mapbox SDK 11.3.x * - use latesting Android SDK binding * - correct nuget.config * Support geojson string ios (#12) * feat: v11.x.y enhance window build (#13) * - use shared files to work on Windows - change Maui.Graphics.Point to GeoJSON.IPosition for location coordinate e.g. mapcenter * - bumb new version * - amend CI/CD * - correct ci/cd script * - trigger fake build * - config download token * - try pass csproj property from cli * feat: Sample AnimatePointAnnotation (not done) (#15) * - only pack the MAUI lib * - Change to IPosition instead of GeoJSON.Point for MapTappedLocation - Change MapTappedPosition to a record - Add CoordinateBounds * - Add empty example AnimatePointAnnotation * - fix issue of converting MapboxGeoJSON Point to GeoJSON.NET.Position * bumb new version --------- Co-authored-by: Andrei Dinca <> Co-authored-by: DincaAndrei <[email protected]>
- Loading branch information
1 parent
2eacf25
commit fc1816b
Showing
104 changed files
with
1,961 additions
and
2,351 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": {} | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"cake.tool": { | ||
"version": "4.0.0", | ||
"commands": [ | ||
"dotnet-cake" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
dotnet nuget locals -c all | ||
dotnet pack -c Release -t:Clean,Rebuild src/libs/Mapbox.Maui/Mapbox.Maui.csproj --output $PWD/nugets | ||
|
||
# Build to trigger gradle process | ||
dotnet build -t:Clean,Rebuild src/qs/MapboxMauiQs/MapboxMauiQs.csproj \ | ||
-property:MAPBOX_DOWNLOADS_TOKEN=$MAPBOX_DOWNLOADS_TOKEN | ||
|
||
dotnet pack -c Release -t:Clean,Rebuild src/libs/Mapbox.Maui/Mapbox.Maui.csproj \ | ||
--output $PWD/nugets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"version": "7.0.306", | ||
"version": "8.0.100", | ||
"rollForward": "latestFeature" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<add key="Mapbox-Local" value="nugets" /> | ||
<add key="Local" value="nugets" /> | ||
</packageSources> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace MapboxMaui; | ||
|
||
public record CoordinateBounds ( | ||
IPosition Southwest, | ||
IPosition Northeast, | ||
bool InfiniteBounds = false); |
Oops, something went wrong.