- 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
16 lines
657 B
Plaintext
16 lines
657 B
Plaintext
Any raw assets you want to be deployed with your application can be placed in
|
|
this directory (and child directories). Deployment of the asset to your application
|
|
is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
|
|
|
|
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
|
|
|
|
These files will be deployed with your package and will be accessible using Essentials:
|
|
|
|
async Task LoadMauiAsset()
|
|
{
|
|
using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
|
|
using var reader = new StreamReader(stream);
|
|
|
|
var contents = reader.ReadToEnd();
|
|
}
|