summaryrefslogtreecommitdiff
path: root/httemplate/elements/coord-links.html
blob: 907e5f04a0e15fdd2114dbb0b7fd430c03555722 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<& /elements/init_overlib.html &>

<& /elements/popup_link.html,
     'action'      => $p. 'view/map.html?'. $query,
     'label'       => mt('map'),
     'actionlabel' => $name,
     'width'       => 763,
     'height'      => 575,
     #'color'
&>

<A HREF="<%$p%>view/kml.cgi?<% $query %>"><% mt('earth') |h %></A>

<%init>

my ($latitude, $longitude, $name) = @_;

my $query = 'name='. uri_escape($name).
            ';lat='. $latitude.
            ';lon='. $longitude;

</%init>