2006-10-20 Benny Malengier <bm@cage.UGent.be>

* src/DataViews/_PlaceView.py: Fix lattitude/longitude typo.
	* src/glade/gramps.glade: Swap the order of latt/long in UI.



svn: r7420
This commit is contained in:
Alex Roitman
2006-10-21 03:56:13 +00:00
parent cf1cfce7be
commit fb8dae4515
3 changed files with 11 additions and 7 deletions

View File

@@ -143,7 +143,7 @@ class PlaceView(PageView.ListView):
latitude = place.get_latitude()
if longitude and latitude:
path = "http://maps.google.com/?sll=%s,%s" % (longitude, latitude)
path = "http://maps.google.com/?sll=%s,%s&z=15" % (latitude,longitude)
else:
path = "http://maps.google.com/maps?q=%s" % '+'.join(descr.split())
GrampsDisplay.url(path)