File: Map.py

package info (click to toggle)
wxpython4.0 4.2.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 232,540 kB
  • sloc: cpp: 958,937; python: 233,059; ansic: 150,441; makefile: 51,662; sh: 8,687; perl: 1,563; javascript: 584; php: 326; xml: 200
file content (77 lines) | stat: -rw-r--r-- 1,965 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python


TestFileName = "data/TestMap.png"


import wx

from wx.lib.floatcanvas import NavCanvas, FloatCanvas

#import sys
#sys.path.append("..")
#from floatcanvas import NavCanvas, FloatCanvas


class DrawFrame(wx.Frame):

    """
    A frame used for the FloatCanvas Demo

    """

    def __init__(self, *args, **kwargs):
        wx.Frame.__init__(self, *args, **kwargs)

        self.CreateStatusBar()

        # Add the Canvas
        NC = NavCanvas.NavCanvas(self,-1,
                                 size = (500,500),
                                 ProjectionFun = None,
                                 Debug = 0,
                                 BackgroundColor = "White",
                                 )
        self.Canvas = NC.Canvas

        self.LoadMap(TestFileName)

        self.Canvas.Bind(FloatCanvas.EVT_MOTION, self.OnMove )

        self.Show()
        self.Canvas.ZoomToBB()

    def LoadMap(self, filename):
        Image = wx.Image(filename)
        self.Canvas.AddScaledBitmap(Image, (0,0), Height = Image.GetSize()[1], Position = "tl")

        self.Canvas.AddPoint((0,0), Diameter=3)
        self.Canvas.AddText("(0,0)", (0,0), Position="cl")
        p = (Image.GetSize()[0],-Image.GetSize()[1])
        self.Canvas.AddPoint(p, Diameter=3)
        self.Canvas.AddText("(%i,%i)"%p, p, Position="cl")

        self.Canvas.MinScale = 0.15
        self.Canvas.MaxScale = 1.0

    def Binding(self, event):
        print("Writing a png file:")
        self.Canvas.SaveAsImage("junk.png")
        print("Writing a jpeg file:")
        self.Canvas.SaveAsImage("junk.jpg",wx.BITMAP_TYPE_JPEG)

    def OnMove(self, event):
        """
        Updates the status bar with the world coordinates

        And moves a point if there is one selected

        """
        self.SetStatusText("%.2f, %.2f"%tuple(event.Coords))


app = wx.App(False)
F = DrawFrame(None, title="FloatCanvas Demo App", size=(700,700) )
app.MainLoop()