Skip to main content

All Questions

Tagged with
0 votes
1 answer
33 views

Red bubbles inside a MapView in kivymd

I'm making an application that uses a map, but when I zoom in or zoom out, orange bubbles appear on the map that I don't know how to disable. Also, when I switch to another window, the dots remain. ...
Batman Dorado's user avatar
0 votes
0 answers
25 views

I'm stuck with kivy's mapmarkerpopup function, can anyone help me?

At the moment I'm having problems displaying a marker to insert on the map although the code from IDE does not give errors of any kind, it displays the map but not the marker. This is the python code: ...
Mario Rossi's user avatar
-1 votes
1 answer
111 views

How to add circle to the mapview in python kivy

i am trying to add circle to mapview. To a certain position on the map. I'm trying to make the radius in map canvas units. and I want it to be attached to that place even when I move or zoom with the ...
w247397y's user avatar
0 votes
0 answers
14 views

Click on MapMarker and get widget back

def addMarker(self,lat:float,lon:float,source:str = "default"): if source == "default": marker = MapMarker(lat=lat, lon=lon) else: marker = ...
The GoodGameCrafter's user avatar
0 votes
1 answer
82 views

How can I replace the standard marker with canvas circles on MapView in Kivy?

I want to replace the standard marker of the MapMarkerPopup with a transparent pixel image. Instead I want to draw circles which are shown on the coordinates loaded from a CSV file (in this example ...
jan h's user avatar
  • 5
0 votes
1 answer
204 views

Placing a mapmarker by klick results in setting the marker on acorner of the map-window

I want to set markers on the map by clicking on it. When I click a marker is set. However, the marker is placed on the left lower corner of the map. What am I doing wrong? from kivymd.app import MDApp ...
jan h's user avatar
  • 5
0 votes
1 answer
104 views

MapView zoom causes the map to be obscured

I have a problem with the python mapview library: kivy_garden.mapview: if I insert the zoom in the variable map = MapView(zoom=7) the map is completely obscured by a blue color as below you can see ...
ocidref11's user avatar
0 votes
0 answers
85 views

Can you change the MapSource in Mapview to just an image?

My map should only be a .png image that repeats across the globe. I am using the Mapview flower from kivy.garden, it seems that only a url can be used as the mapsource, tho just a plain image.png ...
Amrit's user avatar
  • 1
-1 votes
2 answers
1k views

kivy_garden.mapview module issues with buildozer (2022)

I get a problem while launching my app on android. It crashes while trying to open it on android. My app uses kivy and kivymd as a GUI. It also uses kivy_garden.mapview to display a map. It works ...
Iji's user avatar
  • 31
0 votes
1 answer
2k views

AttributeError: ‘super’ object has no attribute ‘__getattr__’ [Troubleshooting: Kivy]

I am creating an android application using kivy.garden.mapviev, I want the user to be able to move the marker (hero icon) with buttons. when I add an int value to the value dumped from string to float,...
Damian R.'s user avatar