TomSchimansky / TomSchimansky/TkinterMapView
The app has no map, the app is empty!
Open
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 743
- Forks
- 110
- PR merge metrics
- No merged PRs in 30d
Description
The app has no map showing, does anyone know how to fix it?
The code:
import tkinter
import tkintermapview
root_tk = tkinter.Tk()
root_tk.geometry(f"{800}x{800}")
root_tk.title("map_view_example.py")
map_widget = tkintermapview.TkinterMapView(root_tk, width=800, height=600, corner_radius=0)
map_widget.place(relx=0.5, rely=0.5, anchor=tkinter.CENTER)
map_widget.set_position(48.860381, 2.338594) # Paris, France
map_widget.set_zoom(15)
map_widget.fit_bounding_box((50, 50), (50, 50))
root_tk.mainloop()
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by running the supplied tkinter and TkinterMapView example exactly as shown, including the position, zoom, and fit_bounding_box calls. Inspect the widget's map-rendering behavior and determine why the window remains empty; done means the example displays the expected map at the configured location.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- desktop
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 35/100