We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is a minor bug in the example code for Popups:
https://soal.github.io/vue-mapbox/guide/markers&popups.html#popup
<MglPopup :coordinates="coordinates" :anchor="top"> <VCard> <div>Hello, I'm popup!</div> </VCard> </MglPopup>
either should be anchor="top" or :anchor="'top'", otherwise top must be a member of the component.
anchor="top"
:anchor="'top'"
top
The text was updated successfully, but these errors were encountered:
Also, as pointed out in #55, coordinates should not be passed by default, that was confusing
Sorry, something went wrong.
Fixed in version 0.2
No branches or pull requests
There is a minor bug in the example code for Popups:
https://soal.github.io/vue-mapbox/guide/markers&popups.html#popup
either should be
anchor="top"
or:anchor="'top'"
, otherwisetop
must be a member of the component.The text was updated successfully, but these errors were encountered: