Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
ea661f6
Update changes
henry-w3w Mar 24, 2025
2ae663e
Update 'selectsquare()' behavior
henry-w3w Mar 24, 2025
fdcdeb3
Update size of pins
henry-w3w Mar 26, 2025
a22f6d2
update mapState to viewModel.input
henry-w3w Apr 14, 2025
03ba64f
fix listening events on selected square
henry-w3w Apr 16, 2025
185becb
change pin type, remove swift wrapper dependency, fix losing square
henry-w3w May 5, 2025
accbd80
add new seting and fix grid line thickness and also the square line t…
henry-w3w May 6, 2025
db3a57d
remove all markers before adding the new ones
henry-w3w May 7, 2025
a9a131c
remove changethicknessifneeded() from Drawer
henry-w3w May 7, 2025
5e90459
fix remove old markers when receiving a new list
henry-w3w May 7, 2025
84bb612
Update color of square and change color of grid line
henry-w3w May 8, 2025
655e81f
Update camera state after selecting the square
henry-w3w May 8, 2025
b568a2d
Update package info
henry-w3w May 13, 2025
3070093
changed dependancies to staging for dev
dave-w3w May 20, 2025
c2a8813
MT-7776 Fix missing square markers in overlay when zoom in
aunguyen-w3w Jun 27, 2025
4a1f699
Reformat the code with standard indentation value
aunguyen-w3w Jun 27, 2025
b3a2381
Using space indentation instead of tab
aunguyen-w3w Jun 27, 2025
1bfd7f4
Merge pull request #1 from what3words/bug/MT-7776-Missing-square-mark…
aunguyen-w3w Jun 27, 2025
743fbb9
MT-fix crash in ocr open map flow (#2)
aunguyen-w3w Jul 22, 2025
008e494
update packages
Nov 4, 2025
080993f
Update package version
khaidow3w Nov 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1600"
version = "1.7">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES"
buildArchitectures = "Automatic">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "W3WSwiftComponentsMapApple"
BuildableName = "W3WSwiftComponentsMapApple"
BlueprintName = "W3WSwiftComponentsMapApple"
ReferencedContainer = "container:">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"
shouldAutocreateTestPlan = "YES">
<Testables>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "w3w-swift-components-map-appleTests"
BuildableName = "w3w-swift-components-map-appleTests"
BlueprintName = "w3w-swift-components-map-appleTests"
ReferencedContainer = "container:">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "W3WSwiftComponentsMapApple"
BuildableName = "W3WSwiftComponentsMapApple"
BlueprintName = "W3WSwiftComponentsMapApple"
ReferencedContainer = "container:">
</BuildableReference>
</MacroExpansion>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
27 changes: 18 additions & 9 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let package = Package(
dependencies: [
.package(url: "https://github.com/what3words/w3w-swift-themes.git", "1.0.0"..<"2.0.0"),
.package(url: "https://github.com/what3words/w3w-swift-design.git", "1.0.0"..<"2.0.0"),
.package(url: "[email protected]:what3words/w3w-swift-components-map.git", branch: "main"),
.package(url: "[email protected]:what3words/w3w-swift-components-map.git", "1.0.0"..<"2.0.0"),
.package(url: "https://github.com/what3words/w3w-swift-core.git", "1.0.0"..<"2.0.0")
],

Expand All @@ -28,7 +28,7 @@ let package = Package(
.product(name: "W3WSwiftCore", package: "w3w-swift-core"),
.product(name: "W3WSwiftDesign", package: "w3w-swift-design"),
.product(name: "W3WSwiftComponentsMap", package: "w3w-swift-components-map"),
.product(name: "W3WSwiftThemes", package: "w3w-swift-themes")
.product(name: "W3WSwiftThemes", package: "w3w-swift-themes"),
]
),

Expand Down
Loading