]> dev.renevier.net Git - syj.git/blobdiff - application/views/scripts/idx/index.phtml
routes profile
[syj.git] / application / views / scripts / idx / index.phtml
index fedff0aa2a92380ef606277f5ac7d65681d9c81c..f5b7b6771b37a5ee82079259065a6a9b49ceab44 100644 (file)
-    <noscript>
-        <style type="text/css">
-            #map, #message, #data_controls, #login_controls, #user_area, #login_area, #newpwd_area {
-                display: none;
-            }
-        </style>
-
-        <p><?php echo $this->translate('SYJ needs javascript. Please activate scripts in your browser.');?></p>
-    </noscript>
-
-    <div id="map"></div>
-
-    <div id="message" class="message info">
-    <?php if (!$this->path and !$this->loggedUser) {?>
-    <?php echo $this->translate('Welcome on Syj.')?>
-    <br/>
-    <?php echo $this->translate('To create a journey, just click on the map to add points to your route. You can zoom and move map with controls upper left.')?>
-    <br/>
-    <?php echo $this->translate('When you have finished a path, press "save", button.')?>
-    <?php }?>
+<noscript>
+    <style type="text/css">
+        #map, #message, #data_controls, #login_controls, #user_area, #login_area, #newpwd_area {
+            display: none;
+        }
+    </style>
+
+    <p><?php echo $this->translate('SYJ needs javascript. Please activate scripts in your browser.');?></p>
+</noscript>
+
+<div id="map"></div>
+<div id="map-overlay"></div>
+
+<?php
+$message = "";
+$msgclass = "";
+if ($this->errorMsg) {
+    $message .= $this->errorMsg;
+    $msgclass = "error";
+} else if (!$this->path and !$this->loggedUser) {
+    $message .= $this->translate('To create a journey, press <strong>"start a route"</strong> button, then click on the map to add points. To delete a point, hold shift pressed while clicking on it.');
+    $message .= "<br>";
+    $message .= $this->translate('You can zoom and move the map with the controls in the top left corner.');
+    $message .= "<br>";
+    $message .= $this->translate('When you have finished a path, press "create", button.');
+    $msgclass = "info optional";
+}
+?>
+
+<div id="message" class="message <?php echo $msgclass?>">
+    <?php echo $message ?>
+</div>
+
+
+<div id="path-length" class="menu-group">
+    <div id="path-length-title" class="info-title"><?php echo $this->translate('route length')?></div>
+    <div id="path-length-content">
+    </div>
+</div>
+
+<div id="menu">
+
+    <?php echo $this->localeSwitcher(); ?>
+
+    <div id="login_controls" class="menu-group">
+        <div>
+            <div class="menu-item">
+            <?php
+                echo $this->anchor('login', $this->translate('login'), array('id' => 'login_control_anchor'));
+                $anchortext = sprintf("<span id=\"account-create-anchor\">%s</span><span id=\"account-info\"><br>%s</span>",
+                                      $this->translate('create an account'),
+                                      $this->translate('Whith an account, you can manage and modify your routes'));
+                ?>
+               </div>
+               <div class="menu-item">
+               <?php
+                echo $this->anchor('', $anchortext, array('id' => 'user_control_anchor'), false);
+            ?>
+            </div>
+        </div>
+        <div>
+            <?php echo $this->logoutLink(); ?>
+        </div>
     </div>
 
+    <?php if (isset($this->path)) { ?>
+        <div id="path-infos" class="menu-group">
+            <div class="menu-item">
+                <div id="path-infos-toggler"><a href="" id="path-infos-anchor"><?php echo $this->translate("route infos")?></a></div>
+             </div>
+                <div id="path-infos-content" class="menu-item">
+
+                    <div id="path-directlink-title" class="info-title"><?php echo $this->translate("direct link")?></div>
+                    <div id="path-directlink-content" class="info-content"><?php
+                            $urlcomp = urlencode($this->path->urlcomp ?: $this->path->id);
+                            $href = $this->baseUrl() . '/idx/' . $urlcomp . '?format=raw';
+                            printf('<a href="%s" title="%s">%s</a>',
+                                        $href,
+                                        $this->translate('direct link'),
+                                        $this->escape($href));
+                        ?></div>
+
+                    <div id="path-export-title" class="info-title"><?php echo $this->translate("export")?></div>
+                    <div id="path-export-content" class="info-content"><?php
+                       $fileName = $this->path->title ?: $this->path->id;
+                       $href = $this->baseUrl() . '/geom/' . rawurlencode($fileName) . '.kml';
+                       printf('<a href="%s" title="%s">%s</a>',
+                                        $href,
+                                        $this->translate('kml export'),
+                                        $this->translate('kml export'));
+
+                        print '<br>';
+                       $href = $this->baseUrl() . '/geom/' . rawurlencode($fileName) . '.gpx';
+                       printf('<a href="%s" title="%s">%s</a>',
+                                        $href,
+                                        $this->translate('gpx export'),
+                                        $this->translate('gpx export'));
+                       ?>
+                </div>
+
+                <?php if ($this->profileActive) { ?>
+                <div id="path-profile-title" class="info-title"><?php echo $this->translate("altitude profile")?></div>
+                <div id="path-profile-content" class="info-content"><?php
+                        $urlcomp = urlencode($this->path->urlcomp ?: $this->path->id);
+                        $href = $this->baseUrl() . '/profile/' . $urlcomp . '.png';
+                        $imgsrc =  $this->addParamToUrl($href, 'size', 'small', true);
+                        printf('<a href="%s"><img src="%s"></a>', $href, $imgsrc);
+                ?></div>
+                <?php }?>
+
+
+            </div>
+        </div>
+    <?php }?>
+
     <div id="data_controls">
         <div id="data_controls_btns">
+
     <?php if (isset($this->path)) { ?>
         <input id="clone-btn" name="clone-btn" type="button" value="<?php echo $this->translate('duplicate');?>">
         <br>
         <input id="edit-btn" name="edit-btn" type="button" value="<?php echo $this->translate('edit');?>">
     <?php } else {?>
+
+        <form id="nominatim-form" action="nominatim" method="get">
+            <div><a id="nominatim-label" href=""><?php echo $this->translate('Search a place')?></a></div>
+            <div id="nominatim-message" class="message"></div>
+            <div id="nominatim-controls">
+            <input name="nominatim-search" id="nominatim-search">
+            <input type="submit" id="nominatim-submit" name="nominatim-submit" value="<?php echo $this->translate('Ok')?>">
+            <img id="nominatim-throbber" src="icons/throbber.gif">
+            </div>
+
+        </form>
+
         <input id="create-btn" name="create-btn" type="button" value="<?php echo $this->translate('start a route');?>">
     <?php } ?>
         </div>
         print $this->geomform;
     ?>
 
-    </div>
+</div>
 
-    <div id="login_controls">
-        <div>
-            <?php
-                echo $this->anchor('login', $this->translate('login'), array('id' => 'login_control_anchor', 'class' => 'login-anchor'));
-                $anchortext = sprintf("%s<img id=\"account-info-bullet\" src=\"icons/bullet_arrow_right.png\"><span id=\"account-info\"><br>%s</span>",
-                                      $this->translate('create an account'),
-                                      $this->translate('Whith an account, you can manage and modify your routes'));
-                echo $this->anchor('', $anchortext, array('id' => 'user_control_anchor', 'class' => 'login-anchor'), false);
-            ?>
-        </div>
-        <div>
-            <?php echo $this->logoutLink(); ?>
-        </div>
-    </div>
+<?php if (!isset($this->path)) {?>
+            <div id="nominatim-suggestions">
+            <div id="nominatim-suggestions-title"><?php echo $this->translate('more results')?></div>
+            <ul id="nominatim-suggestions-list"></ul>
+            </div>
+<?php }?>
 
-    <div id="newpwd_area" class="modal">
-        <div id="newpwd_message" class="message"></div>
-        <?php
-            print $this->newpwdform;
-        ?>
-    </div>
 
-    <div id="user_area" class="modal">
-        <div id="user_message" class="message"></div>
-        <?php
-            print $this->userform;
-        ?>
-    </div>
+</div>
+
+<div id="newpwd_area" class="modal">
+    <div id="newpwd_message" class="message"></div>
+    <?php
+        print $this->newpwdform;
+    ?>
+</div>
 
-      <div id="login_area" class="modal">
-         <div id="login_message" class="message"></div>
+<div id="user_area" class="modal">
+    <div id="user_message" class="message"></div>
+    <?php
+        print $this->userform;
+    ?>
+</div>
 
-      <?php
-        print $this->loginform;
-      ?>
+<div id="login_area" class="modal">
+   <div id="login_message" class="message"></div>
 
-      <p id="login_area_create"><a id="login_area_create_anchor" href=""><?php echo $this->translate('create an account')?></a></p>
+<?php
+  print $this->loginform;
+?>
 
-      </div>
+<p id="login_area_create"><a id="login_area_create_anchor" href=""><?php echo $this->translate('create an account')?></a></p>
 
-      <div id="termsofusearea" class="modal">
-        <iframe id="termsofuseiframe" width="100%" height="100%" frameborder="0"></iframe>
-      </div>
+</div>
 
-<?php echo $this->localeSwitcher(); ?>
+<div id="termsofusearea" class="modal">
+  <iframe id="termsofuseiframe" width="100%" height="100%" frameborder="0"></iframe>
+</div>