wadclapp
wadclapp
Hi @perliedman, thanks for the reply and info! Unfortunately, I wouldn't have the expertise to help in this area. I would imagine Vector Tiles are soon becoming the preferred standard...
see https://github.com/davidroyer/nuxt2-ssr-firebase
Maintained version of vue-mapbox [here](https://github.com/geospoc/v-mapbox), worth a try
I have the same issue (I started a discussion here #11746 )
`forEach` helper is for an array of objects, should use `Array.every()` with custom validator ([see here](https://github.com/vuelidate/vuelidate/issues/1069#issuecomment-1149166146))? Like this? ```js myEmails: { isEmails: (vals) => vals.every(v => email.$validator(v)), }, ``` Documentation...
If you need index when validating an array you could do this (as suggested in same issue linked above)? ```js function validateEach(vals, validationObj) { return vals.reduce((accVal, currVal, index) => {...