Merged hotfix-0.6.4 into develop

master
Keith Irwin 2017-05-08 22:57:26 -04:00
commit c01adb8b37
No known key found for this signature in database
GPG Key ID: 378933C743E2BBC0
4 changed files with 16 additions and 9 deletions

View File

@ -1,5 +1,9 @@
# Tracman Server Changelog
###### v 0.6.3
###### v 0.6.4
#### v0.6.4
* [#92](https://github.com/Tracman-org/Server/issues/92) Fixed blank map issue
#### v0.6.3

View File

@ -1,5 +1,5 @@
# <img align="left" src="/static/img/icon/by/48.png" alt="[]" title="The Tracman Logo">Tracman
###### v 0.6.3
###### v 0.6.4
node.js application to display a sharable map with user's location.
@ -52,6 +52,9 @@ Tracman will be updated according to [this branching model](http://nvie.com/post
[view full changelog](CHANGELOG.md)
#### v0.6.4
* [#92](https://github.com/Tracman-org/Server/issues/92) Fixed blank map issue
#### v0.6.3

View File

@ -1,6 +1,6 @@
{
"name": "tracman",
"version": "0.6.3",
"version": "0.6.4",
"description": "Tracks user's GPS location",
"main": "server.js",
"dependencies": {

View File

@ -62,7 +62,8 @@ function toggleMaps(loc) {
$('#map').hide();
$('#pano').hide();
$('#notset').show();
} else {
}
else {
$('#map').show();
$('#pano').show();
$('#notset').hide();
@ -83,6 +84,7 @@ window.gmapsCb = function() {
// Create map
if (disp!=='1') {
//console.log("Creating map...");
map = new google.maps.Map( mapElem, {
center: new google.maps.LatLng( mapuser.last.lat, mapuser.last.lon ),
panControl: false,
@ -185,17 +187,15 @@ socket.on('get', function(loc) {
// Parse location
loc = parseLoc(loc);
// Update map
if (disp!=='1') {
// Update time
$('#timestamp').text('location updated '+loc.tim);
// Show or hide map
toggleMaps(loc);
// Update marker and map center
google.maps.event.trigger(map,'resize');
map.setCenter({ lat:loc.lat, lng:loc.lon });
marker.setPosition({ lat:loc.lat, lng:loc.lon });