Added the ability to search around a specific position
This commit is contained in:
parent
ab2224a1c9
commit
4f3c3043d1
16
index.php
16
index.php
@ -92,7 +92,21 @@
|
|||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<div id="position">
|
<div id="position">
|
||||||
<p><strong>Votre navigateur doit prendre en charge la géolocalisation pour que ce site puisse fonctionner correctement.<br/>Your browser must have geolocation capabilities for this site to display.</strong></p>
|
<form action="" method="get">
|
||||||
|
<p>
|
||||||
|
<label for="position">Chercher autour de :</label><br/>
|
||||||
|
<input type="text" name="position" id="position"/>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<input type="submit" value="Chercher"/>
|
||||||
|
</p>
|
||||||
|
<?php
|
||||||
|
foreach($_GET as $GET=>$param)
|
||||||
|
{
|
||||||
|
echo '<input type="hidden" name="'.htmlspecialchars($GET).'" value="'.htmlspecialchars($param).'"/>';
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<hr/>
|
<hr/>
|
||||||
<p id="thanks">Map is handled thanks to the <a href="http://leafletjs.com/">Leaflet</a> library, using © <a href="http://osm.org/copyright">OpenStreetMap</a> contributors tiles. Reverse geolocation (Nominatim) are provided by the <a href="http://www.mapquest.com/" alt="MapQuest icon">MapQuest</a> <img src="http://developer.mapquest.com/content/osm/mq_logo.png"> open API. Routes are provided by <a href='http://project-osrm.org/'>the OSRM project</a> (OSRM is a free and open source program under GNU Affero GPL).</p>
|
<p id="thanks">Map is handled thanks to the <a href="http://leafletjs.com/">Leaflet</a> library, using © <a href="http://osm.org/copyright">OpenStreetMap</a> contributors tiles. Reverse geolocation (Nominatim) are provided by the <a href="http://www.mapquest.com/" alt="MapQuest icon">MapQuest</a> <img src="http://developer.mapquest.com/content/osm/mq_logo.png"> open API. Routes are provided by <a href='http://project-osrm.org/'>the OSRM project</a> (OSRM is a free and open source program under GNU Affero GPL).</p>
|
||||||
|
107
js.js
107
js.js
@ -2,11 +2,23 @@
|
|||||||
var tiles_provider = 'http://{s}.tile.osm.org/{z}/{x}/{y}.png';
|
var tiles_provider = 'http://{s}.tile.osm.org/{z}/{x}/{y}.png';
|
||||||
var reverse_geolocation_provider = "http://open.mapquestapi.com/nominatim/v1/reverse.php";
|
var reverse_geolocation_provider = "http://open.mapquestapi.com/nominatim/v1/reverse.php";
|
||||||
var directions_provider = "http://router.project-osrm.org/viaroute";
|
var directions_provider = "http://router.project-osrm.org/viaroute";
|
||||||
|
var lat_long_provider = "http://open.mapquestapi.com/nominatim/v1/search.php"
|
||||||
var email = "webmaster@phyks.me"; //Mettre votre adresse e-mail ici si vous utilisez Nominatim (cf Usage Policy de Nominatim)
|
var email = "webmaster@phyks.me"; //Mettre votre adresse e-mail ici si vous utilisez Nominatim (cf Usage Policy de Nominatim)
|
||||||
|
|
||||||
/* Script : */
|
/* Script : */
|
||||||
|
|
||||||
window.onload = function() {
|
window.onload = function() {
|
||||||
|
function escapeHTML(unsafe)
|
||||||
|
{
|
||||||
|
return unsafe
|
||||||
|
.replace(/&/g, "&")
|
||||||
|
.replace(/</g, "<")
|
||||||
|
.replace(/>/g, ">")
|
||||||
|
.replace(/"/g, """)
|
||||||
|
.replace(/'/g, "'");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function params() //Get all the parameters in the URL
|
function params() //Get all the parameters in the URL
|
||||||
{
|
{
|
||||||
var t = location.search.substring(1).split('&');
|
var t = location.search.substring(1).split('&');
|
||||||
@ -29,8 +41,12 @@ window.onload = function() {
|
|||||||
var available = false;
|
var available = false;
|
||||||
var update = false;
|
var update = false;
|
||||||
var refresh = false;
|
var refresh = false;
|
||||||
|
var ignore_position = false;
|
||||||
|
var position = '';
|
||||||
|
|
||||||
for(GET in params) //Define boolean to handle the different cases next
|
for(GET in params) //Define boolean to handle the different cases next
|
||||||
|
{
|
||||||
|
if(GET != '')
|
||||||
{
|
{
|
||||||
if(params_url != '')
|
if(params_url != '')
|
||||||
params_url += '&';
|
params_url += '&';
|
||||||
@ -62,18 +78,32 @@ window.onload = function() {
|
|||||||
case 'refresh':
|
case 'refresh':
|
||||||
refresh = true;
|
refresh = true;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'ignorePosition':
|
||||||
|
ignore_position = true;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'position':
|
||||||
|
position = params[GET];
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(available || free || station)
|
if(available || free || station)
|
||||||
{
|
{
|
||||||
if(update == false && navigator.geolocation) //We don't want to update and the navigator as geolocation capabilities
|
if(update == false && (navigator.geolocation || position != '')) //We don't want to update and the navigator as geolocation capabilities or we specified a position
|
||||||
{
|
{
|
||||||
function successFunction(position)
|
function successFunction(position)
|
||||||
{
|
{
|
||||||
var latitude = position.coords.latitude; //Get the current position
|
var latitude = position.coords.latitude; //Get the current position
|
||||||
var longitude = position.coords.longitude;
|
var longitude = position.coords.longitude;
|
||||||
|
|
||||||
|
getBikes(latitude, longitude);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getBikes(latitude, longitude)
|
||||||
|
{
|
||||||
var xhr; //Define xhr variables
|
var xhr; //Define xhr variables
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -355,18 +385,89 @@ window.onload = function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(position == '' && !ignore_position)
|
||||||
|
{
|
||||||
if(refresh) //If refresh, we want to force a new position (non cached)
|
if(refresh) //If refresh, we want to force a new position (non cached)
|
||||||
navigator.geolocation.getCurrentPosition(successFunction, errorFunction, {enableHighAccuracy:true, maximumAge:0, timeout:2000});
|
navigator.geolocation.getCurrentPosition(successFunction, errorFunction, {enableHighAccuracy:true, maximumAge:0, timeout:2000});
|
||||||
else
|
else
|
||||||
navigator.geolocation.getCurrentPosition(successFunction, errorFunction, {enableHighAccuracy:true, maximumAge:60000, timeout:2000}); //Else, we are ok with 60 seconds old position
|
navigator.geolocation.getCurrentPosition(successFunction, errorFunction, {enableHighAccuracy:true, maximumAge:60000, timeout:2000}); //Else, we are ok with 60 seconds old position
|
||||||
}
|
}
|
||||||
|
else if(position != '')
|
||||||
|
{
|
||||||
|
var latitude = 0;
|
||||||
|
var longitude = 0;
|
||||||
|
|
||||||
|
var xhr; //Define xhr variables
|
||||||
|
try
|
||||||
|
{
|
||||||
|
xhr = new XMLHttpRequest();
|
||||||
|
}
|
||||||
|
catch (e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
xhr = new ActiveXObject('Msxml2.XMLHTTP');
|
||||||
|
}
|
||||||
|
catch (e2)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
xhr = new ActiveXObject('Microsoft.XMLHTTP');
|
||||||
|
}
|
||||||
|
catch (e3)
|
||||||
|
{
|
||||||
|
xhr = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(xhr == false)
|
||||||
|
{
|
||||||
|
document.getElementById("position").innerHTML = "<p>Une erreur a été rencontrée. Veuillez réessayer.</p>";
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
document.getElementById("position").innerHTML = "<p>Votre navigateur doit prendre en charge la géolocalisation pour que ce site puisse fonctionner correctement.</p>";
|
xhr.onreadystatechange = function()
|
||||||
|
{
|
||||||
|
if(xhr.readyState == 4)
|
||||||
|
{
|
||||||
|
if(xhr.status == 200)
|
||||||
|
{
|
||||||
|
var json = JSON.parse(xhr.responseText); //Parse the response
|
||||||
|
|
||||||
|
latitude = json[0].lat;
|
||||||
|
longitude = json[0].lon;
|
||||||
|
|
||||||
|
if(latitude == 0 && longitude == 0)
|
||||||
|
document.getElementById("position").innerHTML = "<p>Une erreur a été rencontrée. Veuillez réessayer.</p>";
|
||||||
|
else
|
||||||
|
getBikes(latitude, longitude);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
xhr.open("GET", lat_long_provider+"?format=json&q="+encodeURI(position+", Paris, France"), true); //xhr handle the data about stations
|
||||||
|
xhr.send();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var input_params = '';
|
||||||
|
|
||||||
|
for(GET in params) //Define hidden input to keep params
|
||||||
|
{
|
||||||
|
if(GET != '')
|
||||||
|
{
|
||||||
|
input_params += "<input type='hidden' name='"+GET+"' value='"+params[GET]+"'/>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
document.getElementById("position").innerHTML = '<form action="index.php" method="get"><p><label for="position">Chercher autour de :</label><br/><input typ="text" name="position" id="position"/></p><p><input type="submit" value="Chercher"/></p>'+escapeHTML(input_params)+'</form>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else //If we didn't choose what to do, display the choices
|
else //If we didn't choose what to do, display the choices
|
||||||
{
|
{
|
||||||
document.getElementById("position").innerHTML = "<p><a href='?available=1'><img src='images/velo.png' alt='Retirer un vélo'/></a><span id='ou'> ou </span><a href='?free=1'><img src='images/parking.png' alt='Rendre un vélo'/></a>";
|
document.getElementById("position").innerHTML = "<p><a href='?available=1&"+params_url+"'><img src='images/velo.png' alt='Retirer un vélo'/></a><span id='ou'> ou </span><a href='?free=1&"+params_url+"'><img src='images/parking.png' alt='Rendre un vélo'/></a></p><p><a href='?ignorePosition=1&"+params_url+"'>Ignorer la géolocalisation</a></p>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user