diff options
Diffstat (limited to 'www/js')
-rw-r--r-- | www/js/views/around.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/js/views/around.js b/www/js/views/around.js index 4d0389c..e2a0d32 100644 --- a/www/js/views/around.js +++ b/www/js/views/around.js @@ -57,7 +57,9 @@ } else if ( FMS.currentPosition ) { var info = { coordinates: FMS.currentPosition }; FMS.currentPosition = null; - this.setMapPosition(info); + if ( !fixmystreet.map ) { + this.setMapPosition(info); + } this.displayButtons(false); this.listenTo(FMS.locator, 'gps_current_position', this.positionUpdate); } else { |