First of all, those locations are going to be just loaded and stay the same until server or xml restart yes? Then you dont need to make them .shared().
If you dont need shared, why bother to use FastMap at all, it is better to use HashMap.
Since you are querying the data by just .get(ID), map will be faster than list or set or other collections.
You should notice that Map<Integer, something> creates Integer object for each record. Integer is not the same as int, it takes far more memory. If you have small collection, thats fine, why would we care. If you have big collection like all items, thats big deal.
Also in getMapById(int) int is cast to Integer, it takes additional time, but thats fine. You might use .getOrDefault in there, takes just 1 line.
ArrayList thing in MapData i skip.