Git Product home page Git Product logo

Comments (4)

ghettovoice avatar ghettovoice commented on May 25, 2024

Hello @silassantos21 ,
interesting picture, I'm not sure what can be a reason .
Can you provide a code sample how do you define style for this vector layer?
I'll try to reproduce/debug

from vuelayers.

silassantos21 avatar silassantos21 commented on May 25, 2024

I can't reply in a codesanbox, but i can show the code snippet configuration:

I configure the vector style and coordenates using vl-style-func:

<vl-layer-vector id="draw-pane">
    <vl-source-vector ident="draw-target" ref="source" :features="drawnFeaturesFilter"></vl-source-vector>
    <vl-style-func :factory="styleFuncFactory" />
  </vl-layer-vector>

Inside the styleFuncFactory, i have this configuration

  styleFuncFactory () {
      // eslint-disable-next-line no-unused-vars
      return (feature, resolution) => {
        let textDesk = feature.values_.deskName
        var deskMarker = new Style({
          image: new Icon({
            src: require('../assets/svg/location_on-24px.svg'),
            imgSize: [ 30, 30 ]
          }),
        })
          deskMarker['text_'] = new Text({
            text: textDesk,
            offsetY: 20,
            offsetx: -15,
            padding: [3, 3, 3, 3],
            backgroundFill: new Fill({color: 'white'}),
            backgroundStroke: new Stroke({ color: '#e1e1e1'}),
          })
        let styles = [ deskMarker ]
        return styles
      }
    },

OBS¹: When i set a static text, the vector text renders feels normal

static text

OBS²: Style, Icon, Text, Fill and Stroke are imported by ol

import Icon from 'ol/style/icon'
import Style from 'ol/style/style'
import Fill from 'ol/style/fill';
import Stroke from 'ol/style/stroke';
import Text from 'ol/style/text';

Remembering that the vector text should be dynamic

from vuelayers.

ghettovoice avatar ghettovoice commented on May 25, 2024

Hello @silassantos21 ,
frankly speaking I'm not sure what's going on. Maybe it is something with text or font... However default font is 10px sans-serif, most common value.
Here https://codesandbox.io/s/vuelayers-v0-12-dynamic-labels-0u8344 I have made a simple demo with dynamic text labels. Do you see any rendering issues?

from vuelayers.

github-actions avatar github-actions commented on May 25, 2024

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

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.