I've been sitting on this for three days and I still haven't figured out a good way to solve this problem—that's why i want to ask a community about it.
I'm creating a page, which will have some historical routes in my city. I therefor need to create a custom post-type, which will be the route.
Route have points. Each point store multiple data: name, content, GPS-coordinates, author, etc.
So I need to create a repeatable area called point and there I'll insert all the data I need (amount of points is dynamic so this area need to be repeatable).
I've done that with help from this question: Create more Meta Boxes as needed
It works fine, but there's a problem because the content-field needs to be the TinyMCE-editor and for now I'm stuck on the part where i add a repeatable area through jQuery, because I can't add TinyMCE to it in a easy way.
Is this a good plan or should I try another solution?