You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using tilelive-js & tilelive-mapnik in my node app. All works fine when i use the default tileSize : 256
When i change tileSize to 1024. I get blank tiles. Note: I have changed the size in google maps overlays.
tilelive.load({
protocol: 'mapnik:',
pathname: {{mapnikXmlFile}},
xml: {{mapnikXmlFileContent}},
query: {
tileSize: {{tileSize}},
autoLoadFonts: false
}
}, function(err, source) {
if (err) {
callback(err);
} else {
source.getTile({{Z},{{X}}, {{Y}}, function(error, tile, headers) {
//handle response
});
}
});
If i reduce the zoom by 2 images are rendered correctly, Want to know if i have missed any configuration in tilelive apis or the Z,X,Y coming from google-overlays wrong?
The text was updated successfully, but these errors were encountered:
I am using tilelive-js & tilelive-mapnik in my node app. All works fine when i use the default tileSize : 256
When i change tileSize to 1024. I get blank tiles. Note: I have changed the size in google maps overlays.
tilelive.load({
protocol: 'mapnik:',
pathname: {{mapnikXmlFile}},
xml: {{mapnikXmlFileContent}},
query: {
tileSize: {{tileSize}},
autoLoadFonts: false
}
}, function(err, source) {
if (err) {
callback(err);
} else {
source.getTile({{Z},{{X}}, {{Y}}, function(error, tile, headers) {
//handle response
});
}
});
If i reduce the zoom by 2 images are rendered correctly, Want to know if i have missed any configuration in tilelive apis or the Z,X,Y coming from google-overlays wrong?
The text was updated successfully, but these errors were encountered: