2022-11-22 22:19:10 +00:00
|
|
|
import { json } from './modules/utils/fetch.mjs';
|
2022-12-06 22:14:56 +00:00
|
|
|
import noSleep from './modules/utils/nosleep.mjs';
|
|
|
|
import {
|
|
|
|
message as navMessage, isPlaying, resize, resetStatuses, latLonReceived, stopAutoRefreshTimer, registerRefreshData,
|
|
|
|
} from './modules/navigation.mjs';
|
2022-12-12 20:47:53 +00:00
|
|
|
import { round2 } from './modules/utils/units.mjs';
|
2022-11-22 16:45:17 +00:00
|
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
init();
|
|
|
|
});
|
|
|
|
|
2022-12-12 20:47:53 +00:00
|
|
|
let fullScreenOverride = false;
|
2022-11-22 16:45:17 +00:00
|
|
|
|
|
|
|
const categories = [
|
|
|
|
'Land Features',
|
|
|
|
'Bay', 'Channel', 'Cove', 'Dam', 'Delta', 'Gulf', 'Lagoon', 'Lake', 'Ocean', 'Reef', 'Reservoir', 'Sea', 'Sound', 'Strait', 'Waterfall', 'Wharf', // Water Features
|
|
|
|
'Amusement Park', 'Historical Monument', 'Landmark', 'Tourist Attraction', 'Zoo', // POI/Arts and Entertainment
|
|
|
|
'College', // POI/Education
|
|
|
|
'Beach', 'Campground', 'Golf Course', 'Harbor', 'Nature Reserve', 'Other Parks and Outdoors', 'Park', 'Racetrack',
|
|
|
|
'Scenic Overlook', 'Ski Resort', 'Sports Center', 'Sports Field', 'Wildlife Reserve', // POI/Parks and Outdoors
|
|
|
|
'Airport', 'Ferry', 'Marina', 'Pier', 'Port', 'Resort', // POI/Travel
|
|
|
|
'Postal', 'Populated Place',
|
|
|
|
];
|
2022-12-08 21:05:51 +00:00
|
|
|
const category = categories.join(',');
|
2022-11-22 16:45:17 +00:00
|
|
|
|
|
|
|
const init = () => {
|
|
|
|
document.getElementById('txtAddress').addEventListener('focus', (e) => {
|
|
|
|
e.target.select();
|
|
|
|
});
|
|
|
|
|
2022-12-12 20:47:53 +00:00
|
|
|
registerRefreshData(loadData);
|
2022-12-06 22:14:56 +00:00
|
|
|
|
2022-11-22 16:45:17 +00:00
|
|
|
document.getElementById('NavigateMenu').addEventListener('click', btnNavigateMenuClick);
|
|
|
|
document.getElementById('NavigateRefresh').addEventListener('click', btnNavigateRefreshClick);
|
|
|
|
document.getElementById('NavigateNext').addEventListener('click', btnNavigateNextClick);
|
|
|
|
document.getElementById('NavigatePrevious').addEventListener('click', btnNavigatePreviousClick);
|
|
|
|
document.getElementById('NavigatePlay').addEventListener('click', btnNavigatePlayClick);
|
|
|
|
document.getElementById('ToggleFullScreen').addEventListener('click', btnFullScreenClick);
|
|
|
|
document.getElementById('btnGetGps').addEventListener('click', btnGetGpsClick);
|
|
|
|
|
|
|
|
document.getElementById('divTwc').addEventListener('click', () => {
|
2022-12-12 20:47:53 +00:00
|
|
|
if (document.fullscreenElement) updateFullScreenNavigate();
|
2022-11-22 16:45:17 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
document.addEventListener('keydown', documentKeydown);
|
2022-12-12 20:47:53 +00:00
|
|
|
document.addEventListener('touchmove', (e) => { if (fullScreenOverride) e.preventDefault(); });
|
2022-11-22 16:45:17 +00:00
|
|
|
|
|
|
|
$('#frmGetLatLng #txtAddress').devbridgeAutocomplete({
|
|
|
|
serviceUrl: 'https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/suggest',
|
|
|
|
deferRequestBy: 300,
|
|
|
|
paramName: 'text',
|
|
|
|
params: {
|
|
|
|
f: 'json',
|
|
|
|
countryCode: 'USA', // 'USA,PRI,VIR,GUM,ASM',
|
2022-12-08 21:05:51 +00:00
|
|
|
category,
|
2022-11-22 16:45:17 +00:00
|
|
|
maxSuggestions: 10,
|
|
|
|
},
|
|
|
|
dataType: 'json',
|
2022-12-12 20:13:39 +00:00
|
|
|
transformResult: (response) => ({
|
2022-12-12 20:47:53 +00:00
|
|
|
suggestions: response.suggestions.map((i) => ({
|
2022-12-12 20:13:39 +00:00
|
|
|
value: i.text,
|
|
|
|
data: i.magicKey,
|
|
|
|
})),
|
|
|
|
}),
|
2022-11-22 16:45:17 +00:00
|
|
|
minChars: 3,
|
|
|
|
showNoSuggestionNotice: true,
|
|
|
|
noSuggestionNotice: 'No results found. Please try a different search string.',
|
|
|
|
onSelect(suggestion) { autocompleteOnSelect(suggestion, this); },
|
|
|
|
width: 490,
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#frmGetLatLng').on('submit', () => {
|
2022-12-12 20:47:53 +00:00
|
|
|
const ac = $('#frmGetLatLng #txtAddress').devbridgeAutocomplete();
|
|
|
|
if (ac.suggestions[0]) $(ac.suggestionsContainer.children[0]).trigger('click');
|
2022-11-22 16:45:17 +00:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Auto load the previous query
|
2022-12-12 20:47:53 +00:00
|
|
|
const query = localStorage.getItem('latLonQuery');
|
|
|
|
const latLon = localStorage.getItem('latLonLon');
|
|
|
|
if (query && latLon) {
|
2022-11-22 16:45:17 +00:00
|
|
|
const txtAddress = document.getElementById('txtAddress');
|
2022-12-12 20:47:53 +00:00
|
|
|
txtAddress.value = query;
|
|
|
|
loadData(JSON.parse(latLon));
|
2022-11-22 16:45:17 +00:00
|
|
|
}
|
|
|
|
|
2022-12-12 20:47:53 +00:00
|
|
|
const twcPlay = localStorage.getItem('play');
|
|
|
|
if (twcPlay === null || twcPlay === 'true') postMessage('navButton', 'play');
|
2022-11-22 16:45:17 +00:00
|
|
|
|
|
|
|
document.getElementById('btnClearQuery').addEventListener('click', () => {
|
|
|
|
document.getElementById('spanCity').innerHTML = '';
|
|
|
|
document.getElementById('spanState').innerHTML = '';
|
|
|
|
document.getElementById('spanStationId').innerHTML = '';
|
|
|
|
document.getElementById('spanRadarId').innerHTML = '';
|
|
|
|
document.getElementById('spanZoneId').innerHTML = '';
|
|
|
|
|
|
|
|
document.getElementById('chkAutoRefresh').checked = true;
|
2022-12-12 20:47:53 +00:00
|
|
|
localStorage.removeItem('autoRefresh');
|
2022-11-22 16:45:17 +00:00
|
|
|
|
2022-12-12 20:47:53 +00:00
|
|
|
localStorage.removeItem('play');
|
2022-11-22 16:45:17 +00:00
|
|
|
postMessage('navButton', 'play');
|
|
|
|
|
2022-12-12 20:47:53 +00:00
|
|
|
localStorage.removeItem('latLonQuery');
|
|
|
|
localStorage.removeItem('latLonLon');
|
2022-11-22 16:45:17 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// swipe functionality
|
|
|
|
document.getElementById('container').addEventListener('swiped-left', () => swipeCallBack('left'));
|
|
|
|
document.getElementById('container').addEventListener('swiped-right', () => swipeCallBack('right'));
|
|
|
|
};
|
|
|
|
|
|
|
|
const autocompleteOnSelect = async (suggestion, elem) => {
|
|
|
|
// Do not auto get the same city twice.
|
|
|
|
if (elem.previousSuggestionValue === suggestion.value) return;
|
|
|
|
|
2022-12-12 20:13:39 +00:00
|
|
|
const data = await json('https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/find', {
|
|
|
|
data: {
|
|
|
|
text: suggestion.value,
|
|
|
|
magicKey: suggestion.data,
|
|
|
|
f: 'json',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const loc = data.locations[0];
|
|
|
|
if (loc) {
|
|
|
|
doRedirectToGeometry(loc.feature.geometry);
|
2022-11-22 16:45:17 +00:00
|
|
|
} else {
|
2022-12-12 20:13:39 +00:00
|
|
|
console.error('An unexpected error occurred. Please try a different search string.');
|
2022-11-22 16:45:17 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const doRedirectToGeometry = (geom) => {
|
2022-12-12 20:47:53 +00:00
|
|
|
const latLon = { lat: round2(geom.y, 4), lon: round2(geom.x, 4) };
|
2022-11-22 16:45:17 +00:00
|
|
|
// Save the query
|
2022-12-12 20:47:53 +00:00
|
|
|
localStorage.setItem('latLonQuery', document.getElementById('txtAddress').value);
|
|
|
|
localStorage.setItem('latLonLon', JSON.stringify(latLon));
|
2022-12-12 20:13:39 +00:00
|
|
|
|
|
|
|
// get the data
|
2022-12-12 20:47:53 +00:00
|
|
|
loadData(latLon);
|
2022-11-22 16:45:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const btnFullScreenClick = () => {
|
|
|
|
if (!document.fullscreenElement) {
|
2022-12-12 20:47:53 +00:00
|
|
|
enterFullScreen();
|
2022-11-22 16:45:17 +00:00
|
|
|
} else {
|
2022-12-12 20:47:53 +00:00
|
|
|
exitFullscreen();
|
2022-11-22 16:45:17 +00:00
|
|
|
}
|
|
|
|
|
2022-12-06 22:14:56 +00:00
|
|
|
if (isPlaying()) {
|
2022-11-22 16:45:17 +00:00
|
|
|
noSleep(true);
|
|
|
|
} else {
|
|
|
|
noSleep(false);
|
|
|
|
}
|
|
|
|
|
2022-12-12 20:47:53 +00:00
|
|
|
updateFullScreenNavigate();
|
2022-11-22 16:45:17 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2022-12-12 20:47:53 +00:00
|
|
|
const enterFullScreen = () => {
|
2022-11-22 16:45:17 +00:00
|
|
|
const element = document.getElementById('divTwc');
|
|
|
|
|
|
|
|
// Supports most browsers and their versions.
|
|
|
|
const requestMethod = element.requestFullScreen || element.webkitRequestFullScreen
|
|
|
|
|| element.mozRequestFullScreen || element.msRequestFullscreen;
|
|
|
|
|
|
|
|
if (requestMethod) {
|
|
|
|
// Native full screen.
|
|
|
|
requestMethod.call(element, { navigationUI: 'hide' }); // https://bugs.chromium.org/p/chromium/issues/detail?id=933436#c7
|
|
|
|
} else {
|
|
|
|
// iOS doesn't support FullScreen API.
|
|
|
|
window.scrollTo(0, 0);
|
2022-12-12 20:47:53 +00:00
|
|
|
fullScreenOverride = true;
|
2022-11-22 16:45:17 +00:00
|
|
|
}
|
2022-12-06 22:14:56 +00:00
|
|
|
resize();
|
2022-12-12 20:47:53 +00:00
|
|
|
updateFullScreenNavigate();
|
2022-11-22 16:45:17 +00:00
|
|
|
|
2022-12-07 21:36:02 +00:00
|
|
|
// change hover text and image
|
|
|
|
const img = document.getElementById('ToggleFullScreen');
|
|
|
|
img.src = 'images/nav/ic_fullscreen_exit_white_24dp_1x.png';
|
|
|
|
img.title = 'Exit fullscreen';
|
2022-11-22 16:45:17 +00:00
|
|
|
};
|
|
|
|
|
2022-12-12 20:47:53 +00:00
|
|
|
const exitFullscreen = () => {
|
2022-11-22 16:45:17 +00:00
|
|
|
// exit full-screen
|
|
|
|
|
2022-12-12 20:47:53 +00:00
|
|
|
if (fullScreenOverride) {
|
|
|
|
fullScreenOverride = false;
|
2022-11-22 16:45:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (document.exitFullscreen) {
|
|
|
|
// Chrome 71 broke this if the user pressed F11 to enter full screen mode.
|
|
|
|
document.exitFullscreen();
|
|
|
|
} else if (document.webkitExitFullscreen) {
|
|
|
|
document.webkitExitFullscreen();
|
|
|
|
} else if (document.mozCancelFullScreen) {
|
|
|
|
document.mozCancelFullScreen();
|
|
|
|
} else if (document.msExitFullscreen) {
|
|
|
|
document.msExitFullscreen();
|
|
|
|
}
|
2022-12-06 22:14:56 +00:00
|
|
|
resize();
|
2022-12-07 21:36:02 +00:00
|
|
|
// change hover text and image
|
|
|
|
const img = document.getElementById('ToggleFullScreen');
|
|
|
|
img.src = 'images/nav/ic_fullscreen_white_24dp_1x.png';
|
|
|
|
img.title = 'Enter fullscreen';
|
2022-11-22 16:45:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const btnNavigateMenuClick = () => {
|
|
|
|
postMessage('navButton', 'menu');
|
2022-12-12 20:47:53 +00:00
|
|
|
updateFullScreenNavigate();
|
2022-11-22 16:45:17 +00:00
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2022-12-12 20:47:53 +00:00
|
|
|
const loadData = (_latLon) => {
|
2022-11-22 16:45:17 +00:00
|
|
|
// if latlon is provided store it locally
|
2022-12-12 20:47:53 +00:00
|
|
|
if (_latLon) loadData.latLon = _latLon;
|
2022-11-22 16:45:17 +00:00
|
|
|
// get the data
|
2022-12-12 20:47:53 +00:00
|
|
|
const { latLon } = loadData;
|
2022-11-22 16:45:17 +00:00
|
|
|
// if there's no data stop
|
|
|
|
if (!latLon) return;
|
|
|
|
|
|
|
|
document.getElementById('txtAddress').blur();
|
2022-12-06 22:14:56 +00:00
|
|
|
stopAutoRefreshTimer();
|
|
|
|
latLonReceived(latLon);
|
2022-11-22 16:45:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const swipeCallBack = (direction) => {
|
|
|
|
switch (direction) {
|
|
|
|
case 'left':
|
|
|
|
btnNavigateNextClick();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'right':
|
|
|
|
default:
|
|
|
|
btnNavigatePreviousClick();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const btnNavigateRefreshClick = () => {
|
2022-12-06 22:14:56 +00:00
|
|
|
resetStatuses();
|
2022-12-12 20:47:53 +00:00
|
|
|
loadData();
|
|
|
|
updateFullScreenNavigate();
|
2022-11-22 16:45:17 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
const btnNavigateNextClick = () => {
|
|
|
|
postMessage('navButton', 'next');
|
2022-12-12 20:47:53 +00:00
|
|
|
updateFullScreenNavigate();
|
2022-11-22 16:45:17 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
const btnNavigatePreviousClick = () => {
|
|
|
|
postMessage('navButton', 'previous');
|
2022-12-12 20:47:53 +00:00
|
|
|
updateFullScreenNavigate();
|
2022-11-22 16:45:17 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2022-12-12 20:47:53 +00:00
|
|
|
let navigateFadeIntervalId = null;
|
2022-11-22 16:45:17 +00:00
|
|
|
|
2022-12-12 20:47:53 +00:00
|
|
|
const updateFullScreenNavigate = () => {
|
2022-11-22 16:45:17 +00:00
|
|
|
document.activeElement.blur();
|
|
|
|
document.getElementById('divTwcBottom').classList.remove('hidden');
|
|
|
|
document.getElementById('divTwcBottom').classList.add('visible');
|
|
|
|
|
2022-12-12 20:47:53 +00:00
|
|
|
if (navigateFadeIntervalId) {
|
|
|
|
clearTimeout(navigateFadeIntervalId);
|
|
|
|
navigateFadeIntervalId = null;
|
2022-11-22 16:45:17 +00:00
|
|
|
}
|
|
|
|
|
2022-12-12 20:47:53 +00:00
|
|
|
navigateFadeIntervalId = setTimeout(() => {
|
2022-11-22 16:45:17 +00:00
|
|
|
if (document.fullscreenElement) {
|
|
|
|
document.getElementById('divTwcBottom').classList.remove('visible');
|
|
|
|
document.getElementById('divTwcBottom').classList.add('hidden');
|
|
|
|
}
|
|
|
|
}, 2000);
|
|
|
|
};
|
|
|
|
|
|
|
|
const documentKeydown = (e) => {
|
|
|
|
const code = (e.keyCode || e.which);
|
|
|
|
|
|
|
|
// 200ms repeat
|
|
|
|
if ((Date.now() - documentKeydown.lastButton ?? 0) < 200) return false;
|
|
|
|
documentKeydown.lastButton = Date.now();
|
|
|
|
|
|
|
|
if (document.fullscreenElement || document.activeElement === document.body) {
|
|
|
|
switch (code) {
|
|
|
|
case 32: // Space
|
|
|
|
btnNavigatePlayClick();
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case 39: // Right Arrow
|
|
|
|
case 34: // Page Down
|
|
|
|
btnNavigateNextClick();
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case 37: // Left Arrow
|
|
|
|
case 33: // Page Up
|
|
|
|
btnNavigatePreviousClick();
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case 36: // Home
|
|
|
|
btnNavigateMenuClick();
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case 48: // Restart
|
|
|
|
btnNavigateRefreshClick();
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case 70: // F
|
|
|
|
btnFullScreenClick();
|
|
|
|
return false;
|
|
|
|
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
const btnNavigatePlayClick = () => {
|
|
|
|
postMessage('navButton', 'playToggle');
|
2022-12-12 20:47:53 +00:00
|
|
|
updateFullScreenNavigate();
|
2022-11-22 16:45:17 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
// post a message to the iframe
|
|
|
|
const postMessage = (type, myMessage = {}) => {
|
2022-12-06 22:14:56 +00:00
|
|
|
navMessage({ type, message: myMessage });
|
2022-11-22 16:45:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const btnGetGpsClick = async () => {
|
|
|
|
if (!navigator.geolocation) return;
|
|
|
|
|
|
|
|
const position = await (() => new Promise((resolve) => {
|
|
|
|
navigator.geolocation.getCurrentPosition(resolve);
|
|
|
|
}))();
|
|
|
|
const { latitude, longitude } = position.coords;
|
|
|
|
|
|
|
|
let data;
|
|
|
|
try {
|
2022-11-22 22:19:10 +00:00
|
|
|
data = await json('https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/reverseGeocode', {
|
2022-11-22 16:45:17 +00:00
|
|
|
data: {
|
|
|
|
location: `${longitude},${latitude}`,
|
|
|
|
distance: 1000, // Find location up to 1 KM.
|
|
|
|
f: 'json',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
console.error('Unable to fetch reverse geocode');
|
|
|
|
console.error(e.status, e.responseJSONe);
|
|
|
|
}
|
|
|
|
const ZipCode = data.address.Postal;
|
|
|
|
const { City } = data.address;
|
|
|
|
const State = states.getTwoDigitCode(data.address.Region);
|
|
|
|
const Country = data.address.CountryCode;
|
2022-12-12 20:47:53 +00:00
|
|
|
const query = `${ZipCode}, ${City}, ${State}, ${Country}`;
|
2022-11-22 16:45:17 +00:00
|
|
|
|
|
|
|
const txtAddress = document.getElementById('txtAddress');
|
2022-12-12 20:47:53 +00:00
|
|
|
txtAddress.value = query;
|
2022-11-22 16:45:17 +00:00
|
|
|
txtAddress.blur();
|
|
|
|
txtAddress.focus();
|
|
|
|
|
|
|
|
// Save the query
|
2022-12-12 20:47:53 +00:00
|
|
|
localStorage.setItem('latLonQuery', query);
|
2022-11-22 16:45:17 +00:00
|
|
|
};
|