Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_sdk_framework
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Dimitris Togias
2022-09-14 18:33:51 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
609e07c9361b811784c26dd6d53ff79edd30cfcf
609e07c9
1 parent
60ec4ffa
check API and assignment of data
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
SwiftWarplyFramework/SwiftWarplyFramework/MapsViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/MapsViewController.swift
View file @
609e07c
...
...
@@ -40,7 +40,7 @@ class MapsViewController: UIViewController, MKMapViewDelegate {
self
.
infoTopConstraint
.
constant
=
0
setBackButton
(
"ic_close"
)
//setNavigationTitle(ccms?._titleOffer ?? "
")
setNavigationTitle
(
"Καταστήματα
"
)
mapView
.
delegate
=
self
mapView
.
centerToLocation
(
initialLocation
)
...
...
@@ -144,12 +144,12 @@ class MapsViewController: UIViewController, MKMapViewDelegate {
private
func
loadPinDetailsView
(
_
annotation
:
MerchantAnnotation
)
{
self
.
selectedMerchant
=
annotation
.
model
self
.
titleView
.
text
=
"INTERSPORT"
self
.
titleView
.
text
=
self
.
selectedMerchant
?
.
_admin_name
self
.
nameImageView
.
image
=
UIImage
(
named
:
"intersport"
)
self
.
nameView
.
text
=
"Intersport Χαλάνδρι"
self
.
nameView
.
text
=
self
.
selectedMerchant
?
.
_name
self
.
hoursView
.
text
=
"Δευτέρα - Τετάρτη"
self
.
phoneView
.
text
=
"210-6230453"
self
.
addressView
.
text
=
"ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΕΩΝ 4 41"
self
.
phoneView
.
text
=
self
.
selectedMerchant
?
.
_telephone
self
.
addressView
.
text
=
self
.
selectedMerchant
?
.
_address
}
private
func
showPinDetailsView
()
{
...
...
Please
register
or
login
to post a comment