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->setLanguagePreference($aLangPrefOrder);
59 $oReverseGeocode->setLatLon($fLat, $fLon);
60 $oReverseGeocode->setZoom(getParamInt('zoom', 18));
62 $aLookup = $oReverseGeocode->lookup();
63 if (CONST_Debug) var_dump($aLookup);
65 else if ($sOutputFormat != 'html')
67 userError("Need coordinates or OSM object to lookup.");
72 $oPlaceLookup = new PlaceLookup($oDB);
73 $oPlaceLookup->setLanguagePreference($aLangPrefOrder);
74 $oPlaceLookup->setIncludeAddressDetails(getParamBool('addressdetails', true));
75 $oPlaceLookup->setIncludeExtraTags(getParamBool('extratags', false));
76 $oPlaceLookup->setIncludeNameDetails(getParamBool('namedetails', false));
78 $aPlace = $oPlaceLookup->lookupPlace($aLookup);
80 $oPlaceLookup->setIncludePolygonAsPoints(false);
81 $oPlaceLookup->setIncludePolygonAsText($bAsText);
82 $oPlaceLookup->setIncludePolygonAsGeoJSON($bAsGeoJSON);
83 $oPlaceLookup->setIncludePolygonAsKML($bAsKML);
84 $oPlaceLookup->setIncludePolygonAsSVG($bAsSVG);
85 $oPlaceLookup->setPolygonSimplificationThreshold($fThreshold);
87 $fRadius = $fDiameter = getResultDiameter($aPlace);
88 $aOutlineResult = $oPlaceLookup->getOutlines($aPlace['place_id'], $aPlace['lon'], $aPlace['lat'], $fRadius);
92 $aPlace = array_merge($aPlace, $aOutlineResult);
107 if ($sOutputFormat=='html')
109 $sDataDate = chksql($oDB->getOne("select TO_CHAR(lastimportdate - '2 minutes'::interval,'YYYY/MM/DD HH24:MI')||' GMT' from import_status limit 1"));
110 $sTileURL = CONST_Map_Tile_URL;
111 $sTileAttribution = CONST_Map_Tile_Attribution;
113 include(CONST_BasePath.'/lib/template/address-'.$sOutputFormat.'.php');