Quote:
Originally Posted by djjeffa
|
Frappr now allows you to place the map (and photos) on your site. I took their code "widgets" and created a frappr_map_text template and surrounded it with the standard page template HTML and now it shows our frappr map within a custom page on our site. Here is the thread on how to do your own custom page:
https://vborg.vbsupport.ru/showthread.php?t=62164
Here is my sample frappr_map_text Template
HTML Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle]</title>
$headinclude
</head>
<body>
$header
$navbar
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%">
<tr>
<td align="center">
<script>
var frappr_mapheight = 720;
var frappr_mapwidth = 720;
var frappr_maplat = 40.98;
var frappr_maplon = -98.14;
var frappr_mapzoom = 13;
var frappr_host = "http://www.frappr.com/";var gid = YOUR_GROUPMAP_ID_GOES_HERE;</script>
<script src="http://www.frappr.com/ajax/mapwidget.js"></script>
</td>
</tr>
<tr>
<td align="center">
<script>
var frappr_photo_length = 770;
var frappr_photo_orientation = "wide";
var frappr_host = "http://www.frappr.com/";var gid = YOUR_GROUPMAP_ID_GOES_HERE;</script>
<script src="http://www.frappr.com/ajax/widgets.js"></script>
</td>
</tr>
</table>
$footer
</body>