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

Last change on this file since 23083 was 23083, checked in by rvelices, 11 years ago

rv_gmaps:

  • admin can choose default map type (roadmap, satellite, ...)
  • auto center and zoom when viewing map for the entire gallery
  • fix kml namespace
  • attempt to fix uage with https on the photo page (need test)
  • Property svn:eol-style set to LF
File size: 1.9 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 style:
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  <li>
58  <label>
59    Default map type:
60    <select name="map_type">
61      {html_options options=$map_types selected=$MAP_TYPE}
62    </select>
63  </label>
64  </li>
65
66  </ul>
67
68  <p>
69    <input type="submit" value="{'Submit'|@translate}" name="submit">
70  </p>
71</fieldset>
72</form>
Note: See TracBrowser for help on using the repository browser.