added minimap to startpage

This commit is contained in:
flopp
2013-05-13 21:33:19 +02:00
parent d6241a4f1b
commit 2e95c6226e
2 changed files with 13 additions and 1 deletions
+2
View File
@@ -103,6 +103,8 @@ class getNew
`caches`.`name` `name`,
`caches`.`date_created` `date_created`,
`caches`.`type`,
`caches`.`longitude` `longitude`,
`caches`.`latitude` `latitude`,
IFNULL(`sys_trans_text`.`text`,`cache_location`.`adm1`) AS `adm1`,
`cache_location`.`adm2`,
`cache_location`.`adm3`,
+11 -1
View File
@@ -3,6 +3,8 @@
*
* Unicode Reminder メモ
***************************************************************************}
<div style="overflow: hidden;">
<div style="float: left; width: 535px">
<ul class="nodot">
{foreach name=newcaches from=$newcaches item=cacheitem}
<li class="newcache_list_multi" style="margin-bottom: 8px;">
@@ -20,4 +22,12 @@
</strong>
</li>
{/foreach}
</ul>
</ul>
</div>
<div style="margin-left: 535px; margin-top: 11px; width: 220px; text-align: right">
<a href="map2.php">
<img src="http://maps.googleapis.com/maps/api/staticmap?sensor=false&size=220x220&maptype=roadmap&markers=color:blue|size:small{foreach name=newcaches from=$newcaches item=cacheitem}|{$cacheitem.latitude},{$cacheitem.longitude}{/foreach}"><br />
{t}Large map{/t}
</a>
</div>
</div>