A simple web client using google maps for crowdsourcing


#1

I imported some data into v3 platform and setup the official web client.

At first, I just opened the update privilege for everyone:

in src/Core/Tool/Authorizer/PostAuthorizer.php ,

                // All users are allowed to create and search posts.
-               if (in_array($privilege, ['create', 'search'])) {
+               if (in_array($privilege, ['create', 'update', 'search'])) {
                        return true;
                }

But people still met many problems using the client. So we made another, simpler one:

We made this client in a hackthon and you could find the live demo here:
http://kiang.github.io/ushahidi_posts/

And also the reason behind this was described in the slides:

Maybe it still need some more improvements. Just released it in public first. :wink: