Adding the elevation API in poi edit form

This commit is contained in:
leosw
2021-05-19 22:44:52 +02:00
parent 428ce900f0
commit 1c90c9ddab
4 changed files with 33 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ switch ($controller->splitted_url[1]) {
$poi->poi_type = $_POST['poi_type'];
$poi->lat = $_POST['lat'];
$poi->lon = $_POST['lon'];
$poi->alt = $_POST['alt'];
$poi->ele = $_POST['ele'];
$poi->author = $user->id;
if(!$blogArticle->checkPermalink($_POST['permalink'],1)) {
$blogArticle->permalink = $_POST['permalink'];
@@ -39,7 +39,7 @@ switch ($controller->splitted_url[1]) {
$head['css'] .= ";../third/leaflet/leaflet.css;../third/leaflet-fullscreen/leaflet.fullscreen.css;../third/leaflet-easybutton/easy-button.css";
$head['js'] = "d.poi_map.js";
$poi->lat = ""; $poi->lon = ""; $poi->alt = "";
$poi->lat = ""; $poi->lon = ""; $poi->ele = "";
$new = 1;
include ($config['views_folder']."d.poi.edit.html");
@@ -48,6 +48,15 @@ switch ($controller->splitted_url[1]) {
else {
$notfound = 1;
}
case "elevation_proxy":
if(isset($_GET['location'])) {
header("Content-Type: application/json;charset=utf-8");
echo(file_get_contents("https://api.opentopodata.org/v1/mapzen?locations=".$_GET['location']));
break;
}
else {
$notfound = 1;
}
default:
// // If the page exists
// if ($blogArticle->checkPermalink($controller->splitted_url[1],$user->rankIsHigher("premium"))) {