So I need to create an interactive game map for other players. They could add some markers on it locally.
I imported the image of the map and saw a stackoverflow subject with someone having the same problem. I got the solution but it’s zooming at the center of the picture.
It’s a very large picture so i need to make the zoom possible on the cursor of the mouse.
Here’s the code I’ve already made :
JavaScript
x
54
54
1
from kivy.app import App
2
from kivy.uix.boxlayout import BoxLayout
3
from kivy.uix.scatterlayout import ScatterLayout
4
from kivy.uix.scatter import Scatter
5
from kivy.core.window import Window
6
from kivy.graphics.transformation import Matrix
7
from kivy.lang import Builder
8
9
Builder.load_file('map.kv')
10
11
class Zoom(ScatterLayout):
12
13
def on_touch_down(self, touch):
14
x, y = touch.x, touch.y
15
self.prev_x = touch.x
16
self.prev_y = touch.y
17
18
if touch.is_mouse_scrolling:
19
if touch.button == 'scrolldown':
20
print('down')
21
## zoom in
22
if self.scale < 10:
23
self.scale = self.scale * 1.1
24
25
elif touch.button == 'scrollup':
26
print('up') ## zoom out
27
if self.scale > 1:
28
self.scale = self.scale * 0.9
29
30
# if the touch isn't on the widget we do nothing
31
if not self.do_collide_after_children:
32
if not self.collide_point(x, y):
33
return False
34
35
if 'multitouch_sim' in touch.profile:
36
touch.multitouch_sim = True
37
# grab the touch so we get all it later move events for sure
38
self._bring_to_front(touch)
39
touch.grab(self)
40
self._touches.append(touch)
41
self._last_touch_pos[touch] = touch.pos
42
43
return True
44
45
46
class Main_app(BoxLayout):
47
pass
48
49
50
class Stacked(App):
51
def build(self):
52
Window.clearcolor = (1, 1, 1, 1)
53
Window.size = (1000, 700)
54
Advertisement
Answer
Seems like that should be an option for Scatter
and ScatterPlane
, but it isn’t. Here is a hack I have used to accomplish what you asked about:
JavaScript
1
12
12
1
class MyScatterPlane(ScatterPlane):
2
def on_touch_up(self, touch):
3
if self.collide_point(*touch.pos):
4
if touch.is_mouse_scrolling:
5
if touch.button == 'scrolldown':
6
mat = Matrix().scale(.9, .9, .9)
7
self.apply_transform(mat, anchor=touch.pos)
8
elif touch.button == 'scrollup':
9
mat = Matrix().scale(1.1, 1.1, 1.1)
10
self.apply_transform(mat, anchor=touch.pos)
11
return super().on_touch_up(touch)
12
This is an extension of ScatterPlane
, but it is not extensively tested. Use at your own risk.