Marine Traffic
width=’100%’; // the width of the embedded map in pixels or percentage
height=’450′; // the height of the embedded map in pixels or percentage
border=’1′; // the width of the border around the map (zero means no border)
shownames=’false’; // to display ship names on the map (true or false)
latitude=’32.4460′; // the latitude of the center of the map, in decimal degrees
longitude=’32.9467′; // the longitude of the center of the map, in decimal degrees
zoom=’3′; // the zoom level of the map (values between 2 and 17)
maptype=’1′; // use 0 for Normal Map, 1 for Satellite
trackvessel=’0′; // MMSI of a vessel (note: vessel will be displayed only if within range of the system) – overrides “zoom” option
fleet=”; // the registered email address of a user-defined fleet (user’s default fleet is used) – overrides “zoom” option
All-in-one Package Tracking
function doTrack() {
var num = document.getElementById(“YQNum”).value;
if(num===””){
alert(“Enter your number.”);
return;
}
YQV5.trackSingle({
//Required, Specify the container ID of the carrier content.
YQ_ContainerId:”YQContainer”,
//Optional, specify tracking result height, max height 800px, default is 560px.
YQ_Height:560,
//Optional, select carrier, default to auto identify.
YQ_Fc:”0″,
//Optional, specify UI language, default language is automatically detected based on the browser settings.
YQ_Lang:”en”,
//Required, specify the number needed to be tracked.
YQ_Num:num
});
}