Skip to content

Commit 0e30fe2

Browse files
authored
Merge pull request #30 from craigeley/master
updated resolution of google maps exporter
2 parents 6838071 + 7c26cec commit 0e30fe2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: lib/output/GoogleMapExport.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ GoogleMapExport.prototype.exportDay = function exportDay(day, cb) {
7272
points = reduceLocations(points, 30);
7373

7474
var base_url = 'http://maps.googleapis.com/maps/api/staticmap?sensor=false&maptype=roadmap';
75-
var url = base_url + '&format=' + this.options.format + '&size=' + this.options.size + '&scale=1' +
75+
var url = base_url + '&format=' + this.options.format + '&size=' + this.options.size + '&scale=2' +
7676
'&path=color:0x0000ff%7Cweight:5' + coordinates_to_string(points);
7777

7878
url = url + '&markers=color:blue%7Csize:normal' + coordinates_to_string(places);

0 commit comments

Comments
 (0)