Merged in feature/MAPG-29-draw-line-on-result-map (pull request #21)
MAPG-29 draw line between the real and guess position on result map
This commit is contained in:
commit
848c155c62
@ -9,6 +9,7 @@
|
|||||||
guessMarker: null,
|
guessMarker: null,
|
||||||
resultMap: null,
|
resultMap: null,
|
||||||
resultMarkers: { guess: null, real: null },
|
resultMarkers: { guess: null, real: null },
|
||||||
|
resultLine: null,
|
||||||
googleLink: null,
|
googleLink: null,
|
||||||
|
|
||||||
getNewPosition: function () {
|
getNewPosition: function () {
|
||||||
@ -51,7 +52,7 @@
|
|||||||
calculateScore: function (distance) {
|
calculateScore: function (distance) {
|
||||||
var goodness = 1.0 - distance / Math.sqrt(mapArea);
|
var goodness = 1.0 - distance / Math.sqrt(mapArea);
|
||||||
|
|
||||||
return Math.pow(Core.MAX_SCORE, goodness);
|
return Math.round(Math.pow(Core.MAX_SCORE, goodness));
|
||||||
},
|
},
|
||||||
|
|
||||||
calculateScoreBarProperties: function (score) {
|
calculateScoreBarProperties: function (score) {
|
||||||
@ -181,6 +182,48 @@
|
|||||||
clickableIcons: false,
|
clickableIcons: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Core.resultMarkers.real = new google.maps.Marker({
|
||||||
|
map: Core.resultMap,
|
||||||
|
clickable: true,
|
||||||
|
draggable: false
|
||||||
|
});
|
||||||
|
|
||||||
|
Core.resultMarkers.real.addListener('click', function () {
|
||||||
|
window.open('https://www.google.com/maps/search/?api=1&query=' + this.getPosition().lat() + ',' + this.getPosition().lng(), '_blank');
|
||||||
|
});
|
||||||
|
|
||||||
|
Core.resultMarkers.guess = new google.maps.Marker({
|
||||||
|
map: Core.resultMap,
|
||||||
|
clickable: false,
|
||||||
|
draggable: false,
|
||||||
|
label: {
|
||||||
|
color: '#ffffff',
|
||||||
|
fontFamily: 'Roboto',
|
||||||
|
fontSize: '18px',
|
||||||
|
fontWeight: '500',
|
||||||
|
text: '?'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
Core.resultLine = new google.maps.Polyline({
|
||||||
|
map: Core.resultMap,
|
||||||
|
geodesic: true,
|
||||||
|
strokeOpacity: 0,
|
||||||
|
icons: [{
|
||||||
|
icon: {
|
||||||
|
path: 'M 0,-1 0,1',
|
||||||
|
strokeOpacity: 1,
|
||||||
|
strokeWeight: 2,
|
||||||
|
scale: 2
|
||||||
|
},
|
||||||
|
offset: '0',
|
||||||
|
repeat: '10px'
|
||||||
|
}],
|
||||||
|
clickable: false,
|
||||||
|
draggable: false,
|
||||||
|
editable: false
|
||||||
|
});
|
||||||
|
|
||||||
Core.getNewPosition();
|
Core.getNewPosition();
|
||||||
|
|
||||||
document.getElementById('showGuessButton').onclick = function () {
|
document.getElementById('showGuessButton').onclick = function () {
|
||||||
@ -215,36 +258,20 @@
|
|||||||
|
|
||||||
Core.resultMap.fitBounds(resultBounds);
|
Core.resultMap.fitBounds(resultBounds);
|
||||||
|
|
||||||
Core.resultMarkers.real = new google.maps.Marker({
|
Core.resultMarkers.real.setPosition(Core.realPosition);
|
||||||
map: Core.resultMap,
|
Core.resultMarkers.guess.setPosition(guessedPosition);
|
||||||
position: Core.realPosition,
|
|
||||||
clickable: true,
|
|
||||||
draggable: false
|
|
||||||
});
|
|
||||||
Core.resultMarkers.guess = new google.maps.Marker({
|
|
||||||
map: Core.resultMap,
|
|
||||||
position: guessedPosition,
|
|
||||||
clickable: false,
|
|
||||||
draggable: false,
|
|
||||||
label: {
|
|
||||||
color: '#ffffff',
|
|
||||||
fontFamily: 'Roboto',
|
|
||||||
fontSize: '18px',
|
|
||||||
fontWeight: '500',
|
|
||||||
text: '?'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Core.resultMarkers.real.addListener('click', function () {
|
Core.resultLine.setPath([
|
||||||
window.open('https://www.google.com/maps/search/?api=1&query=' + Core.realPosition.lat + ',' + Core.realPosition.lng, '_blank');
|
Core.realPosition,
|
||||||
});
|
guessedPosition
|
||||||
|
]);
|
||||||
|
|
||||||
document.getElementById('distance').innerHTML = Util.printDistanceForHuman(distance);
|
document.getElementById('distance').innerHTML = Util.printDistanceForHuman(distance);
|
||||||
|
|
||||||
var score = Core.calculateScore(distance);
|
var score = Core.calculateScore(distance);
|
||||||
var scoreBarProperties = Core.calculateScoreBarProperties(score);
|
var scoreBarProperties = Core.calculateScoreBarProperties(score);
|
||||||
|
|
||||||
document.getElementById('score').innerHTML = Number.parseFloat(score).toFixed(0);
|
document.getElementById('score').innerHTML = score;
|
||||||
|
|
||||||
var scoreBar = document.getElementById('scoreBar');
|
var scoreBar = document.getElementById('scoreBar');
|
||||||
scoreBar.style.backgroundColor = scoreBarProperties.backgroundColor;
|
scoreBar.style.backgroundColor = scoreBarProperties.backgroundColor;
|
||||||
@ -254,11 +281,6 @@
|
|||||||
document.getElementById('continueButton').onclick = function () {
|
document.getElementById('continueButton').onclick = function () {
|
||||||
document.getElementById('scoreBar').style.width = null;
|
document.getElementById('scoreBar').style.width = null;
|
||||||
|
|
||||||
Core.resultMarkers.real.setMap(null);
|
|
||||||
Core.resultMarkers.real = null;
|
|
||||||
Core.resultMarkers.guess.setMap(null);
|
|
||||||
Core.resultMarkers.guess = null;
|
|
||||||
|
|
||||||
if (Core.adaptGuess) {
|
if (Core.adaptGuess) {
|
||||||
document.getElementById('guess').classList.remove('adapt');
|
document.getElementById('guess').classList.remove('adapt');
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user