diff --git a/CHANGELOG.md b/CHANGELOG.md index 600330f..a9e2499 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 63c07d3..6d67e88 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # []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 diff --git a/package.json b/package.json index 99d7c84..98b8810 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tracman", - "version": "0.6.3", + "version": "0.6.4", "description": "Tracks user's GPS location", "main": "server.js", "dependencies": { diff --git a/static/js/map.js b/static/js/map.js index ef30380..a10c1ee 100644 --- a/static/js/map.js +++ b/static/js/map.js @@ -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 });