2 @define('CONST_ConnectionBucket_PageType', 'Reverse');
4 require_once(dirname(dirname(__FILE__)).'/settings/settings.php');
5 require_once(CONST_BasePath.'/lib/init-website.php');
6 require_once(CONST_BasePath.'/lib/log.php');
7 require_once(CONST_BasePath.'/lib/PlaceLookup.php');
8 require_once(CONST_BasePath.'/lib/ReverseGeocode.php');
9 require_once(CONST_BasePath.'/lib/output.php');
11 $bAsGeoJSON = getParamBool('polygon_geojson');
12 $bAsKML = getParamBool('polygon_kml');
13 $bAsSVG = getParamBool('polygon_svg');
14 $bAsText = getParamBool('polygon_text');
15 if ((($bAsGeoJSON?1:0) + ($bAsKML?1:0) + ($bAsSVG?1:0)
16 + ($bAsText?1:0)) > CONST_PolygonOutput_MaximumTypes)
18 if (CONST_PolygonOutput_MaximumTypes)
20 userError("Select only ".CONST_PolygonOutput_MaximumTypes." polgyon output option");
24 userError("Polygon output is disabled");
30 // Polygon simplification threshold (optional)
31 $fThreshold = getParamFloat('polygon_threshold', 0.0);
35 ini_set('memory_limit', '200M');
38 $sOutputFormat = getParamSet('format', array('html', 'xml', 'json', 'jsonv2'), 'xml');
41 $aLangPrefOrder = getPreferredLanguages();
43 $hLog = logStart($oDB, 'reverse', $_SERVER['QUERY_STRING'], $aLangPrefOrder);
46 $sOsmType = getParamSet('osm_type', array('N', 'W', 'R'));
47 $iOsmId = getParamInt('osm_id', -1);
48 $fLat = getParamFloat('lat');
49 $fLon = getParamFloat('lon');
50 if ($sOsmType && $iOsmId > 0)
52 $aLookup = array('osm_type' => $sOsmType, 'osm_id' => $iOsmId);
54 else if ($fLat !== false && $fLon !==false)
56 $oReverseGeocode = new ReverseGeocode($oDB);
57 $oReverseGeocode->setZoom(getParamInt('zoom', 18));
59 $aLookup = $oReverseGeocode->lookup($fLat, $fLon);
60 if (CONST_Debug) var_dump($aLookup);
62 else if ($sOutputFormat != 'html')
64 userError("Need coordinates or OSM object to lookup.");
69 $oPlaceLookup = new PlaceLookup($oDB);
70 $oPlaceLookup->setLanguagePreference($aLangPrefOrder);
71 $oPlaceLookup->setIncludeAddressDetails(getParamBool('addressdetails', true));
72 $oPlaceLookup->setIncludeExtraTags(getParamBool('extratags', false));
73 $oPlaceLookup->setIncludeNameDetails(getParamBool('namedetails', false));
75 $aPlace = $oPlaceLookup->lookupPlace($aLookup);
77 $oPlaceLookup->setIncludePolygonAsPoints(false);
78 $oPlaceLookup->setIncludePolygonAsText($bAsText);
79 $oPlaceLookup->setIncludePolygonAsGeoJSON($bAsGeoJSON);
80 $oPlaceLookup->setIncludePolygonAsKML($bAsKML);
81 $oPlaceLookup->setIncludePolygonAsSVG($bAsSVG);
82 $oPlaceLookup->setPolygonSimplificationThreshold($fThreshold);
84 $fRadius = $fDiameter = getResultDiameter($aPlace);
85 $aOutlineResult = $oPlaceLookup->getOutlines($aPlace['place_id'], $aPlace['lon'], $aPlace['lat'], $fRadius);
89 $aPlace = array_merge($aPlace, $aOutlineResult);
104 if ($sOutputFormat=='html')
106 $sDataDate = chksql($oDB->getOne("select TO_CHAR(lastimportdate - '2 minutes'::interval,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1"));
107 $sTileURL = CONST_Map_Tile_URL;
108 $sTileAttribution = CONST_Map_Tile_Attribution;
110 include(CONST_BasePath.'/lib/template/address-'.$sOutputFormat.'.php');