GithubHelp home page GithubHelp logo

Comments (4)

Viglino avatar Viglino commented on May 19, 2024

Hi,
You pointed out a bug on the insertion of the controls in the bar (there is also one when removing controls... but no one do that :-).
Actually you have to insert controls after the bar has been created and inserted in the map (otherwise, they are not taken correctly into account).
Something like this should work:

var subBar = new ol.control.Bar ({ toggleOne: true });
parentBar.addControl (myControl, subBar);
subBar.addControl (control1);
subBar.addControl (control2);

This will make control1 deactivated when control2 is activated.

I'll try to take the issue on next commit.
Thanks for the feedback.

from ol-ext.

dmcritchie avatar dmcritchie commented on May 19, 2024

OK, I dug a little more and figured it out. The order of calls has to be to add the sub-control-bar to the main control bar BEFORE adding any controls to the sub-control-bar. That is, the order has to be:

var mainbar = new ol.control.Bar(
    {   toggleOne: true,    // one control active at the same time
        group: false        // group controls together
    });
map.addControl(mainbar);
// Add editing toolbar
var editButton = new ol.control.Toggle();
// Add editing tools asssociated with the editButton control
var editBar = new ol.control.Bar(
    {   toggleOne: true,    // one control active at the same time
        group: false        // group controls together
    });
mainbar.addControl(editButton, editBar);
// THE ABOVE LINE MUST COME BEFORE THE NEXT LINES.
editBar.addControl( new ol.control.Toggle())
editBar.addControl( new ol.control.Toggle())
.
.
.

None of the examples of a sub-control-bar in map.control.bar.html illustrate the use of toggleOne in this context. And since I was patterning my code after your 'sbar' example, toggleOne did not work for me. You may want to consider adding an example that shows the use of toggleOne with a sub-control-bar.

Otherwise, great tool!

Thanks so much!
Dennis

from ol-ext.

dmcritchie avatar dmcritchie commented on May 19, 2024

Oops! Sorry Viglino. I did not see your reply before writing my post. Thanks very much for the confirmation.

Best,
Dennis

from ol-ext.

Viglino avatar Viglino commented on May 19, 2024

The last commit solve this issue. An example has been added in http://viglino.github.io/ol3-ext/examples/map.control.bar.html.

from ol-ext.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.