Integration and add heat map demo
- 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
This commit is contained in:
14
LocationTrackerApp/AppShell.xaml.cs
Normal file
14
LocationTrackerApp/AppShell.xaml.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using LocationTrackerApp.Views;
|
||||
|
||||
namespace LocationTrackerApp;
|
||||
|
||||
public partial class AppShell : Shell
|
||||
{
|
||||
public AppShell()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
// Register routes
|
||||
Routing.RegisterRoute(nameof(MainPage), typeof(MainPage));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user