diff --git a/index.php b/index.php index 8653d17..fdd6035 100644 --- a/index.php +++ b/index.php @@ -126,7 +126,12 @@ $query = ob_get_contents(); ob_clean(); $results = $database->query($query)->fetchAll(); -$geojson = getgeojson($results); +// If we're looking for a specific location by OSM ID +if (!empty($where["osmid"])) { + $geojson = getgeojson($results[0]); +} else { + $geojson = getgeojson($results); +} if ($SETTINGS["debug"]) { $geojson["query"] = $query;