-
MMSI : {ship.mmsi}
- {ship.callSign &&
Call Sign : {ship.callSign}
}
- {ship.imo &&
IMO : {ship.imo}
}
- {ship.status &&
Status : {ship.status}
}
- {ship.length &&
Length : {ship.length}m
}
- {ship.width &&
Width : {ship.width}m
}
- {ship.draught &&
Draught : {ship.draught}m
}
+
{t('popup.mmsi')} : {ship.mmsi}
+ {ship.callSign &&
{t('popup.callSign')} : {ship.callSign}
}
+ {ship.imo &&
{t('popup.imo')} : {ship.imo}
}
+ {ship.status &&
{t('popup.status')} : {ship.status}
}
+ {ship.length &&
{t('popup.length')} : {ship.length}m
}
+ {ship.width &&
{t('popup.width')} : {ship.width}m
}
+ {ship.draught &&
{t('popup.draught')} : {ship.draught}m
}
-
Heading : {ship.heading.toFixed(1)}°
-
Course : {ship.course.toFixed(1)}°
-
Speed : {ship.speed.toFixed(1)} kn
-
Lat : {formatCoord(ship.lat, 0).split(',')[0]}
-
Lon : {formatCoord(0, ship.lng).split(', ')[1] || ship.lng.toFixed(3)}
- {ship.destination &&
Dest : {ship.destination}
}
- {ship.eta &&
ETA : {new Date(ship.eta).toLocaleString()}
}
+
{t('popup.heading')} : {ship.heading.toFixed(1)}°
+
{t('popup.course')} : {ship.course.toFixed(1)}°
+
{t('popup.speed')} : {ship.speed.toFixed(1)} kn
+
{t('popup.lat')} : {formatCoord(ship.lat, 0).split(',')[0]}
+
{t('popup.lon')} : {formatCoord(0, ship.lng).split(', ')[1] || ship.lng.toFixed(3)}
+ {ship.destination &&
{t('popup.destination')} : {ship.destination}
}
+ {ship.eta &&
{t('popup.eta')} : {new Date(ship.eta).toLocaleString()}
}