source: extensions/rv_gmaps/trunk/admin/admin_config.tpl @ 8683

Last change on this file since 8683 was 8471, checked in by rvelices, 13 years ago

rv_gmaps remove advisor stuff

  • Property svn:eol-style set to LF
File size: 1.5 KB
Line 
1
2You have {$NB_GEOTAGGED} geotagged images.
3
4<form method="post" action="" class="properties">
5<fieldset>
6  <legend>Map configuration</legend>
7  <ul>
8 
9  <li>
10  <label>
11    Google Maps API Key:
12    <input type="text" size="48" name="gmaps_api_key" value="{$GMAPS_API_KEY}" />
13  </label>
14    <br/>Signup for the key here: <a href="http://www.google.com/apis/maps/signup.html" target="_blank">http://www.google.com/apis/maps/signup.html</a>.
15  </li>
16 
17  <br/>
18 
19  <li>
20  <label>
21    Maximum number of markers to show:
22    <input type="text" size="3" name="nb_markers" value="{$NB_MARKERS}" />
23  </label>
24    <br/><small>The images will be "clustered" based on this number and the visible region on the map.</small>
25  </li>
26 
27  <br/>
28 
29  <li>
30  <label>
31    Maximum number of images per marker:
32    <input type="text" size="3" name="nb_images_per_marker" value="{$NB_IMAGES_PER_MARKER}" />
33  </label>
34    <br/><small>When a marker is clicked, the user will be able to navigate images in the info window. This data is sent to the browser once for all the markers. If you have many images, reduce this number in order to reduce traffic and speed up data decoding on the browser side.</small>
35  </li>
36
37  <br/>
38
39  <li>
40  <label>
41    Marker image:
42    <select name="marker_icon">
43      <option value="">Default</option>
44      {html_options options=$marker_icons selected=$selected_marker_icon}
45    </select>
46  </label>
47  </li>
48
49  </ul>
50
51  <p>
52    <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit"/>
53  </p>
54</fieldset>
55</form>
Note: See TracBrowser for help on using the repository browser.