Hi everyone,
I am trying to build a Kivy app using MapView to display, well, a map. Loading of the map and everything else works, but every time after some panning and zooming, the app crashed with the error: Exception: SDL2: Unable to load image.
I suspected some error in my code, so I tried the example code from the developers:
from kivy_garden.mapview import MapView
from kivy.app import App
class MapViewApp(App):
def build(self):
mapview = MapView(zoom=11, lat=50.6394, lon=3.057)
return mapview
MapViewApp().run()
This also keeps crashing with the same error :/
Very greatful for any help with this!