Code Monkey home page Code Monkey logo

Comments (5)

ghettovoice avatar ghettovoice commented on May 14, 2024 1

Hi, @alg3rd,
thank you for your response!
I made an example, take a look https://jsfiddle.net/ghettovoice/azn6q6qL/52/
Notes:

  • features updating made through Vue reactive property on vl-source-vector
  • for clustering point layer I use vl-source-cluster, that accepts distance in pixel
  • for dynamically style features the best choice is vl-style-func component that accepts a factory that creates actual style function (see https://openlayers.org/en/latest/apidoc/ol.html#.StyleFunction)

from vuelayers.

alherd-by avatar alherd-by commented on May 14, 2024

After your example I realized that feature Id must be different from properties.id because comparator making diff on feature id.
Thank you.

from vuelayers.

panchofrank avatar panchofrank commented on May 14, 2024

Hello,

I'm trying to update the latitude and longitude of features but the changes seem to be ignored. I wanted to look at the fiddle mentioned above but it doesn't seem available anymore. Are there any other examples of features that move?

from vuelayers.

ghettovoice avatar ghettovoice commented on May 14, 2024

Hi @panchofrank !

Watcher for features property in the current stable version doesn't triggers for deep changes inside
features objects. Only changes in the features array are taking into account.

So to trigger feature re-render you should replace old feature object with the new one with another coordinates. For this you can use push/splice array methods that are wrapped with the Vue reactiveness

let idx = this.features.findIndex(f => f.id === featureId)
if (idx === -1) {
  this.features.push({ type: 'Feature', id: ..., coordinates: [....] })
} else {
  this.features.splice(idx, 1, { 
     ...this.features[idx],
    coordinates: [ /* ...new coordinates */ ]
  })
}

from vuelayers.

ghettovoice avatar ghettovoice commented on May 14, 2024

Also you can try to install vuelayers@next where watcher for features prop now is deep and resolved
several other well known issues.

Thanks!

from vuelayers.

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.