--- /dev/null
+<?php
+/**
+ * Name: Google Maps
+ * Description: Use Google Maps for displaying locations. After activation the post location just beneath your avatar in your posts will link to Google Maps.
+ * Version: 0.1
+ * Author: Michael Vogel <https://pirati.ca/profile/heluecht>
+ *
+ */
+
+require_once('include/cache.php');
+
+
+function googlemaps_install() {
+ register_hook('render_location', 'addon/googlemaps/googlemaps.php', 'googlemaps_location');
+
+ logger("installed googlemaps");
+}
+
+function googlemaps_uninstall() {
+ unregister_hook('render_location', 'addon/googlemaps/googlemaps.php', 'googlemaps_location');
+
+ logger("removed googlemaps");
+}
+
+function googlemaps_location($a, &$item) {
+
+ if(! (strlen($item['location']) || strlen($item['coord'])))
+ return;
+
+ if ($item['coord'] != "")
+ $target = "http://maps.google.com/?q=".urlencode($item['coord']);
+ else
+ $target = "http://maps.google.com/?q=".urlencode($item['location']);
+
+ if ($item['location'] != "")
+ $title = $item['location'];
+ else
+ $title = $item['coord'];
+
+ $item['html'] = '<a target="map" title="'.$title.'" href= "'.$target.'">'.$title.'</a>';
+}
/*
* Get the configuration variables from the config.
- * @todo Separate the tile map server from the text-string to map tile server
+ * @todo Separate the tile map server from the text-string to map tile server
* since they apparently use different URL conventions.
* We use OSM's current convention of "#map=zoom/lat/lon" and optional
* ?mlat=lat&mlon=lon for markers.
if(! $marker)
$marker = 0;
- $location = '';
- $coord = '';
-
- $location = $item['location'];
-
- $location = (($location && (! $item['coord'])) ? '<a target="map" title="' . $item['location'] . '" href="'.$nomserver . '?q=' . urlencode($item['location']) . '">' . $item['location'] . '</a>' : $location);
-
- if($item['coord']) {
+ if ($item['coord'] != "") {
$coords = explode(' ', $item['coord']);
if(count($coords) > 1) {
$lat = urlencode(round($coords[0], 5));
$lon = urlencode(round($coords[1], 5));
- $coord = '<a target="map" class="OSMMapLink" title="' . $item['coord'] . '" href="'. $tmsserver;
+ $target = $tmsserver;
if($marker > 0)
- $coord .= '?mlat=' . $lat . '&mlon=' . $lon;
- $coord .= '#map=' . intval($zoom) . '/' . $lat . '/' . $lon .'">Map</a>';
+ $target .= '?mlat='.$lat.'&mlon='.$lon;
+ $target .= '#map='.intval($zoom).'/'.$lat.'/'.$lon;
}
}
- if(strlen($coord)) {
- if($location)
- $location .= ' <span class="smalltext">(' . $coord . ')</span>';
- else
- $location = '<span class="smalltext">' . $coord . '</span>';
- }
- $item['html'] = $location;
+
+ if ($target == "")
+ $target = $nomserver.'?q='.urlencode($item['location']);
+
+ if ($item['location'] != "")
+ $title = $item['location'];
+ else
+ $title = $item['coord'];
+
+ $item['html'] = '<a target="map" title="'.$title.'" href= "'.$target.'">'.$title.'</a>';
}
$x = z_fetch_url($nomserver . $args);
if($x['success']) {
$j = json_decode($x['body'],true);
-
+
if($j && is_array($j) && $j[0]['lat'] && $j[0]['lon']) {
$arr = array('lat' => $j[0]['lat'],'lon' => $j[0]['lon'],'location' => $b['location'], 'html' => '');
openstreetmap_generate_map($a,$arr);
$b['html'] = $arr['html'];
}
}
-
-
}
function openstreetmap_generate_map(&$a,&$b) {