Coder Social home page Coder Social logo

Comments (3)

lslzl3000 avatar lslzl3000 commented on August 30, 2024

By the way, the pathsData() won't stop animation, the animation steps continue playing.
But the arcsData() refresh all animation, anything to avoid that?

from globe.gl.

vasturiano avatar vasturiano commented on August 30, 2024

@lslzl3000 if you need to change just the arc color, you don't need to re-invoke .arcsData(data). You simply need to invoke .arcColor(<your new logic>). This is true for all the styling methods of the various layers.

In general data changes is what imposes the biggest performance penalty, because new objects may need to be recreated and/or removed. So, one way to alleviate the load is to manipulate only the styling props and not the data itself, which operation should be much more lightweight.

I'm not quite sure what you mean by stopping the animation with pathsData() (invoked in that way is just a getter by the way, it has no effect). Could you ellaborate?

from globe.gl.

lslzl3000 avatar lslzl3000 commented on August 30, 2024

@vasturiano thanks for your reply, even though set new colors with .arcColor(<logic>), in your airline demo, it still take 1-2s to loop the process, no big differences with re-invoking .arcsData(<new data>).

A simple demo on codepan, change color on click (line 10), but it takes around 1s to loop all lines, which is unnecessary

.arcColor() may be faster then re-invoking .arcsData(<new data>), but no big improvements in big data. Further, if we want to add or delete lines, or set multiple styling methods, we have to re-invoke .arcsData(<new data>), so the performance issue is still there, need to optimize with filter - just update those we needed, not loop them all

Sorry about the animation reset question, the airline demo uses .arcDashInitialGap(()=> Math.random()), so update dash position randomly~~ ignore this

from globe.gl.

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.