join("exif_coordinates", "items.id", "exif_coordinates.item_id") ->where("items.parent_id", "=", $album_id) ->viewable() ->order_by("exif_coordinates.latitude", "ASC") ->find_all(); // Make a new page. $template = new Theme_View("page.html", "other", "TagsMap"); $template->page_title = t("Gallery :: Map"); $template->content = new View("exif_gps_map.html"); // Load in module preferences. $template->content->items = $items; $template->content->google_map_key = module::get_var("exif_gps", "googlemap_api_key"); // Display the page. print $template; } }