Giter Club home page Giter Club logo

Comments (3)

nigelkp9 avatar nigelkp9 commented on July 22, 2024 1

@nigelkp9 , thanks for your issue. Are these objects 3D or 2D objects? Currently there isn't a way to put 3D objects on top of the text, you can see this in MapView that we have first the call to this.mapRenderingManager.render which renders the scene, then a few lines later we have a call to finishRenderTextElements which renders the text.

We support user text / poi elements with the addOverlayText api on the MapView. But not yet with 3D.

If you have 3D objects, what you could do is have a separate threejs scene and render it after the map has completed, you could do it like this:

        const mycustomescene = new Scene...
        const renderCustomThreeJSScene = () => {
            mapView.renderer.clearDepth();
            mapView.renderer.render(mycustomescene, mapView.camera);
        };
        mapView.addEventListener(MapViewEventNames.AfterRender, renderCustomThreeJSScene);

Does that help?

Yes, they are 3D objects. Thank you, I figured I'd have to do something like that

from harp.gl.

nzjony avatar nzjony commented on July 22, 2024

@nigelkp9 , thanks for your issue. Are these objects 3D or 2D objects? Currently there isn't a way to put 3D objects on top of the text, you can see this in MapView that we have first the call to this.mapRenderingManager.render which renders the scene, then a few lines later we have a call to finishRenderTextElements which renders the text.

We support user text / poi elements with the addOverlayText api on the MapView. But not yet with 3D.

If you have 3D objects, what you could do is have a separate threejs scene and render it after the map has completed, you could do it like this:

        const mycustomescene = new Scene...
        const renderCustomThreeJSScene = () => {
            mapView.renderer.clearDepth();
            mapView.renderer.render(mycustomescene, mapView.camera);
        };
        mapView.addEventListener(MapViewEventNames.AfterRender, renderCustomThreeJSScene);

Does that help?

from harp.gl.

nzjony avatar nzjony commented on July 22, 2024

@nigelkp9, I will close this, please reopen if you have any further questions.

from harp.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.