Jump to content

Recommended Posts

Posted (edited)

Hey guys,

i made a template to use this great weather map with phpvms. Its just a iframe but its doing his job!

The map is very accurate!!.. i tested it yesterday with AS16 (P3D)

https://www.ventusky.com/

S3nUZEO.jpg

put this in core/modules/ACARS/ACARS.php

 public function viewmapwxr()
{

$this->render('wxrmap.php');
}

create a file called "wxrmap.php" inyour /lib/skins/YOURSKIN/wxrmap.php

<style>
.embed-container {
 position: relative;
 padding-bottom: 56.25%; /* ratio 16x9 */
 height: 0;
 overflow: hidden;
 width: 100%;
 height: auto;
}

   .embed-container iframe {

 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
}
   /* ratio 4x3 */
.embed-container.ratio4x3 {
 padding-bottom: 75%;
}
   </style>
<!-- Main content -->


   <!-- Main row -->
 <div class="embed-container">
  <iframe src="https://www.ventusky.com/?p=-53;31;2&l=wind&m=icon" name="" scrolling="yes"></iframe>
   </div>

acces it by using:

/index.php/acars/viewmapwxr

I cant get the iframe responsive maybe you can help.. :P

Edited by MrDalle
Posted

Fantastic!

Just a quick question - how do you go about skinning modules, etc in order for them to show correctly within crewcenter?

Not sure what you're saying please rephrase so i do answer your question correctly

  • Moderators
Posted

Not sure what you're saying please rephrase so i do answer your question correctly

There are only certain pages in crewcenter. when I go to a module (like vfleettracker) it doesn't show the crewcenter skin - it shows a normal white page with the information and no crewcenter sidebar.

  • 2 weeks later...
  • 7 months later...
Posted
On 10/08/2017 at 7:13 AM, AJCWebServices said:

Hi 

When I put this on my frontpage my little aircraft on my acars map on my fronpage disappears. Anyone got any ideas why

 

Thanks

Are there any errors in your browser console and does it happen to all aircraft? Does it happen to the normal ACARS map? It might just be overridden by the weather.

Posted

@web541 I think you would be right by saying it is overwritten. The live map works fine on its own page. I do have 2 seperate maps on my page. One for flights the other for the weather. I think something is conflicting tbh. Maybe if the weather map was in a different module rather than the acars.php this would solve it but I would not know how to do this.Any ideas ??

  • 2 months later...
Posted (edited)
3 hours ago, Lausitzaircargo said:

Hello Guys

 

have anybody the code to show the Map on the frontpage_main.php ? 

Thanks in Advance


				
			       <div class="row">
		    <div class="col-md-12">
		        <div class="panel panel-default">
		            <div class="panel-heading"><?php echo SITE_NAME; ?> Live Map</div>
		            <div class="panel-body">
		                <script type="text/javascript">
		                    var acars_map_defaults = {
		                        autozoom: false,
		                        zoom: 2,
		                        center: new google.maps.LatLng("<?php echo Config::Get('MAP_CENTER_LAT'); ?>", "<?php echo Config::Get('MAP_CENTER_LNG'); ?>"),
		                        mapTypeId: google.maps.MapTypeId.SATELLITE,
		                        refreshTime: 1000
		                    };
		                </script>
		                <div class="mapcenter" align="center">
		                    <div id="acarsmap" style="width: 100%; height: 500px"></div>
		                    <!--    <div id="acarsmap map_canvas" ></div>-->
		                </div>
		            </div>
		        </div>
		    </div>
		</div>				
			

Example @ Flight Unlimited Network Virtual The F.U.N. One

 

 

Edited by hurkulez
Posted (edited)

Thats not the correct Answer. I wil lhave not the Livemap on the Mainsite, i will have the Weather map in this topic on the frontpage_main... The Livemap i have already.....

 

So the next please. I dotn know where i can figure it out

Edited by Lausitzaircargo

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...