Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bounds prop does not work #214

Open
bbusch19 opened this issue Dec 17, 2020 · 1 comment
Open

Bounds prop does not work #214

bbusch19 opened this issue Dec 17, 2020 · 1 comment

Comments

@bbusch19
Copy link

bbusch19 commented Dec 17, 2020

The docs specify a bounds prop here: https://soal.github.io/vue-mapbox/api/#bounds

However, I am unable to get this prop working. After looking at the source code it looks like there is actually not an option to pass bounds. There is an initialBounds prop but it looks like that doesn't do anything either.

I think this may be a version issue? I have version 0.4.1 installed which is the latest on npm.

@bbusch19 bbusch19 reopened this Dec 17, 2020
@knash94
Copy link

knash94 commented Mar 16, 2021

Just in case anyone has the same issue and is looking for a solution.. I created a new component that extended the MglMap but accepted bounds as a prop, it then works as expected when using :bounds as apposed to :initial-bounds

<script>
import {MglMap} from "vue-mapbox";

export default {
    extends: MglMap,

    props: {
        bounds: {
            type: Array,
            required: false,
            default: null
        }
    }
}
</script>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants