-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add more tiles #3
Comments
Some quite useful supporting tiles: |
with release 1.1 the user can add his own tile url |
Ok, what about allow exporting multiple layers at a time? Example of html template: var baseLayers = {{ py_layers }}; // Your QGIS layers here...
// Load all the user selected layers.
for (var layer in baseLayers) {
baseLayers[layer] = new L.TileLayer(opts[layer].url, opts[layer].options);
}
var controlLayer = L.control.layers(baseLayers, null, opts.layersControl.options);
controlLayer.addTo(map); |
it is feasible of course, but I'm a little bit afraid of the complexity. At the moment the user has to make one single click to display the profile, while having a list of all the tiles in the map to choose, could lead to more confusion? How would you suggest to manage the UI to add/remove the chosen tiles? |
Here are some examples:
I think it would be clearer if we can use, in addition to some common default levels, only the XYZ Levels that we have currently added to the project view (as it happens for the vector layer). |
you mean that the user loads all Tiles directly within QGIS and the combobox lists the loaded tiles? |
Yes, it should list all that is loaded within the QGIS "Layer" panel (in addition to the default tiles: OSM, OTM, ESRI, ...) |
Some tiles here
The text was updated successfully, but these errors were encountered: