Jump to content

Weather Map


MrDalle

Recommended Posts

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
Link to comment
Share on other sites

  • 2 weeks later...
  • 7 months later...
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.

Link to comment
Share on other sites

@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 ??

Link to comment
Share on other sites

  • 2 months later...
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
Link to comment
Share on other sites

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