mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-27 00:49:55 +03:00
123 lines
4.1 KiB
PHP
123 lines
4.1 KiB
PHP
<?php
|
|
header("content-type: text/html; charset=UTF-8");
|
|
?>
|
|
<?php include(CONST_BasePath.'/lib/template/includes/html-header.php'); ?>
|
|
<link href="css/common.css" rel="stylesheet" type="text/css" />
|
|
<link href="css/details.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
|
|
|
|
<?php
|
|
|
|
function osmMapUrl($aFeature)
|
|
{
|
|
if (isset($sFeature['error_x']) && isset($sFeature['error_y']))
|
|
{
|
|
$sBaseUrl = '//www.openstreetmap.org/';
|
|
$sOSMType = formatOSMType($aFeature['osm_type'], false);
|
|
if ($sOSMType)
|
|
{
|
|
$sBaseUrl += $sOSMType.'/'.$aFeature['osm_id'];
|
|
}
|
|
|
|
return '<a href="'.$sBaseUrl.'?mlat='.$aFeature['error_y'].'&mlon='.$aFeature['error_x'].'">view on osm.org</a>';
|
|
}
|
|
return '';
|
|
}
|
|
|
|
function josm_edit_url($aFeature)
|
|
{
|
|
$fWidth = 0.0002;
|
|
$sLon = $aFeature['error_x'];
|
|
$sLat = $aFeature['error_y'];
|
|
|
|
if (isset($sLat))
|
|
{
|
|
return "http://localhost:8111/load_and_zoom?left=".($sLon-$fWidth)."&right=".($sLon+$fWidth)."&top=".($sLat+$fWidth)."&bottom=".($sLat-$fWidth);
|
|
}
|
|
|
|
$sOSMType = formatOSMType($aFeature['osm_type'], false);
|
|
if ($sOSMType)
|
|
{
|
|
return 'http://localhost:8111/import?url=http://www.openstreetmap.org/api/0.6/'.$sOSMType.'/'.$aFeature['osm_id'].'/full';
|
|
// Should be better to load by object id - but this doesn't seem to zoom correctly
|
|
// return " <a href=\"http://localhost:8111/load_object?new_layer=true&objects=".strtolower($aFeature['osm_type']).$sOSMID."\" target=\"josm\">Remote Control (JOSM / Merkaartor)</a>";
|
|
}
|
|
return '';
|
|
}
|
|
|
|
function potlach_edit_url($aFeature)
|
|
{
|
|
$fWidth = 0.0002;
|
|
$sLat = $aFeature['error_y'];
|
|
$sLon = $aFeature['error_x'];
|
|
|
|
if (isset($sLat))
|
|
{
|
|
return "//www.openstreetmap.org/edit?editor=potlatch2&bbox=".($sLon-$fWidth).",".($sLat-$fWidth).",".($sLon+$fWidth).",".($sLat+$fWidth);
|
|
}
|
|
return '';
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
<body id="details-page">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
|
|
|
|
<h1><?php echo $aPointDetails['localname'] ?></h1>
|
|
<div class="locationdetails">
|
|
<h2 class="bg-danger">This object has an invalid geometry.</h2>
|
|
|
|
<div>
|
|
Type: <span class="type"><?php echo $aPointDetails['class'].':'.$aPointDetails['type'];?></span>
|
|
</div>
|
|
|
|
<div>
|
|
OSM: <span class="label"><?php echo osmLink($aPointDetails); ?><span>
|
|
</div>
|
|
|
|
|
|
<h4>Error</h4>
|
|
<p>
|
|
<?php echo $aPointDetails['errormessage']?$aPointDetails['errormessage']:'unknown'; ?>
|
|
</p>
|
|
<?php echo osmMapUrl($aPointDetails); ?>
|
|
|
|
<h4>Edit</h4>
|
|
<ul>
|
|
<?php if (josm_edit_url($aPointDetails)) { ?>
|
|
<li><a href="<?php echo josm_edit_url($aPointDetails); ?>" target="josm">Remote Control (JOSM / Merkaartor)</a></li>
|
|
<?php } ?>
|
|
<?php if (potlach_edit_url($aPointDetails)) { ?>
|
|
<li><a href="<?php echo potlach_edit_url($aPointDetails); ?>" target="potlatch2">Potlatch 2</a></li>
|
|
<?php } ?>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div id="map"></div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
var nominatim_result = {
|
|
outlinestring: '<?php echo $aPointDetails['outlinestring'];?>',
|
|
lon: <?php echo isset($aPointDetails['error_x']) ? $aPointDetails['error_x'] : 0; ?>,
|
|
lat: <?php echo isset($aPointDetails['error_y']) ? $aPointDetails['error_y'] : 0; ?>
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
<?php include(CONST_BasePath.'/lib/template/includes/html-footer.php'); ?>
|
|
</body>
|
|
</html>
|