From 802130d3b6a6f8ca5c70be7d50494786c40b5108 Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Tue, 21 Jan 2025 18:03:32 -0700 Subject: [PATCH] fix the marker storage & clearing logic, and add the second profile map when used --- src/libs/partnerServer.ts | 2 ++ src/views/DIDView.vue | 2 +- src/views/DiscoverView.vue | 61 +++++++++++++++-------------------- src/views/UserProfileView.vue | 41 ++++++++++++++++++++--- 4 files changed, 66 insertions(+), 40 deletions(-) diff --git a/src/libs/partnerServer.ts b/src/libs/partnerServer.ts index eef02b2..1b63e49 100644 --- a/src/libs/partnerServer.ts +++ b/src/libs/partnerServer.ts @@ -2,6 +2,8 @@ export interface UserProfile { description: string; locLat?: number; locLon?: number; + locLat2?: number; + locLon2?: number; issuerDid: string; rowId?: string; // set on profile retrieved from server } diff --git a/src/views/DIDView.vue b/src/views/DIDView.vue index c5b664c..b0290c0 100644 --- a/src/views/DIDView.vue +++ b/src/views/DIDView.vue @@ -6,7 +6,7 @@
-

+

+ Individual Profile +

+
- +

Location

@@ -50,6 +60,29 @@
+ + +
+

Second Location

+
+ + + + {{ + didInfo(profile.issuerDid, activeDid, allMyDids, allContacts) + }} + + +
+