Here is a challenge! Would embedding a webpage into the overview map widget basically require an entire rewrite of the code? I would like to embed the following:<script type="text/javascript"> width='80%'; //the width of the embedded map in pixels or percentage height=400; //the height of the embedded map in pixels or percentage border=1; //the width of border around the map. Zero means no border notation=false; //true or false to display or not the vessel icons and options at the left shownames=false; //true or false to dispaly ship names on the map latitude=37.4460; //the latitude of the center of the map in decimal degrees longitude=24.9467; //the longitude of the center of the map in decimal degrees zoom=9; //the zoom level of the map. Use values between 2 and 17 maptype=3; //use 0 for Normal map, 1 for Satellite, 2 for Hybrid, 3 for Terrain trackvessel=0; //the MMSI of the vessel to track, if within the range of the system fleet=''; //the registered email address of a user-defined fleet to display remember=false; //true or false to remember or not the last position of the map </script> <script type="text/javascript" src="http://www.marinetraffic.com/ais/embed.js"></script>
this would allow the user to stay in the flex environment and not have to go to a new url to check out the location of ships in the area....Or are there any other easier alternatives that could work? Should this be written directly into the index.html? Can javascript code even be embedded in the first place?