Skip to content

Commit 880abc8

Browse files
authored
Merge pull request #2236 from mvegaca/Issue2231-map
Test fixes
2 parents 38f1479 + 49c0fcc commit 880abc8

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

templates/Uwp/Pages/Map.CaliburnMicro/ViewModels/MapPageViewModel.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ protected override async void OnInitialize()
8383

8484
// TODO WTS: Set your map service token. If you don't have one, request from https://www.bingmapsportal.com/
8585
// MapServiceToken = string.Empty;
86-
8786
var view = GetView() as IMapPageView;
8887

8988
view?.AddMapIcon(Center, "Map_YourLocation".GetLocalized());

templates/Uwp/Pages/Map.CodeBehind/Views/MapPagePage.xaml.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ public async Task InitializeAsync()
7575
{
7676
// TODO WTS: Set your map service token. If you don't have one, request from https://www.bingmapsportal.com/
7777
// mapControl.MapServiceToken = string.Empty;
78-
7978
AddMapIcon(Center, "Map_YourLocation".GetLocalized());
8079
}
8180
}

templates/Uwp/Pages/Map.CodeBehindVB/Views/MapPagePage.xaml.vb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ Namespace Views
6969
If mapControl IsNot Nothing Then
7070
' TODO WTS: Set your map service token. If you don't have one, request from https://www.bingmapsportal.com/
7171
' mapControl.MapServiceToken = String.Empty
72-
7372
AddMapIcon(Center, "Map_YourLocation".GetLocalized())
7473
End If
7574
End Function

templates/Uwp/Pages/Map/ViewModels/MapPageViewModel.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ public async Task InitializeAsync(MapControl map)
7474
{
7575
// TODO WTS: Set your map service token. If you don't have one, request from https://www.bingmapsportal.com/
7676
// map.MapServiceToken = string.Empty;
77-
7877
AddMapIcon(map, Center, "Map_YourLocation".GetLocalized());
7978
}
8079
}

templates/Uwp/Pages/MapVB/ViewModels/MapPageViewModel.vb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ Namespace ViewModels
6767
If map IsNot Nothing Then
6868
' TODO WTS: Set your map service token. If you don't have one, request from https://www.bingmapsportal.com/
6969
' map.MapServiceToken = String.Empty
70-
7170
AddMapIcon(map, Center, "Map_YourLocation".GetLocalized())
7271
End If
7372
End Function

0 commit comments

Comments
 (0)