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

Last change on this file since 12700 was 12700, checked in by rvelices, 12 years ago

rv_gmaps towards full maps api v3 migration

  • Property svn:eol-style set to LF
File size: 1.8 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        <br/> -->
17
18        <li>
19         <label>
20                Automatically sync from exif
21                <input type="checkbox" name="gmaps_auto_sync" {if $GMAPS_AUTO_SYNC}checked="checked"{/if} />
22                </label>
23                <br/><small>When metadata is synchronized, tour manual set coordinates might be overriden.</small>
24        </li>
25        <br/>
26
27  <li>
28  <label>
29    Maximum number of markers to show:
30    <input type="text" size="3" name="nb_markers" value="{$NB_MARKERS}" />
31  </label>
32    <br/><small>The images will be "clustered" based on this number and the visible region on the map.</small>
33  </li>
34
35  <br/>
36
37  <li>
38  <label>
39    Maximum number of images per marker:
40    <input type="text" size="3" name="nb_images_per_marker" value="{$NB_IMAGES_PER_MARKER}" />
41  </label>
42    <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>
43  </li>
44
45  <br/>
46
47  <li>
48  <label>
49    Marker image:
50    <select name="marker_icon">
51      <option value="">Default</option>
52      {html_options options=$marker_icons selected=$selected_marker_icon}
53    </select>
54  </label>
55  </li>
56
57  </ul>
58
59  <p>
60    <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit"/>
61  </p>
62</fieldset>
63</form>
Note: See TracBrowser for help on using the repository browser.