- Implemented OpenStreetMap using WebView with Leaflet.js - Added OpenStreetMapView component with interactive map functionality - Created heat map visualization with color-coded intensity - Added 30 dummy location points around San Francisco Bay Area - Implemented location tracking with real-time pin placement - Added comprehensive UI with two-row button layout - Features: Start/Stop tracking, Center map, Demo heat map, Clear demo, Reset map - Added location count display and confirmation dialogs - Updated project structure and documentation - All functionality tested and working on Android emulator
15 lines
449 B
XML
15 lines
449 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Shell
|
|
x:Class="LocationTrackerApp.AppShell"
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:local="clr-namespace:LocationTrackerApp"
|
|
Title="LocationTrackerApp">
|
|
|
|
<ShellContent
|
|
Title="Location Tracker"
|
|
ContentTemplate="{DataTemplate local:MainPage}"
|
|
Route="MainPage" />
|
|
|
|
</Shell>
|