Jump to content

How to embed airline map or live map in HTML website


Recommended Posts

Posted
31 minutes ago, reivax said:

Hi is any way to embed the live map and airline map that are installed on php server and php web, via HTML CODE on web side that work via HTML?

please help

<?php Template::Show('frontpage_acars.php'); ?>

I changed the file name from the default.

Posted

I believe you can only do this via an iframe. If your page is truly only HTML then only static content can be displayed. It may be possible with HTML5 but someone more familiar will need to chime in for that. 

Posted

i found some information at other forum, but its really hard to understand, maybe you guys can. By the way thanks for the help.

!--Insert into the layout.php file first before calling any outside scripting 
Below initializes the call functions.This also MUST be in between the 
<head>HERE</head>. NOT the <body> See below for calling your outside pages.-->
  

<!-- start call outside scripts-html etc pages-->
<script type="text/javascript">
var rootdomain="http://"+window.location.hostname

function ajaxinclude(url) {
var page_request = false
if (window.XMLHttpRequest) // if Mozilla, Safari etc
page_request = new XMLHttpRequest()
else if (window.ActiveXObject){ // if IE
try {
page_request = new ActiveXObject("Msxml2.XMLHTTP")
} 
catch (e){
try{
page_request = new ActiveXObject("Microsoft.XMLHTTP")
}
catch (e){}
}
}
else
return false
page_request.open('GET', url, false) //get page synchronously 
page_request.send(null)
writecontent(page_request)
}

function writecontent(page_request){
if (window.location.href.indexOf("http")==-1 || page_request.status==200)
document.write(page_request.responseText)
}

</script>

<!-- end of call outside scripts initializing coding. For the <head> area, by Jungle--> 

<!--/==============================================================================<body tag>/-->  
  
<!--How to call your pages ! Place in <body> only, anywhere you feel it functions good.
Do not enter a named domain, the (rootdomain makes the script call, just add the
folders as example below-->

EXAMPLE::::
<script type="text/javascript">
ajaxinclude(rootdomain+"/myphpvms-va/core/pages/mymenu.html")  <!--you can call anything!-->
</script>  
  

 

 

Posted
On 11 de enero de 2017 at 0:32 AM, flyalaska said:

<?php Template::Show('frontpage_acars.php'); ?>

I changed the file name from the default.

for example i have only to put this in my wixsite and thats it? or how? thanks =)

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...