Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
if (isset($exif['GPSVersion']))
if (!empty($exif['EXIF_lat']))
<td><strong>GPS</strong></td>
<td>'.MakeMapURL($exif_data).'</td>
function MakeMapURL($exif)
{
if (!empty($exif['EXIF_lat']))
{
return "<a href=\"http://maps.google.com/maps?q=".$exif['EXIF_lat_ref'].$exif['EXIF_lat'].",+".$exif['EXIF_long_ref' ].$exif['EXIF_long']."&spn=0.0,0.0&t=h&hl=en\" target=\"_blank\">View location in Google Maps</a>";
}
}
$exif_map_link = MakeMapURL($exif_data);
$table_data = '<div id="exif_table">';
$table_data .= '
<table id="exif_data_visible">
<tr>
<td><strong>GPS</strong></td>
<td>'.$exif_map_link.'</td>>
$exif_map_link = MakeMapURL($row);
return '<a href="http://maps.google.com/maps?q='.$exif['EXIF_lat_ref'].$exif['EXIF_lat'].',+'.$exif['EXIF_long_ref'].$exif['EXIF_long'].'&spn=0.0,0.0&t=h&hl=en" target="_blank">View location in Google Maps</a>';
1 to 19 of 19