├── .gitignore ├── AreaSelector ├── AreaSelector.sln ├── AreaSelector.v11.suo └── AreaSelector │ ├── App.xaml │ ├── App.xaml.cs │ ├── AreaSelector.csproj │ ├── AreaSelector.csproj.user │ ├── AreaSelectorPage.xaml │ ├── AreaSelectorPage.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── AreaSelector.dll │ │ ├── AreaSelector.pdb │ │ ├── AreaSelector_Debug_AnyCPU.xap │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── MDIL │ │ ├── AreaSelector.dll │ │ └── WMAppManifest.xml │ │ └── Properties │ │ └── WMAppManifest.xml │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── NumberInputBox.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ └── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx ├── CustomTileSource ├── CustomTileSource.sln └── CustomTileSource │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── CustomTileSource.csproj │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ └── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx ├── DraggableMarker ├── DraggableMarker.sln ├── DraggableMarker.v11.suo └── DraggableMarker │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── DraggableMarker.dll │ │ ├── DraggableMarker.pdb │ │ ├── DraggableMarker_Debug_AnyCPU.xap │ │ ├── MDIL │ │ ├── DraggableMarker.dll │ │ └── WMAppManifest.xml │ │ └── Properties │ │ └── WMAppManifest.xml │ ├── DraggableMarker.csproj │ ├── DraggableMarker.csproj.user │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ └── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx ├── DynamicPolyLine ├── DynamicPolyLine.sln ├── DynamicPolyLine.v11.suo └── DynamicPolyLine │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── DynamicPolyLine.dll │ │ ├── DynamicPolyLine.pdb │ │ ├── DynamicPolyLine_Debug_AnyCPU.xap │ │ ├── MDIL │ │ ├── DynamicPolyLine.dll │ │ └── WMAppManifest.xml │ │ └── Properties │ │ └── WMAppManifest.xml │ ├── DynamicPolyLine.csproj │ ├── DynamicPolyLine.csproj.user │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ └── SplashScreenImage.jpg ├── GeoCoding ├── GeoCoding.sln ├── GeoCoding.v11.suo └── GeoCoding │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── GeoCoding.dll │ │ ├── GeoCoding.pdb │ │ ├── GeoCoding_Debug_AnyCPU.xap │ │ ├── MDIL │ │ ├── GeoCoding.dll │ │ └── WMAppManifest.xml │ │ └── Properties │ │ └── WMAppManifest.xml │ ├── GeoCoding.csproj │ ├── GeoCoding.csproj.user │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ └── SplashScreenImage.jpg ├── GetMyGeoposition ├── GetMyGeoposition.sln ├── GetMyGeoposition.v11.suo └── GetMyGeoposition │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── GetMyGeoposition.dll │ │ ├── GetMyGeoposition.pdb │ │ ├── GetMyGeoposition_Debug_AnyCPU.xap │ │ ├── MDIL │ │ ├── GetMyGeoposition.dll │ │ └── WMAppManifest.xml │ │ └── Properties │ │ └── WMAppManifest.xml │ ├── GetMyGeoposition.csproj │ ├── GetMyGeoposition.csproj.user │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ └── obj │ └── Debug │ ├── App.g.cs │ ├── App.g.i.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── GetMyGeoposition.Resources.AppResources.resources │ ├── GetMyGeoposition.csproj.FileListAbsolute.txt │ ├── GetMyGeoposition.csproj.GenerateResource.Cache │ ├── GetMyGeoposition.dll │ ├── GetMyGeoposition.g.resources │ ├── GetMyGeoposition.pdb │ ├── MDIL │ ├── GetMyGeoposition.dll │ ├── MDILFileList.xml │ └── MDILXapCompileLog.txt │ ├── MDILCacheFile.xml │ ├── MainPage.g.cs │ ├── MainPage.g.i.cs │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── XapCacheFile.xml ├── HelloMap ├── HelloMap.sln ├── HelloMap.v11.suo └── HelloMap │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ ├── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── HelloMap.dll │ │ ├── HelloMap.pdb │ │ ├── HelloMap_Debug_AnyCPU.xap │ │ ├── MDIL │ │ │ ├── HelloMap.dll │ │ │ └── WMAppManifest.xml │ │ └── Properties │ │ │ └── WMAppManifest.xml │ └── Release │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── HelloMap.dll │ │ ├── HelloMap.pdb │ │ ├── HelloMap_Release_AnyCPU.xap │ │ └── Properties │ │ └── WMAppManifest.xml │ ├── HelloMap.csproj │ ├── HelloMap.csproj.user │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ └── SplashScreenImage.jpg ├── LaunchDirectionsTask ├── LaunchDirectionsTask.sln ├── LaunchDirectionsTask.v11.suo ├── LaunchDirectionsTask │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ ├── Bin │ │ └── Debug │ │ │ ├── AppManifest.xaml │ │ │ ├── Assets │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ │ ├── LaunchDirectionsTask.dll │ │ │ ├── LaunchDirectionsTask.pdb │ │ │ ├── LaunchDirectionsTask_Debug_AnyCPU.xap │ │ │ ├── MDIL │ │ │ ├── LaunchDirectionsTask.dll │ │ │ ├── Microsoft.Phone.Controls.Toolkit.dll │ │ │ ├── Microsoft.Phone.Controls.dll │ │ │ └── WMAppManifest.xml │ │ │ ├── Microsoft.Phone.Controls.Toolkit.dll │ │ │ ├── Microsoft.Phone.Controls.dll │ │ │ └── Properties │ │ │ └── WMAppManifest.xml │ ├── LaunchDirectionsTask.csproj │ ├── LaunchDirectionsTask.csproj.user │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── README_FIRST.txt │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ ├── Toolkit.Content │ │ ├── ApplicationBar.Cancel.png │ │ ├── ApplicationBar.Check.png │ │ ├── ApplicationBar.Delete.png │ │ └── ApplicationBar.Select.png │ └── packages.config └── packages │ ├── WPtoolkit.4.2012.10.30 │ ├── WPtoolkit.4.2012.10.30.nupkg │ ├── content │ │ ├── README_FIRST.txt │ │ └── Toolkit.Content │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ └── lib │ │ ├── sl3-wp │ │ └── Microsoft.Phone.Controls.Toolkit.dll │ │ ├── sl4-windowsphone71 │ │ └── Microsoft.Phone.Controls.Toolkit.dll │ │ └── wp8 │ │ └── Microsoft.Phone.Controls.Toolkit.dll │ └── repositories.config ├── LaunchMapSearchTask ├── LaunchMapSearchTask.sln ├── LaunchMapSearchTask.v11.suo ├── LaunchMapSearchTask │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ ├── Bin │ │ └── Debug │ │ │ ├── AppManifest.xaml │ │ │ ├── Assets │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ │ ├── LaunchMapSearchTask.dll │ │ │ ├── LaunchMapSearchTask.pdb │ │ │ ├── LaunchMapSearchTask_Debug_AnyCPU.xap │ │ │ ├── MDIL │ │ │ ├── LaunchMapSearchTask.dll │ │ │ ├── Microsoft.Phone.Controls.Toolkit.dll │ │ │ ├── Microsoft.Phone.Controls.dll │ │ │ └── WMAppManifest.xml │ │ │ ├── Microsoft.Phone.Controls.Toolkit.dll │ │ │ ├── Microsoft.Phone.Controls.dll │ │ │ └── Properties │ │ │ └── WMAppManifest.xml │ ├── LaunchMapSearchTask.csproj │ ├── LaunchMapSearchTask.csproj.user │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── README_FIRST.txt │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ ├── Toolkit.Content │ │ ├── ApplicationBar.Cancel.png │ │ ├── ApplicationBar.Check.png │ │ ├── ApplicationBar.Delete.png │ │ └── ApplicationBar.Select.png │ └── packages.config └── packages │ ├── WPtoolkit.4.2012.10.30 │ ├── WPtoolkit.4.2012.10.30.nupkg │ ├── content │ │ ├── README_FIRST.txt │ │ └── Toolkit.Content │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ └── lib │ │ ├── sl3-wp │ │ └── Microsoft.Phone.Controls.Toolkit.dll │ │ ├── sl4-windowsphone71 │ │ └── Microsoft.Phone.Controls.Toolkit.dll │ │ └── wp8 │ │ └── Microsoft.Phone.Controls.Toolkit.dll │ └── repositories.config ├── LaunchMapTask ├── LaunchMapTask.sln ├── LaunchMapTask.v11.suo └── LaunchMapTask │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── LaunchMapTask.dll │ │ ├── LaunchMapTask.pdb │ │ ├── LaunchMapTask_Debug_AnyCPU.xap │ │ ├── MDIL │ │ ├── LaunchMapTask.dll │ │ └── WMAppManifest.xml │ │ └── Properties │ │ └── WMAppManifest.xml │ ├── LaunchMapTask.csproj │ ├── LaunchMapTask.csproj.user │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ └── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx ├── Licence.txt ├── LocationSelector ├── LocationSelector.sln ├── LocationSelector.v11.suo ├── LocationSelector │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ ├── Bin │ │ └── Debug │ │ │ ├── AppManifest.xaml │ │ │ ├── Assets │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ │ ├── LocationSelector.dll │ │ │ ├── LocationSelector.pdb │ │ │ ├── LocationSelector_Debug_AnyCPU.xap │ │ │ ├── MDIL │ │ │ ├── LocationSelector.dll │ │ │ ├── Microsoft.Phone.Controls.Toolkit.dll │ │ │ ├── Microsoft.Phone.Controls.dll │ │ │ └── WMAppManifest.xml │ │ │ ├── Microsoft.Phone.Controls.Toolkit.dll │ │ │ ├── Microsoft.Phone.Controls.dll │ │ │ └── Properties │ │ │ └── WMAppManifest.xml │ ├── LocalizedStrings.cs │ ├── LocationSelector.csproj │ ├── LocationSelector.csproj.user │ ├── LocationSelectorPage.xaml │ ├── LocationSelectorPage.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── NumberInputBox.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── README_FIRST.txt │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ ├── Toolkit.Content │ │ ├── ApplicationBar.Cancel.png │ │ ├── ApplicationBar.Check.png │ │ ├── ApplicationBar.Delete.png │ │ └── ApplicationBar.Select.png │ └── packages.config └── packages │ ├── WPtoolkit.4.2012.10.30 │ ├── WPtoolkit.4.2012.10.30.nupkg │ ├── content │ │ ├── README_FIRST.txt │ │ └── Toolkit.Content │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ └── lib │ │ ├── sl3-wp │ │ └── Microsoft.Phone.Controls.Toolkit.dll │ │ ├── sl4-windowsphone71 │ │ └── Microsoft.Phone.Controls.Toolkit.dll │ │ └── wp8 │ │ └── Microsoft.Phone.Controls.Toolkit.dll │ └── repositories.config ├── MapEvents ├── MapEvents.sln ├── MapEvents.v11.suo └── MapEvents │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── AppBar │ │ └── add.png │ ├── ApplicationIcon.png │ ├── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── add.png │ └── minus.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ ├── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── add.png │ │ └── minus.png │ │ ├── MDIL │ │ ├── MapEvents.dll │ │ └── WMAppManifest.xml │ │ ├── MapEvents.dll │ │ ├── MapEvents.pdb │ │ ├── MapEvents_Debug_AnyCPU.xap │ │ └── Properties │ │ └── WMAppManifest.xml │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MapEvents.csproj │ ├── MapEvents.csproj.user │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ └── SplashScreenImage.jpg ├── MapInteraction ├── MapInteraction.sln └── MapInteraction │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── MDIL │ │ ├── MapInteraction.dll │ │ ├── Microsoft.Expression.Controls.dll │ │ ├── Microsoft.Expression.Drawing.dll │ │ └── WMAppManifest.xml │ │ ├── MapInteraction.dll │ │ ├── MapInteraction.pdb │ │ ├── MapInteraction_Debug_AnyCPU.xap │ │ ├── Microsoft.Expression.Controls.dll │ │ ├── Microsoft.Expression.Drawing.dll │ │ └── Properties │ │ └── WMAppManifest.xml │ ├── GoToSelection.xaml │ ├── GoToSelection.xaml.cs │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MapInteraction.csproj │ ├── MapInteraction.csproj.user │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ └── SplashScreenImage.jpg ├── MapMarkers ├── MapMarkers.sln ├── MapMarkers.v11.suo └── MapMarkers │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── MDIL │ │ ├── MapMarkers.dll │ │ └── WMAppManifest.xml │ │ ├── MapMarkers.dll │ │ ├── MapMarkers.pdb │ │ ├── MapMarkers_Debug_AnyCPU.xap │ │ └── Properties │ │ └── WMAppManifest.xml │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MapMarkers.csproj │ ├── MapMarkers.csproj.user │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ └── SplashScreenImage.jpg ├── MapRouting ├── MapRouting.sln ├── MapRouting.v11.suo └── MapRouting │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── MDIL │ │ ├── MapRouting.dll │ │ └── WMAppManifest.xml │ │ ├── MapRouting.dll │ │ ├── MapRouting.pdb │ │ ├── MapRouting_Debug_AnyCPU.xap │ │ └── Properties │ │ └── WMAppManifest.xml │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MapRouting.csproj │ ├── MapRouting.csproj.user │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ └── SplashScreenImage.jpg ├── MoreMapContent ├── MoreMapContent.sln ├── MoreMapContent.v11.suo └── MoreMapContent │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── MDIL │ │ ├── MoreMapContent.dll │ │ └── WMAppManifest.xml │ │ ├── MoreMapContent.dll │ │ ├── MoreMapContent.pdb │ │ ├── MoreMapContent_Debug_AnyCPU.xap │ │ └── Properties │ │ └── WMAppManifest.xml │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MoreMapContent.csproj │ ├── MoreMapContent.csproj.user │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ └── SplashScreenImage.jpg ├── MyLocation ├── MyLocation.sln ├── MyLocation.v11.suo └── MyLocation │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── MDIL │ │ ├── MyLocation.dll │ │ └── WMAppManifest.xml │ │ ├── MyLocation.dll │ │ ├── MyLocation.pdb │ │ ├── MyLocation_Debug_AnyCPU.xap │ │ └── Properties │ │ └── WMAppManifest.xml │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MyLocation.csproj │ ├── MyLocation.csproj.user │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ └── SplashScreenImage.jpg ├── README.md ├── RevGeoCoding ├── RevGeoCoding.sln ├── RevGeoCoding.v11.suo └── RevGeoCoding │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── MDIL │ │ ├── RevGeoCoding.dll │ │ └── WMAppManifest.xml │ │ ├── Properties │ │ └── WMAppManifest.xml │ │ ├── RevGeoCoding.dll │ │ ├── RevGeoCoding.pdb │ │ └── RevGeoCoding_Debug_AnyCPU.xap │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ ├── RevGeoCoding.csproj │ ├── RevGeoCoding.csproj.user │ └── SplashScreenImage.jpg ├── RoutingAdvanced ├── RoutingAdvanced.sln ├── RoutingAdvanced.v11.suo ├── RoutingAdvanced │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ ├── Bin │ │ └── Debug │ │ │ ├── AppManifest.xaml │ │ │ ├── Assets │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ │ ├── MDIL │ │ │ ├── Microsoft.Phone.Controls.Toolkit.dll │ │ │ ├── Microsoft.Phone.Controls.dll │ │ │ ├── RoutingAdvanced.dll │ │ │ └── WMAppManifest.xml │ │ │ ├── Microsoft.Phone.Controls.Toolkit.dll │ │ │ ├── Microsoft.Phone.Controls.dll │ │ │ ├── Properties │ │ │ └── WMAppManifest.xml │ │ │ ├── RoutingAdvanced.dll │ │ │ ├── RoutingAdvanced.pdb │ │ │ └── RoutingAdvanced_Debug_AnyCPU.xap │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── README_FIRST.txt │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ ├── RoutingAdvanced.csproj │ ├── RoutingAdvanced.csproj.user │ ├── Toolkit.Content │ │ ├── ApplicationBar.Cancel.png │ │ ├── ApplicationBar.Check.png │ │ ├── ApplicationBar.Delete.png │ │ └── ApplicationBar.Select.png │ └── packages.config └── packages │ ├── WPtoolkit.4.2012.10.30 │ ├── WPtoolkit.4.2012.10.30.nupkg │ ├── content │ │ ├── README_FIRST.txt │ │ └── Toolkit.Content │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ └── lib │ │ ├── sl3-wp │ │ └── Microsoft.Phone.Controls.Toolkit.dll │ │ ├── sl4-windowsphone71 │ │ └── Microsoft.Phone.Controls.Toolkit.dll │ │ └── wp8 │ │ └── Microsoft.Phone.Controls.Toolkit.dll │ └── repositories.config ├── SaveMapImageEx ├── .gitignore ├── SaveMapImageEx.sln └── SaveMapImageEx │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── AppBar │ │ └── save.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ └── SaveMapImageEx.csproj ├── SimpleContent ├── SimpleContent.sln ├── SimpleContent.v11.suo └── SimpleContent │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── MDIL │ │ ├── SimpleContent.dll │ │ └── WMAppManifest.xml │ │ ├── Properties │ │ └── WMAppManifest.xml │ │ ├── SimpleContent.dll │ │ ├── SimpleContent.pdb │ │ └── SimpleContent_Debug_AnyCPU.xap │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ ├── SimpleContent.csproj │ ├── SimpleContent.csproj.user │ └── SplashScreenImage.jpg ├── TrackMeInBackground ├── TrackMeInBackground.sln ├── TrackMeInBackground.v11.suo └── TrackMeInBackground │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── MDIL │ │ ├── TrackMeInBackground.dll │ │ └── WMAppManifest.xml │ │ ├── Properties │ │ └── WMAppManifest.xml │ │ ├── TrackMeInBackground.dll │ │ ├── TrackMeInBackground.pdb │ │ └── TrackMeInBackground_Debug_AnyCPU.xap │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ ├── TrackMeInBackground.csproj │ ├── TrackMeInBackground.csproj.user │ └── obj │ └── Debug │ ├── App.g.cs │ ├── App.g.i.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── MDIL │ ├── MDILFileList.xml │ ├── MDILXapCompileLog.txt │ └── TrackMeInBackground.dll │ ├── MDILCacheFile.xml │ ├── MainPage.g.cs │ ├── MainPage.g.i.cs │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── TrackMeInBackground.Resources.AppResources.resources │ ├── TrackMeInBackground.csproj.FileListAbsolute.txt │ ├── TrackMeInBackground.csproj.GenerateResource.Cache │ ├── TrackMeInBackground.dll │ ├── TrackMeInBackground.g.resources │ ├── TrackMeInBackground.pdb │ └── XapCacheFile.xml ├── TrackMyPosition ├── TrackMyPosition.sln ├── TrackMyPosition.v11.suo └── TrackMyPosition │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── MDIL │ │ ├── TrackMyPosition.dll │ │ └── WMAppManifest.xml │ │ ├── Properties │ │ └── WMAppManifest.xml │ │ ├── TrackMyPosition.dll │ │ ├── TrackMyPosition.pdb │ │ └── TrackMyPosition_Debug_AnyCPU.xap │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ ├── TrackMyPosition.csproj │ ├── TrackMyPosition.csproj.user │ └── obj │ └── Debug │ ├── App.g.cs │ ├── App.g.i.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── MDIL │ ├── MDILFileList.xml │ ├── MDILXapCompileLog.txt │ └── TrackMyPosition.dll │ ├── MDILCacheFile.xml │ ├── MainPage.g.cs │ ├── MainPage.g.i.cs │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── TrackMyPosition.Resources.AppResources.resources │ ├── TrackMyPosition.csproj.FileListAbsolute.txt │ ├── TrackMyPosition.csproj.GenerateResource.Cache │ ├── TrackMyPosition.dll │ ├── TrackMyPosition.g.resources │ ├── TrackMyPosition.pdb │ └── XapCacheFile.xml ├── TrackMyPositionTwo ├── TrackMyPositionTwo.sln ├── TrackMyPositionTwo.v11.suo └── TrackMyPositionTwo │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Bin │ └── Debug │ │ ├── AppManifest.xaml │ │ ├── Assets │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── MDIL │ │ ├── TrackMyPositionTwo.dll │ │ └── WMAppManifest.xml │ │ ├── Properties │ │ └── WMAppManifest.xml │ │ ├── TrackMyPositionTwo.dll │ │ ├── TrackMyPositionTwo.pdb │ │ └── TrackMyPositionTwo_Debug_AnyCPU.xap │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ ├── TrackMyPositionTwo.csproj │ ├── TrackMyPositionTwo.csproj.user │ └── obj │ └── Debug │ ├── App.g.cs │ ├── App.g.i.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── MDIL │ ├── MDILFileList.xml │ ├── MDILXapCompileLog.txt │ └── TrackMyPositionTwo.dll │ ├── MDILCacheFile.xml │ ├── MainPage.g.cs │ ├── MainPage.g.i.cs │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── TrackMyPositionTwo.Resources.AppResources.resources │ ├── TrackMyPositionTwo.csproj.FileListAbsolute.txt │ ├── TrackMyPositionTwo.csproj.GenerateResource.Cache │ ├── TrackMyPositionTwo.dll │ ├── TrackMyPositionTwo.g.resources │ ├── TrackMyPositionTwo.pdb │ └── XapCacheFile.xml └── doc └── project_icon.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /AreaSelector/AreaSelector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector.sln -------------------------------------------------------------------------------- /AreaSelector/AreaSelector.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector.v11.suo -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/App.xaml -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/App.xaml.cs -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/AreaSelector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/AreaSelector.csproj -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/AreaSelector.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/AreaSelector.csproj.user -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/AreaSelectorPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/AreaSelectorPage.xaml -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/AreaSelectorPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/AreaSelectorPage.xaml.cs -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Bin/Debug/AreaSelector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Bin/Debug/AreaSelector.dll -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Bin/Debug/AreaSelector.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Bin/Debug/AreaSelector.pdb -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Bin/Debug/AreaSelector_Debug_AnyCPU.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Bin/Debug/AreaSelector_Debug_AnyCPU.xap -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Bin/Debug/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Bin/Debug/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Bin/Debug/MDIL/AreaSelector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Bin/Debug/MDIL/AreaSelector.dll -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Bin/Debug/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Bin/Debug/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/LocalizedStrings.cs -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/MainPage.xaml -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/MainPage.xaml.cs -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/NumberInputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/NumberInputBox.cs -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Properties/AppManifest.xml -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /AreaSelector/AreaSelector/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/AreaSelector/AreaSelector/Resources/AppResources.resx -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource.sln -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/App.xaml -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/App.xaml.cs -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/CustomTileSource.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/CustomTileSource.csproj -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/LocalizedStrings.cs -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/MainPage.xaml -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/MainPage.xaml.cs -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/Properties/AppManifest.xml -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /CustomTileSource/CustomTileSource/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/CustomTileSource/CustomTileSource/Resources/AppResources.resx -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker.sln -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker.v11.suo -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/App.xaml -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/App.xaml.cs -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Bin/Debug/DraggableMarker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Bin/Debug/DraggableMarker.dll -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Bin/Debug/DraggableMarker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Bin/Debug/DraggableMarker.pdb -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Bin/Debug/MDIL/DraggableMarker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Bin/Debug/MDIL/DraggableMarker.dll -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Bin/Debug/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Bin/Debug/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/DraggableMarker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/DraggableMarker.csproj -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/DraggableMarker.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/DraggableMarker.csproj.user -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/LocalizedStrings.cs -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/MainPage.xaml -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/MainPage.xaml.cs -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Properties/AppManifest.xml -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /DraggableMarker/DraggableMarker/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DraggableMarker/DraggableMarker/Resources/AppResources.resx -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine.sln -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine.v11.suo -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/App.xaml -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/App.xaml.cs -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Bin/Debug/DynamicPolyLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Bin/Debug/DynamicPolyLine.dll -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Bin/Debug/DynamicPolyLine.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Bin/Debug/DynamicPolyLine.pdb -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Bin/Debug/MDIL/DynamicPolyLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Bin/Debug/MDIL/DynamicPolyLine.dll -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Bin/Debug/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Bin/Debug/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/DynamicPolyLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/DynamicPolyLine.csproj -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/DynamicPolyLine.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/DynamicPolyLine.csproj.user -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/LocalizedStrings.cs -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/MainPage.xaml -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/MainPage.xaml.cs -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Properties/AppManifest.xml -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/Resources/AppResources.resx -------------------------------------------------------------------------------- /DynamicPolyLine/DynamicPolyLine/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/DynamicPolyLine/DynamicPolyLine/SplashScreenImage.jpg -------------------------------------------------------------------------------- /GeoCoding/GeoCoding.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding.sln -------------------------------------------------------------------------------- /GeoCoding/GeoCoding.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding.v11.suo -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/App.xaml -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/App.xaml.cs -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Bin/Debug/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Bin/Debug/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Bin/Debug/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Bin/Debug/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Bin/Debug/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Bin/Debug/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Bin/Debug/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Bin/Debug/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Bin/Debug/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Bin/Debug/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Bin/Debug/GeoCoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Bin/Debug/GeoCoding.dll -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Bin/Debug/GeoCoding.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Bin/Debug/GeoCoding.pdb -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Bin/Debug/GeoCoding_Debug_AnyCPU.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Bin/Debug/GeoCoding_Debug_AnyCPU.xap -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Bin/Debug/MDIL/GeoCoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Bin/Debug/MDIL/GeoCoding.dll -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Bin/Debug/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Bin/Debug/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/GeoCoding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/GeoCoding.csproj -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/GeoCoding.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/GeoCoding.csproj.user -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/LocalizedStrings.cs -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/MainPage.xaml -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/MainPage.xaml.cs -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Properties/AppManifest.xml -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/Resources/AppResources.resx -------------------------------------------------------------------------------- /GeoCoding/GeoCoding/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GeoCoding/GeoCoding/SplashScreenImage.jpg -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition.sln -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition.v11.suo -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/App.xaml -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/App.xaml.cs -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Bin/Debug/GetMyGeoposition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Bin/Debug/GetMyGeoposition.dll -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Bin/Debug/GetMyGeoposition.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Bin/Debug/GetMyGeoposition.pdb -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Bin/Debug/MDIL/GetMyGeoposition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Bin/Debug/MDIL/GetMyGeoposition.dll -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/GetMyGeoposition.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/GetMyGeoposition.csproj -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/GetMyGeoposition.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/GetMyGeoposition.csproj.user -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/LocalizedStrings.cs -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/MainPage.xaml -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/MainPage.xaml.cs -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Properties/AppManifest.xml -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/Resources/AppResources.resx -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/obj/Debug/GetMyGeoposition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/obj/Debug/GetMyGeoposition.dll -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/obj/Debug/GetMyGeoposition.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/obj/Debug/GetMyGeoposition.pdb -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/obj/Debug/MDIL/GetMyGeoposition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/obj/Debug/MDIL/GetMyGeoposition.dll -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/obj/Debug/MDIL/MDILFileList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/obj/Debug/MDIL/MDILFileList.xml -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/obj/Debug/MDIL/MDILXapCompileLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/obj/Debug/MDIL/MDILXapCompileLog.txt -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/obj/Debug/MDILCacheFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/obj/Debug/MDILCacheFile.xml -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/obj/Debug/MainPage.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/obj/Debug/MainPage.g.cs -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/obj/Debug/MainPage.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/obj/Debug/MainPage.g.i.cs -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GetMyGeoposition/GetMyGeoposition/obj/Debug/XapCacheFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/GetMyGeoposition/GetMyGeoposition/obj/Debug/XapCacheFile.xml -------------------------------------------------------------------------------- /HelloMap/HelloMap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap.sln -------------------------------------------------------------------------------- /HelloMap/HelloMap.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap.v11.suo -------------------------------------------------------------------------------- /HelloMap/HelloMap/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/App.xaml -------------------------------------------------------------------------------- /HelloMap/HelloMap/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/App.xaml.cs -------------------------------------------------------------------------------- /HelloMap/HelloMap/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Debug/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Debug/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Debug/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Debug/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Debug/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Debug/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Debug/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Debug/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Debug/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Debug/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Debug/HelloMap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Debug/HelloMap.dll -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Debug/HelloMap.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Debug/HelloMap.pdb -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Debug/HelloMap_Debug_AnyCPU.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Debug/HelloMap_Debug_AnyCPU.xap -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Debug/MDIL/HelloMap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Debug/MDIL/HelloMap.dll -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Debug/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Debug/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Release/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Release/AppManifest.xaml -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Release/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Release/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Release/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Release/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Release/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Release/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Release/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Release/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Release/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Release/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Release/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Release/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Release/HelloMap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Release/HelloMap.dll -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Release/HelloMap.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Release/HelloMap.pdb -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Release/HelloMap_Release_AnyCPU.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Release/HelloMap_Release_AnyCPU.xap -------------------------------------------------------------------------------- /HelloMap/HelloMap/Bin/Release/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Bin/Release/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /HelloMap/HelloMap/HelloMap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/HelloMap.csproj -------------------------------------------------------------------------------- /HelloMap/HelloMap/HelloMap.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/HelloMap.csproj.user -------------------------------------------------------------------------------- /HelloMap/HelloMap/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/LocalizedStrings.cs -------------------------------------------------------------------------------- /HelloMap/HelloMap/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/MainPage.xaml -------------------------------------------------------------------------------- /HelloMap/HelloMap/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/MainPage.xaml.cs -------------------------------------------------------------------------------- /HelloMap/HelloMap/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Properties/AppManifest.xml -------------------------------------------------------------------------------- /HelloMap/HelloMap/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HelloMap/HelloMap/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /HelloMap/HelloMap/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /HelloMap/HelloMap/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/Resources/AppResources.resx -------------------------------------------------------------------------------- /HelloMap/HelloMap/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/HelloMap/HelloMap/SplashScreenImage.jpg -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask.sln -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask.v11.suo -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask/App.xaml -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask/App.xaml.cs -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask/LaunchDirectionsTask.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask/LaunchDirectionsTask.csproj -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask/LocalizedStrings.cs -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask/MainPage.xaml -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask/MainPage.xaml.cs -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask/Properties/AppManifest.xml -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask/README_FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask/README_FIRST.txt -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask/Resources/AppResources.resx -------------------------------------------------------------------------------- /LaunchDirectionsTask/LaunchDirectionsTask/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/LaunchDirectionsTask/packages.config -------------------------------------------------------------------------------- /LaunchDirectionsTask/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchDirectionsTask/packages/repositories.config -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask.sln -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask.v11.suo -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask/App.xaml -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask/App.xaml.cs -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask/LaunchMapSearchTask.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask/LaunchMapSearchTask.csproj -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask/LocalizedStrings.cs -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask/MainPage.xaml -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask/MainPage.xaml.cs -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask/Properties/AppManifest.xml -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask/README_FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask/README_FIRST.txt -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask/Resources/AppResources.resx -------------------------------------------------------------------------------- /LaunchMapSearchTask/LaunchMapSearchTask/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/LaunchMapSearchTask/packages.config -------------------------------------------------------------------------------- /LaunchMapSearchTask/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapSearchTask/packages/repositories.config -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask.sln -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask.v11.suo -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/App.xaml -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/App.xaml.cs -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Bin/Debug/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Bin/Debug/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Bin/Debug/LaunchMapTask.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Bin/Debug/LaunchMapTask.dll -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Bin/Debug/LaunchMapTask.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Bin/Debug/LaunchMapTask.pdb -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Bin/Debug/LaunchMapTask_Debug_AnyCPU.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Bin/Debug/LaunchMapTask_Debug_AnyCPU.xap -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Bin/Debug/MDIL/LaunchMapTask.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Bin/Debug/MDIL/LaunchMapTask.dll -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Bin/Debug/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Bin/Debug/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/LaunchMapTask.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/LaunchMapTask.csproj -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/LaunchMapTask.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/LaunchMapTask.csproj.user -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/LocalizedStrings.cs -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/MainPage.xaml -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/MainPage.xaml.cs -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Properties/AppManifest.xml -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /LaunchMapTask/LaunchMapTask/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LaunchMapTask/LaunchMapTask/Resources/AppResources.resx -------------------------------------------------------------------------------- /Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/Licence.txt -------------------------------------------------------------------------------- /LocationSelector/LocationSelector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector.sln -------------------------------------------------------------------------------- /LocationSelector/LocationSelector.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector.v11.suo -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/App.xaml -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/App.xaml.cs -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Bin/Debug/LocationSelector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Bin/Debug/LocationSelector.dll -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Bin/Debug/LocationSelector.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Bin/Debug/LocationSelector.pdb -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Bin/Debug/MDIL/LocationSelector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Bin/Debug/MDIL/LocationSelector.dll -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/LocalizedStrings.cs -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/LocationSelector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/LocationSelector.csproj -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/LocationSelector.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/LocationSelector.csproj.user -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/LocationSelectorPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/LocationSelectorPage.xaml -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/LocationSelectorPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/LocationSelectorPage.xaml.cs -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/MainPage.xaml -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/MainPage.xaml.cs -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/NumberInputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/NumberInputBox.cs -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Properties/AppManifest.xml -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/README_FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/README_FIRST.txt -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/Resources/AppResources.resx -------------------------------------------------------------------------------- /LocationSelector/LocationSelector/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/LocationSelector/packages.config -------------------------------------------------------------------------------- /LocationSelector/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/LocationSelector/packages/repositories.config -------------------------------------------------------------------------------- /MapEvents/MapEvents.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents.sln -------------------------------------------------------------------------------- /MapEvents/MapEvents.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents.v11.suo -------------------------------------------------------------------------------- /MapEvents/MapEvents/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/App.xaml -------------------------------------------------------------------------------- /MapEvents/MapEvents/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/App.xaml.cs -------------------------------------------------------------------------------- /MapEvents/MapEvents/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Assets/AppBar/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Assets/AppBar/add.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Assets/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Assets/add.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Assets/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Assets/minus.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /MapEvents/MapEvents/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Bin/Debug/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Bin/Debug/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Bin/Debug/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Bin/Debug/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Bin/Debug/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Bin/Debug/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Bin/Debug/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Bin/Debug/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Bin/Debug/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Bin/Debug/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Bin/Debug/Assets/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Bin/Debug/Assets/add.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Bin/Debug/Assets/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Bin/Debug/Assets/minus.png -------------------------------------------------------------------------------- /MapEvents/MapEvents/Bin/Debug/MDIL/MapEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Bin/Debug/MDIL/MapEvents.dll -------------------------------------------------------------------------------- /MapEvents/MapEvents/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /MapEvents/MapEvents/Bin/Debug/MapEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Bin/Debug/MapEvents.dll -------------------------------------------------------------------------------- /MapEvents/MapEvents/Bin/Debug/MapEvents.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Bin/Debug/MapEvents.pdb -------------------------------------------------------------------------------- /MapEvents/MapEvents/Bin/Debug/MapEvents_Debug_AnyCPU.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Bin/Debug/MapEvents_Debug_AnyCPU.xap -------------------------------------------------------------------------------- /MapEvents/MapEvents/Bin/Debug/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Bin/Debug/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /MapEvents/MapEvents/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/LocalizedStrings.cs -------------------------------------------------------------------------------- /MapEvents/MapEvents/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/MainPage.xaml -------------------------------------------------------------------------------- /MapEvents/MapEvents/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/MainPage.xaml.cs -------------------------------------------------------------------------------- /MapEvents/MapEvents/MapEvents.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/MapEvents.csproj -------------------------------------------------------------------------------- /MapEvents/MapEvents/MapEvents.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/MapEvents.csproj.user -------------------------------------------------------------------------------- /MapEvents/MapEvents/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Properties/AppManifest.xml -------------------------------------------------------------------------------- /MapEvents/MapEvents/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MapEvents/MapEvents/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /MapEvents/MapEvents/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /MapEvents/MapEvents/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/Resources/AppResources.resx -------------------------------------------------------------------------------- /MapEvents/MapEvents/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapEvents/MapEvents/SplashScreenImage.jpg -------------------------------------------------------------------------------- /MapInteraction/MapInteraction.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction.sln -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/App.xaml -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/App.xaml.cs -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Bin/Debug/MDIL/MapInteraction.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Bin/Debug/MDIL/MapInteraction.dll -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Bin/Debug/MapInteraction.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Bin/Debug/MapInteraction.dll -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Bin/Debug/MapInteraction.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Bin/Debug/MapInteraction.pdb -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Bin/Debug/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Bin/Debug/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/GoToSelection.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/GoToSelection.xaml -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/GoToSelection.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/GoToSelection.xaml.cs -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/LocalizedStrings.cs -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/MainPage.xaml -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/MainPage.xaml.cs -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/MapInteraction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/MapInteraction.csproj -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/MapInteraction.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/MapInteraction.csproj.user -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Properties/AppManifest.xml -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/Resources/AppResources.resx -------------------------------------------------------------------------------- /MapInteraction/MapInteraction/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapInteraction/MapInteraction/SplashScreenImage.jpg -------------------------------------------------------------------------------- /MapMarkers/MapMarkers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers.sln -------------------------------------------------------------------------------- /MapMarkers/MapMarkers.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers.v11.suo -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/App.xaml -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/App.xaml.cs -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Bin/Debug/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Bin/Debug/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Bin/Debug/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Bin/Debug/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Bin/Debug/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Bin/Debug/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Bin/Debug/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Bin/Debug/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Bin/Debug/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Bin/Debug/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Bin/Debug/MDIL/MapMarkers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Bin/Debug/MDIL/MapMarkers.dll -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Bin/Debug/MapMarkers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Bin/Debug/MapMarkers.dll -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Bin/Debug/MapMarkers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Bin/Debug/MapMarkers.pdb -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Bin/Debug/MapMarkers_Debug_AnyCPU.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Bin/Debug/MapMarkers_Debug_AnyCPU.xap -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Bin/Debug/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Bin/Debug/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/LocalizedStrings.cs -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/MainPage.xaml -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/MainPage.xaml.cs -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/MapMarkers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/MapMarkers.csproj -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/MapMarkers.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/MapMarkers.csproj.user -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Properties/AppManifest.xml -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/Resources/AppResources.resx -------------------------------------------------------------------------------- /MapMarkers/MapMarkers/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapMarkers/MapMarkers/SplashScreenImage.jpg -------------------------------------------------------------------------------- /MapRouting/MapRouting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting.sln -------------------------------------------------------------------------------- /MapRouting/MapRouting.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting.v11.suo -------------------------------------------------------------------------------- /MapRouting/MapRouting/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/App.xaml -------------------------------------------------------------------------------- /MapRouting/MapRouting/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/App.xaml.cs -------------------------------------------------------------------------------- /MapRouting/MapRouting/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /MapRouting/MapRouting/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /MapRouting/MapRouting/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /MapRouting/MapRouting/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /MapRouting/MapRouting/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /MapRouting/MapRouting/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /MapRouting/MapRouting/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /MapRouting/MapRouting/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /MapRouting/MapRouting/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /MapRouting/MapRouting/Bin/Debug/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Bin/Debug/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /MapRouting/MapRouting/Bin/Debug/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Bin/Debug/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /MapRouting/MapRouting/Bin/Debug/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Bin/Debug/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /MapRouting/MapRouting/Bin/Debug/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Bin/Debug/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /MapRouting/MapRouting/Bin/Debug/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Bin/Debug/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /MapRouting/MapRouting/Bin/Debug/MDIL/MapRouting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Bin/Debug/MDIL/MapRouting.dll -------------------------------------------------------------------------------- /MapRouting/MapRouting/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /MapRouting/MapRouting/Bin/Debug/MapRouting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Bin/Debug/MapRouting.dll -------------------------------------------------------------------------------- /MapRouting/MapRouting/Bin/Debug/MapRouting.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Bin/Debug/MapRouting.pdb -------------------------------------------------------------------------------- /MapRouting/MapRouting/Bin/Debug/MapRouting_Debug_AnyCPU.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Bin/Debug/MapRouting_Debug_AnyCPU.xap -------------------------------------------------------------------------------- /MapRouting/MapRouting/Bin/Debug/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Bin/Debug/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /MapRouting/MapRouting/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/LocalizedStrings.cs -------------------------------------------------------------------------------- /MapRouting/MapRouting/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/MainPage.xaml -------------------------------------------------------------------------------- /MapRouting/MapRouting/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/MainPage.xaml.cs -------------------------------------------------------------------------------- /MapRouting/MapRouting/MapRouting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/MapRouting.csproj -------------------------------------------------------------------------------- /MapRouting/MapRouting/MapRouting.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/MapRouting.csproj.user -------------------------------------------------------------------------------- /MapRouting/MapRouting/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Properties/AppManifest.xml -------------------------------------------------------------------------------- /MapRouting/MapRouting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MapRouting/MapRouting/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /MapRouting/MapRouting/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /MapRouting/MapRouting/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/Resources/AppResources.resx -------------------------------------------------------------------------------- /MapRouting/MapRouting/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MapRouting/MapRouting/SplashScreenImage.jpg -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent.sln -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent.v11.suo -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/App.xaml -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/App.xaml.cs -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Bin/Debug/MDIL/MoreMapContent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Bin/Debug/MDIL/MoreMapContent.dll -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Bin/Debug/MoreMapContent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Bin/Debug/MoreMapContent.dll -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Bin/Debug/MoreMapContent.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Bin/Debug/MoreMapContent.pdb -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Bin/Debug/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Bin/Debug/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/LocalizedStrings.cs -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/MainPage.xaml -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/MainPage.xaml.cs -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/MoreMapContent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/MoreMapContent.csproj -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/MoreMapContent.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/MoreMapContent.csproj.user -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Properties/AppManifest.xml -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/Resources/AppResources.resx -------------------------------------------------------------------------------- /MoreMapContent/MoreMapContent/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MoreMapContent/MoreMapContent/SplashScreenImage.jpg -------------------------------------------------------------------------------- /MyLocation/MyLocation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation.sln -------------------------------------------------------------------------------- /MyLocation/MyLocation.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation.v11.suo -------------------------------------------------------------------------------- /MyLocation/MyLocation/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/App.xaml -------------------------------------------------------------------------------- /MyLocation/MyLocation/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/App.xaml.cs -------------------------------------------------------------------------------- /MyLocation/MyLocation/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /MyLocation/MyLocation/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /MyLocation/MyLocation/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /MyLocation/MyLocation/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /MyLocation/MyLocation/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /MyLocation/MyLocation/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /MyLocation/MyLocation/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /MyLocation/MyLocation/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /MyLocation/MyLocation/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /MyLocation/MyLocation/Bin/Debug/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Bin/Debug/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /MyLocation/MyLocation/Bin/Debug/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Bin/Debug/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /MyLocation/MyLocation/Bin/Debug/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Bin/Debug/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /MyLocation/MyLocation/Bin/Debug/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Bin/Debug/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /MyLocation/MyLocation/Bin/Debug/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Bin/Debug/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /MyLocation/MyLocation/Bin/Debug/MDIL/MyLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Bin/Debug/MDIL/MyLocation.dll -------------------------------------------------------------------------------- /MyLocation/MyLocation/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /MyLocation/MyLocation/Bin/Debug/MyLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Bin/Debug/MyLocation.dll -------------------------------------------------------------------------------- /MyLocation/MyLocation/Bin/Debug/MyLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Bin/Debug/MyLocation.pdb -------------------------------------------------------------------------------- /MyLocation/MyLocation/Bin/Debug/MyLocation_Debug_AnyCPU.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Bin/Debug/MyLocation_Debug_AnyCPU.xap -------------------------------------------------------------------------------- /MyLocation/MyLocation/Bin/Debug/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Bin/Debug/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /MyLocation/MyLocation/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/LocalizedStrings.cs -------------------------------------------------------------------------------- /MyLocation/MyLocation/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/MainPage.xaml -------------------------------------------------------------------------------- /MyLocation/MyLocation/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/MainPage.xaml.cs -------------------------------------------------------------------------------- /MyLocation/MyLocation/MyLocation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/MyLocation.csproj -------------------------------------------------------------------------------- /MyLocation/MyLocation/MyLocation.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/MyLocation.csproj.user -------------------------------------------------------------------------------- /MyLocation/MyLocation/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Properties/AppManifest.xml -------------------------------------------------------------------------------- /MyLocation/MyLocation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MyLocation/MyLocation/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /MyLocation/MyLocation/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /MyLocation/MyLocation/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/Resources/AppResources.resx -------------------------------------------------------------------------------- /MyLocation/MyLocation/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/MyLocation/MyLocation/SplashScreenImage.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/README.md -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding.sln -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding.v11.suo -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/App.xaml -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/App.xaml.cs -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Bin/Debug/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Bin/Debug/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Bin/Debug/MDIL/RevGeoCoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Bin/Debug/MDIL/RevGeoCoding.dll -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Bin/Debug/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Bin/Debug/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Bin/Debug/RevGeoCoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Bin/Debug/RevGeoCoding.dll -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Bin/Debug/RevGeoCoding.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Bin/Debug/RevGeoCoding.pdb -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Bin/Debug/RevGeoCoding_Debug_AnyCPU.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Bin/Debug/RevGeoCoding_Debug_AnyCPU.xap -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/LocalizedStrings.cs -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/MainPage.xaml -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/MainPage.xaml.cs -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Properties/AppManifest.xml -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/Resources/AppResources.resx -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/RevGeoCoding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/RevGeoCoding.csproj -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/RevGeoCoding.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/RevGeoCoding.csproj.user -------------------------------------------------------------------------------- /RevGeoCoding/RevGeoCoding/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RevGeoCoding/RevGeoCoding/SplashScreenImage.jpg -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced.sln -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced.v11.suo -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/App.xaml -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/App.xaml.cs -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Bin/Debug/MDIL/RoutingAdvanced.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Bin/Debug/MDIL/RoutingAdvanced.dll -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Bin/Debug/Microsoft.Phone.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Bin/Debug/Microsoft.Phone.Controls.dll -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Bin/Debug/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Bin/Debug/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Bin/Debug/RoutingAdvanced.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Bin/Debug/RoutingAdvanced.dll -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Bin/Debug/RoutingAdvanced.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Bin/Debug/RoutingAdvanced.pdb -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/LocalizedStrings.cs -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/MainPage.xaml -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/MainPage.xaml.cs -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Properties/AppManifest.xml -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/README_FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/README_FIRST.txt -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/Resources/AppResources.resx -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/RoutingAdvanced.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/RoutingAdvanced.csproj -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/RoutingAdvanced.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/RoutingAdvanced.csproj.user -------------------------------------------------------------------------------- /RoutingAdvanced/RoutingAdvanced/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/RoutingAdvanced/packages.config -------------------------------------------------------------------------------- /RoutingAdvanced/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/RoutingAdvanced/packages/repositories.config -------------------------------------------------------------------------------- /SaveMapImageEx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/.gitignore -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx.sln -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/App.xaml -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/App.xaml.cs -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/Assets/AppBar/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/Assets/AppBar/save.png -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/LocalizedStrings.cs -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/MainPage.xaml -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/MainPage.xaml.cs -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/Properties/AppManifest.xml -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/Resources/AppResources.resx -------------------------------------------------------------------------------- /SaveMapImageEx/SaveMapImageEx/SaveMapImageEx.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SaveMapImageEx/SaveMapImageEx/SaveMapImageEx.csproj -------------------------------------------------------------------------------- /SimpleContent/SimpleContent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent.sln -------------------------------------------------------------------------------- /SimpleContent/SimpleContent.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent.v11.suo -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/App.xaml -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/App.xaml.cs -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Bin/Debug/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Bin/Debug/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Bin/Debug/MDIL/SimpleContent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Bin/Debug/MDIL/SimpleContent.dll -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Bin/Debug/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Bin/Debug/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Bin/Debug/SimpleContent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Bin/Debug/SimpleContent.dll -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Bin/Debug/SimpleContent.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Bin/Debug/SimpleContent.pdb -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Bin/Debug/SimpleContent_Debug_AnyCPU.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Bin/Debug/SimpleContent_Debug_AnyCPU.xap -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/LocalizedStrings.cs -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/MainPage.xaml -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/MainPage.xaml.cs -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Properties/AppManifest.xml -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/Resources/AppResources.resx -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/SimpleContent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/SimpleContent.csproj -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/SimpleContent.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/SimpleContent.csproj.user -------------------------------------------------------------------------------- /SimpleContent/SimpleContent/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/SimpleContent/SimpleContent/SplashScreenImage.jpg -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground.sln -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground.v11.suo -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/App.xaml -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/App.xaml.cs -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/LocalizedStrings.cs -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/MainPage.xaml -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/MainPage.xaml.cs -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/Properties/AppManifest.xml -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/Resources/AppResources.resx -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/TrackMeInBackground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/TrackMeInBackground.csproj -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/obj/Debug/MDILCacheFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/obj/Debug/MDILCacheFile.xml -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/obj/Debug/MainPage.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/obj/Debug/MainPage.g.cs -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/obj/Debug/MainPage.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/obj/Debug/MainPage.g.i.cs -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TrackMeInBackground/TrackMeInBackground/obj/Debug/XapCacheFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMeInBackground/TrackMeInBackground/obj/Debug/XapCacheFile.xml -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition.sln -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition.v11.suo -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/App.xaml -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/App.xaml.cs -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Bin/Debug/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Bin/Debug/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Bin/Debug/MDIL/TrackMyPosition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Bin/Debug/MDIL/TrackMyPosition.dll -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Bin/Debug/MDIL/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Bin/Debug/MDIL/WMAppManifest.xml -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Bin/Debug/TrackMyPosition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Bin/Debug/TrackMyPosition.dll -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Bin/Debug/TrackMyPosition.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Bin/Debug/TrackMyPosition.pdb -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/LocalizedStrings.cs -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/MainPage.xaml -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/MainPage.xaml.cs -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Properties/AppManifest.xml -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/Resources/AppResources.resx -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/TrackMyPosition.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/TrackMyPosition.csproj -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/TrackMyPosition.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/TrackMyPosition.csproj.user -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/obj/Debug/MDIL/MDILFileList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/obj/Debug/MDIL/MDILFileList.xml -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/obj/Debug/MDIL/TrackMyPosition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/obj/Debug/MDIL/TrackMyPosition.dll -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/obj/Debug/MDILCacheFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/obj/Debug/MDILCacheFile.xml -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/obj/Debug/MainPage.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/obj/Debug/MainPage.g.cs -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/obj/Debug/MainPage.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/obj/Debug/MainPage.g.i.cs -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/obj/Debug/TrackMyPosition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/obj/Debug/TrackMyPosition.dll -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/obj/Debug/TrackMyPosition.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/obj/Debug/TrackMyPosition.pdb -------------------------------------------------------------------------------- /TrackMyPosition/TrackMyPosition/obj/Debug/XapCacheFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPosition/TrackMyPosition/obj/Debug/XapCacheFile.xml -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo.sln -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo.v11.suo -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/App.xaml -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/App.xaml.cs -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/LocalizedStrings.cs -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/MainPage.xaml -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/MainPage.xaml.cs -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/Properties/AppManifest.xml -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/Resources/AppResources.resx -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/TrackMyPositionTwo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/TrackMyPositionTwo.csproj -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/obj/Debug/MDILCacheFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/obj/Debug/MDILCacheFile.xml -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/obj/Debug/MainPage.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/obj/Debug/MainPage.g.cs -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/obj/Debug/MainPage.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/obj/Debug/MainPage.g.i.cs -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TrackMyPositionTwo/TrackMyPositionTwo/obj/Debug/XapCacheFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/TrackMyPositionTwo/TrackMyPositionTwo/obj/Debug/XapCacheFile.xml -------------------------------------------------------------------------------- /doc/project_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/maps-samples/HEAD/doc/project_icon.png --------------------------------------------------------------------------------