* src/PedView.py: More work on it.

* src/MapView.py: New View showing locations on a map. Early unfinished version.
* src/gramps_main.py: Enable MapView
* src/land_shallow_topo_2048.jpg:
* src/land_shallow_topo_350.jpg: Two new map images downloaded from NASA so the are assumed to be public domain.


svn: r5050
This commit is contained in:
Martin Hawlisch
2005-08-11 14:57:19 +00:00
parent b39a328f9a
commit 0a245a7f2d
6 changed files with 501 additions and 51 deletions

View File

@ -24,6 +24,7 @@ import gtk
import ViewManager
import PersonView
import PedView
import MapView
import ArgHandler
import DisplayTrace
import GrampsKeys
@ -190,6 +191,7 @@ class Gramps:
a = ViewManager.ViewManager(state)
a.register_view(PersonView.PersonView)
a.register_view(PedView.PedView)
a.register_view(MapView.MapView)
a.init_interface()
if GrampsKeys.get_usetips():