GithubHelp home page GithubHelp logo

Base Map sizing about vue-mapbox HOT 3 CLOSED

soal avatar soal commented on May 14, 2024 2
Base Map sizing

from vue-mapbox.

Comments (3)

soal avatar soal commented on May 14, 2024 1

I tried to add sane default sizing in version 0.1.4.
Feel free to reopen this issue if you continue experiencing problems.

from vue-mapbox.

khawarizmus avatar khawarizmus commented on May 14, 2024

I am facing the exact same problem and I had to add overflow: visible; by default as well but the height problem remains. so I thought that I need to resize the canvas.

I noticed that in the docs you have something about the Canvaslayer which is nowhere in the TOC I only got access to it by using the search feature in the docs

then I tried to use that component like so:

<map-box
        :accessToken="token"
        :mapStyle.sync="mapStyle"
        :RTLTextPluginUrl="mapRTL()"
        @load="onMapLoaded"
      >
        <map-canvas :coordinates="coordinates"/>
      </map-box>
import { MglMap, MglCanvasLayer } from 'vue-mapbox'

@Component({
  components: {
    'map-box': MglMap,
    'map-canvas': MglCanvasLayer,
  },
})
export default class Map extends Vue {
// the rest of the code....
}

But I am receiving a few errors:
Missing required prop: "sourceId" and Missing required prop: "layerId" which I don't know how to solve

also, I am not sure if I am on something here or my approach is completely wrong

@soal

from vue-mapbox.

khawarizmus avatar khawarizmus commented on May 14, 2024

@anandbaskaran i have solved this issue by doing the following workaround

.mgl-map-wrapper {
  height: 100% !important;
}
.mapboxgl-map {
  overflow: visible;
  height: 100% !important;
}
.mapboxgl-canvas {
  height: 100% !important;
}

then to fix the stretching of the map i resize the window programmatically (i am using electron)

import { remote } from 'electron'


// somewhere in your vue component...
private onMapLoaded() {
    // resizing the window to help the map resize
    remote
      .getCurrentWindow()
      .setSize(
        remote.getCurrentWindow().getSize()[0] + 1,
        remote.getCurrentWindow().getSize()[1] + 1
      )
  }

hope it helps

from vue-mapbox.

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.