- 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
761 B
XML
15 lines
761 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest package="maui-application-id-placeholder" version="0.0.0" api-version="9" xmlns="http://tizen.org/ns/packages">
|
|
<profile name="common" />
|
|
<ui-application appid="maui-application-id-placeholder" exec="LocationTrackerApp.dll" multiple="false" nodisplay="false" taskmanage="true" type="dotnet" launch_mode="single">
|
|
<label>maui-application-title-placeholder</label>
|
|
<icon>maui-appicon-placeholder</icon>
|
|
<metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" />
|
|
</ui-application>
|
|
<shortcut-list />
|
|
<privileges>
|
|
<privilege>http://tizen.org/privilege/internet</privilege>
|
|
</privileges>
|
|
<dependencies />
|
|
<provides-appdefined-privileges />
|
|
</manifest> |