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 map. I would like it in python if possible without a kv file. I would imagine the outcome like this: Map I will be glad for any help because I am quite stuck.
I just tried this:
class Circle(MapMarkerPopup):
def __init__(self, **kwargs):
super(Circle, self).__init__(**kwargs)
with self.canvas:
Color(0, 0, 0, .6)
Line(circle=(self.x, self.y, 10), width=200)
You can imitate the
MapMarker
by creating a custom class, perhaps namedMapCircle
:Then load this
kv
:which describes how the circle is drawn. Then, you just use this as you would a
MapMarker
: