Fix background colors when rendering zoomout with JPEG format
This commit is contained in:
parent
e7f30153b8
commit
771059bf5a
5 changed files with 43 additions and 18 deletions
|
|
@ -454,11 +454,11 @@ public class FlatMap extends MapType {
|
|||
return Collections.singletonList(name);
|
||||
}
|
||||
|
||||
public List<String> baseZoomFilePrefixes() {
|
||||
ArrayList<String> s = new ArrayList<String>();
|
||||
s.add(getPrefix() + "_128");
|
||||
public List<ZoomInfo> baseZoomFileInfo() {
|
||||
ArrayList<ZoomInfo> s = new ArrayList<ZoomInfo>();
|
||||
s.add(new ZoomInfo(getPrefix() + "_128", 0));
|
||||
if(night_and_day)
|
||||
s.add(getPrefix()+"_day_128");
|
||||
s.add(new ZoomInfo(getPrefix()+"_day_128", 0));
|
||||
return s;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue