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
hello when i switched to v0.12 this code below not working. <vl-layer-vector :z-index=0> <vl-source-vector ref="dept_Source" :url="dept_url"/> <vl-style> <vl-style-fill color="#cacee6"></vl-style-fill> <vl-style-stroke :width=0.5 color="grey"></vl-style-stroke> </vl-style> </vl-layer-vector> data() { return { dept_url: null } }, mounted () { this.isLoading = true; setTimeout(() => { this.dept_url = process.env.VUE_APP_GEOSERV + "geoserver/fd/ows?service=WFS&version=1.0.0&request=GetFeature&typeName=fdp49%3Adept_49&outputFormat=application%2Fjson" this.isLoading = false; }, 2000); }, in latest version, a url validator was added cf doc. Should i use loader property?
<vl-layer-vector :z-index=0> <vl-source-vector ref="dept_Source" :url="dept_url"/> <vl-style> <vl-style-fill color="#cacee6"></vl-style-fill> <vl-style-stroke :width=0.5 color="grey"></vl-style-stroke> </vl-style> </vl-layer-vector> data() { return { dept_url: null } }, mounted () { this.isLoading = true; setTimeout(() => { this.dept_url = process.env.VUE_APP_GEOSERV + "geoserver/fd/ows?service=WFS&version=1.0.0&request=GetFeature&typeName=fdp49%3Adept_49&outputFormat=application%2Fjson" this.isLoading = false; }, 2000); },
The text was updated successfully, but these errors were encountered:
Hello @npltr62 , I have forgot to add source refresh on url, loader prop changes. I'll fix this ASAP. Thanks for report!
url
loader
Sorry, something went wrong.
1a73e4f
Release v0.12.1
dc13b8f
- fix #477, #480 - fix incorrect `getUid` import
ghettovoice
No branches or pull requests
hello when i switched to v0.12 this code below not working.
<vl-layer-vector :z-index=0> <vl-source-vector ref="dept_Source" :url="dept_url"/> <vl-style> <vl-style-fill color="#cacee6"></vl-style-fill> <vl-style-stroke :width=0.5 color="grey"></vl-style-stroke> </vl-style> </vl-layer-vector> data() { return { dept_url: null } }, mounted () { this.isLoading = true; setTimeout(() => { this.dept_url = process.env.VUE_APP_GEOSERV + "geoserver/fd/ows?service=WFS&version=1.0.0&request=GetFeature&typeName=fdp49%3Adept_49&outputFormat=application%2Fjson" this.isLoading = false; }, 2000); },
in latest version, a url validator was added cf doc. Should i use loader property?
The text was updated successfully, but these errors were encountered: