Remove useless print
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
This commit is contained in:
parent
380b28a59c
commit
eef6d6195f
1 changed files with 0 additions and 3 deletions
|
@ -130,9 +130,6 @@ async fn get_elevation(
|
||||||
query_opts: Query<Opts>,
|
query_opts: Query<Opts>,
|
||||||
Path((lat, lon)): Path<(f64, f64)>,
|
Path((lat, lon)): Path<(f64, f64)>,
|
||||||
) -> Response {
|
) -> Response {
|
||||||
println!("lat: {}, lon: {}", lat, lon);
|
|
||||||
println!("query_opts: {:?}", query_opts);
|
|
||||||
|
|
||||||
let ele;
|
let ele;
|
||||||
match dem::elevation_from_coordinates(&dsr, lat, lon).await {
|
match dem::elevation_from_coordinates(&dsr, lat, lon).await {
|
||||||
Ok(x) => match x {
|
Ok(x) => match x {
|
||||||
|
|
Loading…
Reference in a new issue