Skip to content

Commit

Permalink
unity: increase bounding box padding
Browse files Browse the repository at this point in the history
  • Loading branch information
reinterpretcat committed Sep 16, 2016
1 parent 75f0a28 commit 19ea2ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unity/library/UtyMap.Unity/Maps/Data/MapDataLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private IObservable<Tile> CreateDownloadSequence(Tile tile)
// need to download from remote server
return Observable.Create<Tile>(observer =>
{
double padding = 0.000001;
double padding = 0.001;
BoundingBox query = tile.BoundingBox;
var queryString = String.Format(_mapDataServerQuery,
query.MinPoint.Latitude - padding, query.MinPoint.Longitude - padding,
Expand Down

0 comments on commit 19ea2ed

Please sign in to comment.