Skip to content

Commit 88ad6a8

Browse files
committed
fix: force pod version in demo
1 parent 5a7a7ac commit 88ad6a8

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

demo/app/App_Resources/iOS/Podfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pod 'Mapbox-iOS-SDK', '~> 5.1.1'

demo/app/main-page.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -201,13 +201,13 @@ export function onMapReady(args) {
201201
map.removePolylines([10]);
202202
}, 24000);
203203

204-
this works just fine, but it interferes with the programmatic map so not doing this in the demo
205-
setTimeout(() => {
206-
map.trackUser({
207-
mode: "FOLLOW_WITH_HEADING",
208-
animated: true
209-
});
210-
}, 25000);
204+
// this works just fine, but it interferes with the programmatic map so not doing this in the demo
205+
// setTimeout(() => {
206+
// map.trackUser({
207+
// mode: "FOLLOW_WITH_HEADING",
208+
// animated: true
209+
// });
210+
// }, 25000);
211211
}
212212

213213
// END

0 commit comments

Comments
 (0)