Working with spots - xamoom/xamoom-ios-sdk GitHub Wiki
By now you should know how to make an API Call to our backend and how to use the XMMEnduserApi,so it's time to learn how to load spots. In the SDK you'll find them by the name XMMSpot. This class maps any spot JSON result, to a usable object to work with. XMMSpot contains all attributes of a spot, like the location (latitude and longitude), name and so on and also all markers as an array of XMMMarker bound to this spot, but only if you query for spots and specify that you also want the markers to be included.
Load spots
There are multiple ways to load spots with our SDK. For more details about that head over to the Load spots guide.
Show spots
Once you understand how to load spots, you need to know how to display them. A detailed implementation can be found in the Show spots guide.