add OpenGeoServer Aerial, correct annotations for other sources
[lantea.git] / js / map.js
CommitLineData
a7393a71
RK
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
23cd2dcc 4
4b12da3a 5var gCanvas, gContext, gGeolocation;
a6b11e47 6var gDebug = false;
23cd2dcc
RK
7
8var gTileSize = 256;
9var gMaxZoom = 18; // The minimum is 0.
10
b47b4a65
RK
11var gMapStyles = {
12 // OSM tile usage policy: http://wiki.openstreetmap.org/wiki/Tile_usage_policy
55c4a0b7 13 // Find some more OSM ones at http://wiki.openstreetmap.org/wiki/Slippy_map_tilenames#Tile_servers
b47b4a65
RK
14 osm_mapnik:
15 {name: "OpenStreetMap (Mapnik)",
16 url: "http://tile.openstreetmap.org/{z}/{x}/{y}.png",
5a19ec68 17 copyright: 'Map data and imagery &copy; <a href="http://www.openstreetmap.org/">OpenStreetMap</a> contributors, <a href="http://www.openstreetmap.org/copyright">ODbL/CC-BY-SA</a>'},
14e6d3ad
RK
18 osm_cyclemap:
19 {name: "Cycle Map (OSM)",
20 url: "http://[a-c].tile.opencyclemap.org/cycle/{z}/{x}/{y}.png",
5a19ec68 21 copyright: 'Map data and imagery &copy; <a href="http://www.openstreetmap.org/">OpenStreetMap</a> contributors, <a href="http://www.openstreetmap.org/copyright">ODbL/CC-BY-SA</a>'},
14e6d3ad
RK
22 osm_transmap:
23 {name: "Transport Map (OSM)",
24 url: "http://[a-c].tile2.opencyclemap.org/transport/{z}/{x}/{y}.png",
5a19ec68 25 copyright: 'Map data and imagery &copy; <a href="http://www.openstreetmap.org/">OpenStreetMap</a> contributors, <a href="http://www.openstreetmap.org/copyright">ODbL/CC-BY-SA</a>'},
b47b4a65 26 mapquest_open:
55c4a0b7 27 {name: "MapQuest OSM",
5a19ec68
RK
28 url: "http://otile[1-4].mqcdn.com/tiles/1.0.0/osm/{z}/{x}/{y}.png",
29 copyright: 'Map data &copy; <a href="http://www.openstreetmap.org/">OpenStreetMap</a> and contributors (<a href="http://www.openstreetmap.org/copyright">ODbL/CC-BY-SA</a>), tiles Courtesy of <a href="http://www.mapquest.com/">MapQuest</a>.'},
55c4a0b7
RK
30 mapquest_aerial:
31 {name: "MapQuest Open Aerial",
5a19ec68
RK
32 url: "http://oatile[1-4].mqcdn.com/tiles/1.0.0/sat/{z}/{x}/{y}.jpg",
33 copyright: 'Tiles Courtesy of <a href="http://www.mapquest.com/">MapQuest</a>, portions Courtesy NASA/JPL-Caltech and U.S. Depart. of Agriculture, Farm Service Agency.'},
34 opengeoserver_arial:
35 {name: "OpenGeoServer Aerial",
36 url: "http://services.opengeoserver.org/tiles/1.0.0/globe.aerial_EPSG3857/{z}/{x}/{y}.png?origin=nw",
37 copyright: 'Tiles by <a href="http://www.opengeoserver.org/">OpenGeoServer.org</a>, <a href="https://creativecommons.org/licenses/by/3.0/at/">CC-BY 3.0 AT</a>.'},
55c4a0b7
RK
38 google_map:
39 {name: "Google Maps",
40 url: " http://mt1.google.com/vt/x={x}&y={y}&z={z}",
41 copyright: 'Map data and imagery &copy; <a href="http://maps.google.com/">Google</a>'},
b47b4a65
RK
42};
43var gActiveMap = "osm_mapnik";
23cd2dcc
RK
44
45var gPos = {x: 35630000.0, // Current position in the map in pixels at the maximum zoom level (18)
46 y: 23670000.0, // The range is 0-67108864 (2^gMaxZoom * gTileSize)
b395419b 47 z: 5}; // This could be fractional if supported being between zoom levels.
23cd2dcc
RK
48
49var gLastMouseX = 0;
50var gLastMouseY = 0;
b395419b 51var gZoomFactor;
23cd2dcc 52
3610c22d
RK
53// Used as an associative array.
54// The keys have to be strings, ours will be "xindex,yindex,zindex" e.g. "13,245,12".
23cd2dcc 55var gTiles = {};
b395419b 56var gLoadingTile;
23cd2dcc 57
3610c22d
RK
58var gMapPrefsLoaded = false;
59
23cd2dcc 60var gDragging = false;
4b12da3a 61var gDragTouchID;
23cd2dcc 62
55c4a0b7
RK
63var gGeoWatchID;
64var gTrack = [];
14e6d3ad 65var gLastTrackPoint, gLastDrawnPoint;
05c21757 66var gCenterPosition = true;
55c4a0b7 67
b47b4a65 68function initMap() {
4b12da3a 69 gGeolocation = navigator.geolocation;
23cd2dcc
RK
70 gCanvas = document.getElementById("map");
71 gContext = gCanvas.getContext("2d");
b47b4a65
RK
72 if (!gActiveMap)
73 gActiveMap = "osm_mapnik";
23cd2dcc 74
4b12da3a
RK
75 //gDebug = true;
76 if (gDebug) {
77 gGeolocation = geofake;
78 var hiddenList = document.getElementsByClassName("debugHide");
79 // last to first - list of elements with that class is changing!
80 for (var i = hiddenList.length - 1; i >= 0; i--) {
81 hiddenList[i].classList.remove("debugHide");
82 }
83 }
84
3610c22d
RK
85 var loopCnt = 0;
86 var getPersistentPrefs = function() {
87 if (mainDB) {
88 gPrefs.get("position", function(aValue) {
89 if (aValue) {
90 gPos = aValue;
91 drawMap();
92 }
93 });
94 gPrefs.get("center_map", function(aValue) {
95 if (aValue === undefined)
96 document.getElementById("centerCheckbox").checked = true;
97 else
98 document.getElementById("centerCheckbox").checked = aValue;
99 setCentering(document.getElementById("centerCheckbox"));
100 });
101 gPrefs.get("tracking_enabled", function(aValue) {
102 if (aValue === undefined)
103 document.getElementById("trackCheckbox").checked = true;
104 else
105 document.getElementById("trackCheckbox").checked = aValue;
106 setTracking(document.getElementById("trackCheckbox"));
107 });
108 gMapPrefsLoaded = true;
109 }
110 else
111 setTimeout(getPersistentPrefs, 100);
112 loopCnt++;
113 if (loopCnt > 20) {
114 gMapPrefsLoaded = true;
115 return;
116 }
117 };
118 getPersistentPrefs();
119
23cd2dcc
RK
120 gCanvas.addEventListener("mouseup", mapEvHandler, false);
121 gCanvas.addEventListener("mousemove", mapEvHandler, false);
122 gCanvas.addEventListener("mousedown", mapEvHandler, false);
123 gCanvas.addEventListener("mouseout", mapEvHandler, false);
124
125 gCanvas.addEventListener("touchstart", mapEvHandler, false);
126 gCanvas.addEventListener("touchmove", mapEvHandler, false);
127 gCanvas.addEventListener("touchend", mapEvHandler, false);
128 gCanvas.addEventListener("touchcancel", mapEvHandler, false);
129 gCanvas.addEventListener("touchleave", mapEvHandler, false);
130
6de10e15 131 // XXX deprecated? see https://groups.google.com/forum/?fromgroups#!topic/mozilla.dev.planning/kuhrORubaRY[1-25]
23cd2dcc
RK
132 gCanvas.addEventListener("DOMMouseScroll", mapEvHandler, false);
133 gCanvas.addEventListener("mousewheel", mapEvHandler, false);
134
b47b4a65
RK
135 document.getElementById("copyright").innerHTML =
136 gMapStyles[gActiveMap].copyright;
b395419b
RK
137
138 gLoadingTile = new Image();
139 gLoadingTile.src = "style/loading.png";
23cd2dcc
RK
140}
141
142function resizeAndDraw() {
321359cd
RK
143 var viewportWidth = Math.min(window.innerWidth, window.outerWidth);
144 var viewportHeight = Math.min(window.innerHeight, window.outerHeight);
23cd2dcc 145
6b1e7340
RK
146 var canvasWidth = viewportWidth - 2;
147 var canvasHeight = viewportHeight - 2;
23cd2dcc
RK
148 gCanvas.style.position = "fixed";
149 gCanvas.width = canvasWidth;
150 gCanvas.height = canvasHeight;
151 drawMap();
7a549148 152 showUI();
23cd2dcc
RK
153}
154
155function zoomIn() {
156 if (gPos.z < gMaxZoom) {
157 gPos.z++;
158 drawMap();
159 }
160}
161
162function zoomOut() {
163 if (gPos.z > 0) {
164 gPos.z--;
165 drawMap();
166 }
167}
168
55c4a0b7
RK
169function gps2xy(aLatitude, aLongitude) {
170 var maxZoomFactor = Math.pow(2, gMaxZoom) * gTileSize;
171 var convLat = aLatitude * Math.PI / 180;
172 var rawY = (1 - Math.log(Math.tan(convLat) +
173 1 / Math.cos(convLat)) / Math.PI) / 2 * maxZoomFactor;
174 var rawX = (aLongitude + 180) / 360 * maxZoomFactor;
175 return {x: Math.round(rawX),
176 y: Math.round(rawY)};
177}
178
179function xy2gps(aX, aY) {
180 var maxZoomFactor = Math.pow(2, gMaxZoom) * gTileSize;
181 var n = Math.PI - 2 * Math.PI * aY / maxZoomFactor;
182 return {latitude: 180 / Math.PI *
183 Math.atan(0.5 * (Math.exp(n) - Math.exp(-n))),
184 longitude: aX / maxZoomFactor * 360 - 180};
185}
186
b47b4a65
RK
187function setMapStyle() {
188 var mapSel = document.getElementById("mapSelector");
189 if (mapSel.selectedIndex >= 0 && gActiveMap != mapSel.value) {
190 gActiveMap = mapSel.value;
191 gTiles = {};
95f49ba7
RK
192 document.getElementById("copyright").innerHTML =
193 gMapStyles[gActiveMap].copyright;
b5c85133 194 showUI();
b47b4a65
RK
195 drawMap();
196 }
197}
198
23cd2dcc
RK
199// A sane mod function that works for negative numbers.
200// Returns a % b.
201function mod(a, b) {
202 return ((a % b) + b) % b;
203}
204
205function normaliseIndices(x, y, z) {
b395419b
RK
206 var zoomFactor = Math.pow(2, z);
207 return {x: mod(x, zoomFactor),
208 y: mod(y, zoomFactor),
23cd2dcc
RK
209 z: z};
210}
211
212function tileURL(x, y, z) {
213 var norm = normaliseIndices(x, y, z);
14e6d3ad
RK
214 return gMapStyles[gActiveMap].url
215 .replace("{x}", norm.x)
216 .replace("{y}", norm.y)
217 .replace("{z}", norm.z)
5a19ec68
RK
218 .replace("[a-c]", String.fromCharCode(97 + Math.floor(Math.random() * 2)))
219 .replace("[1-4]", 1 + Math.floor(Math.random() * 3));
23cd2dcc
RK
220}
221
222// Returns true if the tile is outside the current view.
223function isOutsideWindow(t) {
224 var pos = decodeIndex(t);
225 var x = pos[0];
226 var y = pos[1];
227 var z = pos[2];
228
b395419b
RK
229 var zoomFactor = Math.pow(2, gMaxZoom - z);
230 var wid = gCanvas.width * zoomFactor;
231 var ht = gCanvas.height * zoomFactor;
23cd2dcc 232
b395419b
RK
233 x *= zoomFactor;
234 y *= zoomFactor;
23cd2dcc 235
b395419b 236 var sz = gTileSize * zoomFactor;
23cd2dcc
RK
237 if (x > gPos.x + wid / 2 || y > gPos.y + ht / 2 ||
238 x + sz < gPos.x - wid / 2 || y - sz < gPos.y - ht / 2)
239 return true;
240 return false;
241}
242
243function encodeIndex(x, y, z) {
244 var norm = normaliseIndices(x, y, z);
245 return norm.x + "," + norm.y + "," + norm.z;
246}
247
248function decodeIndex(encodedIdx) {
249 return encodedIdx.split(",", 3);
250}
251
252function drawMap() {
253 // Go through all the currently loaded tiles. If we don't want any of them remove them.
254 // for (t in gTiles) {
255 // if (isOutsideWindow(t))
256 // delete gTiles[t];
257 // }
b395419b
RK
258 document.getElementById("zoomLevel").textContent = gPos.z;
259 gZoomFactor = Math.pow(2, gMaxZoom - gPos.z);
260 var wid = gCanvas.width * gZoomFactor; // Width in level 18 pixels.
261 var ht = gCanvas.height * gZoomFactor; // Height in level 18 pixels.
262 var size = gTileSize * gZoomFactor; // Tile size in level 18 pixels.
23cd2dcc
RK
263
264 var xMin = gPos.x - wid / 2; // Corners of the window in level 18 pixels.
265 var yMin = gPos.y - ht / 2;
266 var xMax = gPos.x + wid / 2;
267 var yMax = gPos.y + ht / 2;
268
3610c22d
RK
269 if (gMapPrefsLoaded && mainDB)
270 gPrefs.set("position", gPos);
271
272 // Go through all the tiles we want.
273 // If any of them aren't loaded or being loaded, do so.
b47b4a65 274 for (var x = Math.floor(xMin / size); x < Math.ceil(xMax / size); x++) {
0118cbd3 275 for (var y = Math.floor(yMin / size); y < Math.ceil(yMax / size); y++) { // slow script warnings on the tablet appear here!
b395419b
RK
276 var xoff = (x * size - xMin) / gZoomFactor;
277 var yoff = (y * size - yMin) / gZoomFactor;
278 var tileKey = encodeIndex(x, y, gPos.z);
23cd2dcc 279 if (gTiles[tileKey] && gTiles[tileKey].complete) {
3610c22d
RK
280 // Round here is **CRUCIAL** otherwise the images are filtered
281 // and the performance sucks (more than expected).
23cd2dcc
RK
282 gContext.drawImage(gTiles[tileKey], Math.round(xoff), Math.round(yoff));
283 }
284 else {
285 if (!gTiles[tileKey]) {
286 gTiles[tileKey] = new Image();
287 gTiles[tileKey].src = tileURL(x, y, gPos.z);
288 gTiles[tileKey].onload = function() {
289 // TODO: Just render this tile where it should be.
290 // context.drawImage(gTiles[tileKey], Math.round(xoff), Math.round(yoff)); // Doesn't work for some reason.
291 drawMap();
292 }
293 }
b395419b 294 gContext.drawImage(gLoadingTile, Math.round(xoff), Math.round(yoff));
23cd2dcc
RK
295 }
296 }
297 }
14e6d3ad
RK
298 if (gTrack.length) {
299 gLastDrawnPoint = null;
55c4a0b7 300 for (var i = 0; i < gTrack.length; i++) {
14e6d3ad
RK
301 drawTrackPoint(gTrack[i].coords.latitude, gTrack[i].coords.longitude,
302 (i + 1 >= gTrack.length));
55c4a0b7 303 }
14e6d3ad 304 }
55c4a0b7
RK
305}
306
14e6d3ad 307function drawTrackPoint(aLatitude, aLongitude, lastPoint) {
55c4a0b7 308 var trackpoint = gps2xy(aLatitude, aLongitude);
14e6d3ad
RK
309 // lastPoint is for optimizing (not actually executing the draw until the last)
310 trackpoint.optimized = (lastPoint === false);
311
312 if (!gLastDrawnPoint || !gLastDrawnPoint.optimized) {
313 gContext.strokeStyle = "#FF0000";
314 gContext.fillStyle = gContext.strokeStyle;
315 gContext.lineWidth = 2;
316 gContext.lineCap = "round";
317 gContext.lineJoin = "round";
318 }
319 if (!gLastDrawnPoint || gLastDrawnPoint == trackpoint) {
320 // This breaks optimiziation, so make sure to close path and reset optimization.
321 if (gLastDrawnPoint && gLastDrawnPoint.optimized)
322 gContext.stroke();
323 gContext.beginPath();
324 trackpoint.optimized = false;
325 gContext.arc(Math.round((trackpoint.x - gPos.x) / gZoomFactor + gCanvas.width / 2),
326 Math.round((trackpoint.y - gPos.y) / gZoomFactor + gCanvas.height / 2),
55c4a0b7
RK
327 gContext.lineWidth, 0, Math.PI * 2, false);
328 gContext.fill();
329 }
330 else {
14e6d3ad
RK
331 if (!gLastDrawnPoint || !gLastDrawnPoint.optimized) {
332 gContext.beginPath();
333 gContext.moveTo(Math.round((gLastDrawnPoint.x - gPos.x) / gZoomFactor + gCanvas.width / 2),
334 Math.round((gLastDrawnPoint.y - gPos.y) / gZoomFactor + gCanvas.height / 2));
335 }
336 gContext.lineTo(Math.round((trackpoint.x - gPos.x) / gZoomFactor + gCanvas.width / 2),
337 Math.round((trackpoint.y - gPos.y) / gZoomFactor + gCanvas.height / 2));
338 if (!trackpoint.optimized)
339 gContext.stroke();
55c4a0b7 340 }
14e6d3ad 341 gLastDrawnPoint = trackpoint;
23cd2dcc
RK
342}
343
344var mapEvHandler = {
345 handleEvent: function(aEvent) {
346 var touchEvent = aEvent.type.indexOf('touch') != -1;
347
b395419b 348 // Bail out on unwanted map moves, but not zoom-changing events.
23cd2dcc
RK
349 if (aEvent.type != "DOMMouseScroll" && aEvent.type != "mousewheel") {
350 // Bail out if this is neither a touch nor left-click.
351 if (!touchEvent && aEvent.button != 0)
352 return;
353
354 // Bail out if the started touch can't be found.
4b12da3a
RK
355 if (touchEvent && gDragging &&
356 !aEvent.changedTouches.identifiedTouch(gDragTouchID))
23cd2dcc
RK
357 return;
358 }
359
360 var coordObj = touchEvent ?
4b12da3a 361 aEvent.changedTouches.identifiedTouch(gDragTouchID) :
23cd2dcc
RK
362 aEvent;
363
364 switch (aEvent.type) {
365 case "mousedown":
366 case "touchstart":
367 if (touchEvent) {
4b12da3a
RK
368 gDragTouchID = aEvent.changedTouches.item(0).identifier;
369 coordObj = aEvent.changedTouches.identifiedTouch(gDragTouchID);
23cd2dcc
RK
370 }
371 var x = coordObj.clientX - gCanvas.offsetLeft;
372 var y = coordObj.clientY - gCanvas.offsetTop;
b395419b 373
23cd2dcc
RK
374 if (touchEvent || aEvent.button === 0) {
375 gDragging = true;
376 }
377 gLastMouseX = x;
378 gLastMouseY = y;
7a549148 379 showUI();
23cd2dcc
RK
380 break;
381 case "mousemove":
382 case "touchmove":
383 var x = coordObj.clientX - gCanvas.offsetLeft;
384 var y = coordObj.clientY - gCanvas.offsetTop;
385 if (gDragging === true) {
386 var dX = x - gLastMouseX;
387 var dY = y - gLastMouseY;
b395419b
RK
388 gPos.x -= dX * gZoomFactor;
389 gPos.y -= dY * gZoomFactor;
23cd2dcc 390 drawMap();
7a549148 391 showUI();
23cd2dcc
RK
392 }
393 gLastMouseX = x;
394 gLastMouseY = y;
395 break;
396 case "mouseup":
397 case "touchend":
398 gDragging = false;
7a549148 399 showUI();
23cd2dcc
RK
400 break;
401 case "mouseout":
402 case "touchcancel":
403 case "touchleave":
404 //gDragging = false;
405 break;
406 case "DOMMouseScroll":
407 case "mousewheel":
408 var delta = 0;
409 if (aEvent.wheelDelta) {
410 delta = aEvent.wheelDelta / 120;
411 if (window.opera)
412 delta = -delta;
413 }
414 else if (aEvent.detail) {
415 delta = -aEvent.detail / 3;
416 }
417
b395419b
RK
418 // Calculate new center of the map - same point stays under the mouse.
419 // This means that the pixel distance between the old center and point
420 // must equal the pixel distance of the new center and that point.
421 var x = coordObj.clientX - gCanvas.offsetLeft;
422 var y = coordObj.clientY - gCanvas.offsetTop;
55c4a0b7
RK
423 // Debug output: "coordinates" of the point the mouse was over.
424 /*
425 var ptCoord = {x: gPos.x + (x - gCanvas.width / 2) * gZoomFactor,
426 y: gPos.y + (x - gCanvas.height / 2) * gZoomFactor};
427 var gpsCoord = xy2gps(ptCoord.x, ptCoord.y);
428 var pt2Coord = gps2xy(gpsCoord.latitude, gpsCoord.longitude);
429 document.getElementById("debug").textContent =
430 ptCoord.x + "/" + ptCoord.y + " - " +
431 gpsCoord.latitude + "/" + gpsCoord.longitude + " - " +
432 pt2Coord.x + "/" + pt2Coord.y;
433 */
b395419b
RK
434 // Zoom factor after this action.
435 var newZoomFactor = Math.pow(2, gMaxZoom - gPos.z + (delta > 0 ? -1 : 1));
436 gPos.x -= (x - gCanvas.width / 2) * (newZoomFactor - gZoomFactor);
437 gPos.y -= (y - gCanvas.height / 2) * (newZoomFactor - gZoomFactor);
b395419b 438
23cd2dcc
RK
439 if (delta > 0)
440 zoomIn();
441 else if (delta < 0)
442 zoomOut();
443 break;
444 }
445 }
446};
55c4a0b7 447
993fd081 448var geofake = {
55c4a0b7 449 tracking: false,
4b12da3a 450 lastPos: {x: undefined, y: undefined},
55c4a0b7
RK
451 watchPosition: function(aSuccessCallback, aErrorCallback, aPrefObject) {
452 this.tracking = true;
453 var watchCall = function() {
4b12da3a
RK
454 // calc new position in lat/lon degrees
455 // 90° on Earth surface are ~10,000 km at the equator,
456 // so try moving at most 10m at a time
457 if (geofake.lastPos.x)
458 geofake.lastPos.x += (Math.random() - .5) * 90 / 1000000
459 else
460 geofake.lastPos.x = 48.208174
461 if (geofake.lastPos.y)
462 geofake.lastPos.y += (Math.random() - .5) * 90 / 1000000
463 else
464 geofake.lastPos.y = 16.373819
55c4a0b7 465 aSuccessCallback({timestamp: Date.now(),
4b12da3a
RK
466 coords: {latitude: geofake.lastPos.x,
467 longitude: geofake.lastPos.y,
55c4a0b7
RK
468 accuracy: 20}});
469 if (geofake.tracking)
470 setTimeout(watchCall, 1000);
471 };
472 setTimeout(watchCall, 1000);
473 return "foo";
474 },
475 clearWatch: function(aID) {
476 this.tracking = false;
477 }
478}
479
3610c22d
RK
480function setCentering(aCheckbox) {
481 if (gMapPrefsLoaded && mainDB)
482 gPrefs.set("center_map", aCheckbox.checked);
483 gCenterPosition = aCheckbox.checked;
484}
485
486function setTracking(aCheckbox) {
487 if (gMapPrefsLoaded && mainDB)
488 gPrefs.set("tracking_enabled", aCheckbox.checked);
489 if (aCheckbox.checked)
490 startTracking();
491 else
492 endTracking();
493}
494
55c4a0b7 495function startTracking() {
993fd081
RK
496 var loopCnt = 0;
497 var getStoredTrack = function() {
498 if (mainDB)
499 gTrackStore.getList(function(aTPoints) {
4b12da3a
RK
500 if (gDebug)
501 document.getElementById("debug").textContent = aTPoints.length + " points loaded.";
993fd081
RK
502 if (aTPoints.length) {
503 gTrack = aTPoints;
504 }
505 });
506 else
507 setTimeout(getStoredTrack, 100);
508 loopCnt++;
509 if (loopCnt > 20)
510 return;
511 };
512 getStoredTrack();
31f0fe16 513 if (gGeolocation) {
4b12da3a 514 gGeoWatchID = gGeolocation.watchPosition(
55c4a0b7
RK
515 function(position) {
516 // Coords spec: https://developer.mozilla.org/en/XPCOM_Interface_Reference/NsIDOMGeoPositionCoords
993fd081 517 var tPoint = {time: position.timestamp,
31f0fe16
RK
518 coords: {latitude: position.coords.latitude,
519 longitude: position.coords.longitude,
520 altitude: position.coords.altitude,
521 accuracy: position.coords.accuracy,
522 altitudeAccuracy: position.coords.altitudeAccuracy,
523 heading: position.coords.heading,
524 speed: position.coords.speed},
993fd081 525 beginSegment: !gLastTrackPoint};
14e6d3ad 526 gLastTrackPoint = tPoint;
993fd081 527 gTrack.push(tPoint);
31f0fe16 528 try { gTrackStore.push(tPoint); } catch(e) {}
14e6d3ad 529 var redrawn = false;
05c21757 530 if (gCenterPosition) {
3610c22d
RK
531 var posCoord = gps2xy(position.coords.latitude,
532 position.coords.longitude);
99631a75
RK
533 if (Math.abs(gPos.x - posCoord.x) > gCanvas.width * gZoomFactor / 4 ||
534 Math.abs(gPos.y - posCoord.y) > gCanvas.height * gZoomFactor / 4) {
535 gPos.x = posCoord.x;
536 gPos.y = posCoord.y;
14e6d3ad
RK
537 drawMap(); // This draws the current point as well.
538 redrawn = true;
99631a75 539 }
05c21757 540 }
14e6d3ad
RK
541 if (!redrawn)
542 drawTrackPoint(position.coords.latitude, position.coords.longitude, true);
55c4a0b7
RK
543 },
544 function(error) {
545 // Ignore erros for the moment, but this is good for debugging.
546 // See https://developer.mozilla.org/en/Using_geolocation#Handling_errors
547 document.getElementById("debug").textContent = error.message;
548 },
549 {enableHighAccuracy: true}
550 );
551 }
552}
553
554function endTracking() {
555 if (gGeoWatchID) {
4b12da3a 556 gGeolocation.clearWatch(gGeoWatchID);
55c4a0b7
RK
557 }
558}
993fd081
RK
559
560function clearTrack() {
561 gTrack = [];
562 gTrackStore.clear();
563 drawMap();
564}