-
Notifications
You must be signed in to change notification settings - Fork 1
/
JSmain.js
41 lines (37 loc) · 2.14 KB
/
JSmain.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////this script is completely obsolete and is not existant in the site//////////////////////////////////////////
///////////////////////////////////this script is completely obsolete and is not existant in the site//////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//AIzaSyDVmCT72skg8UIfLNxobO1sGHdguGivzZ8
//#############################################################################################################
//-------------------------------------begin part to uncomment (postcode to latlong)---------------------------
//#############################################################################################################
//var postcode = 'RG27HG'
/*if(window.XMLHttpRequest){
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP")
}
alert('good so far')
xmlhttp.open("GET", "PC.php?postcode = "+postcode, false);
alert('url opened')
xmlhttp.send();
alert("request sent")
if(xmlhttp.status == 200) {
alert("status = 200")
//file = <?php echo (json_encode($file)); ?>
var xmlDoc = xmlhttp.responseXML;
document.write(xmlDoc)
var lat = 0
var lng = 0
var latlst = xmlDoc.getElementsByTagName("lat");
var lnglst = xmlDoc.getElementsByTagName("lng");
lat = (latlst[0].childNodes[0].nodeValue);
lng = (lnglst[0].childNodes[0].nodeValue);
alert(lat+" "+lng)
}*/
//#######################################################################################
//----------------------------------end part to uncomment--------------------------------
//#######################################################################################