Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

City names on shape #11

Open
Mert7126 opened this issue Mar 24, 2024 · 0 comments
Open

City names on shape #11

Mert7126 opened this issue Mar 24, 2024 · 0 comments

Comments

@Mert7126
Copy link

Hello grandsir, thank you for your project. There's something I want to ask. I ask you to help if possible.

I want to write the name of that city on each city, but from pathData in the code ;

x = (pathData.boundingBox?.origin.x ?? 0)
y = (pathData.boundingBox?.origin.y ?? 0)

I get the coordinates this way, it doesn't show them right in the middle of the city, how can I do this?

InteractiveMap(svgName: "tr") { pathData in
InteractiveShape(pathData)
.initWithAttributes()
.overlay(content: {

                        ZStack(alignment: .center) {
                            
                            Text("\(pathData.id)")
                                .font(.system(size: 10))
                            
                        }
                        .position(x: pathData.boundingBox?.origin.x ?? 0, y: pathData.boundingBox?.origin.y ?? 0)
                   
                    })
                
                    .shadow(color: clickedPath == pathData ? Color("app_white") : .clear, radius: 2)

                    }
                    .scaleEffect(clickedPath == pathData ? 1.02 : 1)
                    .animation(.easeInOut(duration: 0.2), value: clickedPath)
                    .zIndex(clickedPath == pathData ? 2 : 1)
                
            }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant