Jump to content

William

Members
  • Posts

    71
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by William

  1. Ha! Genius. Go figure. That script is already in the Admin header so I never thought of that. Brilliant Works like a charm now, thanks!! I got one more issue (well many really lol) but one particularly if you feel like helping me a little more
  2. Hey, thanks, I really appreciate the help. That is indeed the admin/templates/route_map.php file and yes I copied the code as it seemed the only resource available. Yes the leaflet.js is there and loads up with the page (however I did add the script to admin/lib/layout), but I don't think that's the problem. It seems like it's not meant to work in Admin as you said and variables are missing. And that is way above my pay-grade..... Would be interesting to see if someone had it working on Crewcenter and has the right code.
  3. Absolutely works perfectly everywhere that's the front-end. Permissions are good, scripts are modified, cache is clear. Still no dice. If I put back the Gmap route_map code iin Admin, map shows up. When using OSM route_map it doesn't. Clearly basemap.js is unable to "create map" for some reason. Can't pin my finger on it 🥵 Below Firefox console output
  4. Hey guys, I'm really stuck on this one and need a fresh pair of eyes. Running CrewCenter with OSM Leaflet conversion. On the frontend every Map works fine, Acars, Schedule details, Flown-Routes, Trackflight, etc. In Admin it's a nightmare, I cannot get the Map to display in Pireps, no matter what I try. Layout file is ok, scripts are all there. Pirep is parsing through json but something is preventing the Map from loading altogether. Any ideas? Below is the current route_map code: <?php if(!defined('IN_PHPVMS') && IN_PHPVMS !== true) { die(); } ?> <?php // SKINNED FOR CREWCENTER - OPTIMISED FOR PIREPVIEW ?> <div align="center"> <h3>My Routes Map</h3> </div> <br /> <div id="routemap" style="width: 100%; height: <?php echo Config::Get('MAP_HEIGHT')?>"></div> <?php /** * * This is the new Google Maps v3 code. Be careful of changing * things here, only do something if you know what you're doing. * * These are some options for the map, you can change here. * * This map is used for schedules and PIREPS * * By default, the zoom level and center are ignored, and the map * will try to fit the all the flights in. If you want to manually set * the zoom level and center, set "autozoom" to false. * * If you want to adjust the size of the map - Look at the above * "routemap" div with the CSS width/height parameters. You can * easily adjust it from there. * * And for reference, you want to tinker: * http://code.google.com/apis/maps/documentation/v3/basics.html */ if(isset($pirep)) $mapdata = $pirep; if(isset($schedule)) $mapdata = $schedule; ?> <script type="text/html" id="navpoint_bubble"> <span style="font-size: 10px; text-align:left; width: 100%" align="left"> <strong>Name: </strong><%=nav.title%> (<%=nav.name%>)<br /> <strong>Type: </strong> <?php /* Show the type of point */ ?> <% if(nav.type == 2) { %> NDB <% } %> <% if(nav.type == 3) { %> VOR <% } %> <% if(nav.type == 4) { %> DME <% } %> <% if(nav.type == 5) { %> FIX <% } %> <% if(nav.type == 6) { %> TRACK <% } %> <br /> <?php /* Only show frequency if it's not a 0*/ ?> <% if(nav.freq != 0) { %> <strong>Frequency: </strong><%=nav.freq%> <% } %> </span> </script> <?php /* Below here is all the javascript for the map. Be careful of what you modify!! */ ?> <script src="<?php echo SITE_URL?>/lib/js/base_map.js"></script> <script src="<?php echo SITE_URL?>/lib/js/acarsmap.js"></script> <script type="text/javascript"> // Write the PIREP data out into JSON // The big reason being we don't need to have PHP writing JS - yuck const flight = JSON.parse('<?php echo json_encode($mapdata); ?>'); console.log(flight); const map = createMap({ render_elem: 'routemap', provider: '<?php echo Config::Get("MAP_TYPE"); ?>', }); const depCoords = L.latLng(flight.deplat, flight.deplng); selDepMarker = L.marker(depCoords, { icon: MapFeatures.icons.departure, }).bindPopup(flight.depname).addTo(map); const arrCoords = L.latLng(flight.arrlat, flight.arrlng); selArrMarker = L.marker(arrCoords, { icon: MapFeatures.icons.arrival, }).bindPopup(flight.arrname).addTo(map); let points = []; points.push(depCoords); // rendering for if there's smartcars data if(flight.rawdata instanceof Object && flight.rawdata.points !== undefined && Array.isArray(flight.rawdata.points) ) { $.each(flight.rawdata.points, function(i, nav) { if(nav.lat === undefined || nav.lng === undefined) { return; } points.push(L.latLng(nav.lat, nav.lng)); }); } else { $.each(flight.route_details, function(i, nav) { const loc = L.latLng(nav.lat, nav.lng); const icon = (nav.type === 3) ? MapFeatures.icons.vor : MapFeatures.icons.fix; points.push(loc); const marker = L.marker(loc, { icon: icon, title: nav.title, }) .bindPopup(tmpl("navpoint_bubble", { nav: nav })) .addTo(map); }); } points.push(arrCoords); const selPointsLayer = L.geodesic([points], { weight: 2, opacity: 0.5, color: 'red', steps: 10 }).addTo(map); map.fitBounds(selPointsLayer.getBounds()); </script> <?php // CLOSING FOR PIREPVIEW ?> </div> </div> </section> </div> </section>
  5. By the way and just for everyone knowledge. Together with George at PHP-Mods we have developed a new module called VMSDispatch which uses the FlightAware API to request any live schedule you may want/need. The module is extra solid with many advanced functions and a lot of attention has gone into saving money while making the API calls! Speaking of money, it's also very well priced and the API calls are fairly cheap if you manage to update 2 or 3 times a year. A typical 30000 result query will result in about 10000 usable schedules and will cost around $15 billed by FlightAware. Just another option to have. we at American Airlines Virtual are super happy with it! Get in touch with George or visit the shop at PHP-Mods if you want to find out more.
  6. I will send you a PM, think that's easier

  7. Hey there, hope you are well. 

     

    We are using CrewCenter exactly like you and it would be a Tremendous help if you could share with me the CSS formatting of the TourModule pages. I love the way yours looks.

    I have it all setup and that would be the last step. You would do me really a huge solid :)

     

    Thanks again

     

    Will  

  8. I'm sorry if this has been discussed previously but I read all the posts and don't think there's an answer to my question. We have the script up and working as it should but my question is as follow: Is there a way to have only the aircraft called by the Bid already selected in the Brief window? For instance if the Bid is AAL200 scheduled with an Airbus A320, I would like to already have the A320 pre-selected instead of the pull down menu with 300 other aircraft. Appreciate it if anyone has any input in regard. Thanks for the great work! Will
  9. Hi Nabeel, thanks for looking into it. I'm on the Beta 3. So I changed PhP on my host to 7.3 and I was able to complete the install without errors. However, now when phpvms loads I am missing the whole CSS. God, I wish I was good enough to find out why by myself 🤪
  10. What happened to this? Has it being discontinued? Any news? Thanks in advance to whoever has some info
  11. Hi Nabeel, I get this error while the installer is trying to setup the DB, any ideas? It's on a shared hosting but all pre-requisites are there before getting to the DB phase Appreciated
  12. Are you still active Max?

  13. Hey guys, I'm looking for somebody that has experience and talent with video production. I'm interested in creating a YouTube video promo for Fly Star Alliance and would like to get some quotes. Thanks Will
  14. Really guys?? I guess nobody wants to make some easy money...... WOW
  15. We need a graphic designer able to take care of some awards for various parts of the website. I will provide sizes, ideas and eventual material needed to have an idea of what I want. We are not maniacs, but if you look at our website it looks nice, clean and professional and we want to keep it that way. I have no problem paying a few dollars more for a job well done instead of being cheap and get quick stuff thrown together. I already work with SimPilot (since a long time), Jeffrey Kobus, Joeri etc. and I'm looking for a long term relationship for all the graphics that I need. If you are interested please contact me at admin@flystaralliance.org or through the forum pm system. Thanks
  16. Can you please share how you solved it because I'm stuck in the exact same situation. Thanks in advance Will
  17. Now.... That being said by Dave, the only question is: When do we start?
  18. Will get in touch with you shortly.... Thanks
  19. Get in touch with SimPilot @ www.simpilotgroup.com. Best in the business!! Cheers
  20. Popups are enabled. Result.tpl is here: http://www.mediafire.com/?zyodc9kx8bnln3c Thanks for the help.
  21. Thanks for the prompt reply but everything works (once the Util::FormatDuration is removed) besides the Print Icon and consequent Print Function.
  22. First of all thank you very much Parkho for making this very helpful addon. This is one is really nice....... Got one question for you since I'm a real beginner with php. I get everything to work, modified/added the Aircraft fuel data and in the process to integrate the template as well but I cannot get the "print" icon on the bottom of the page...... Attached is a screenshot of the work in progress. Also, how can I make the result.tpl come up in a new window? (I know it's simple but that's how bad I am.... ) Will provide backlink to your VA. Thanks again William M.
  23. Hi, We are in the process to renew and re-upload our Fleet and we need some help. We are talking about several aircrafts, anywhere from 12 to 25 at least and we are willing to contract a fixed price per repaint. Please contact me if interested at william.matteoni@gmail.com to further discuss timeframe and details. Thanks William M.
×
×
  • Create New...