
To use this API, include maptapClient.c in your project, and include maptapClient.h into the source file for the functions that call MapTap.
Specific calls in the API are documented in maptapClient.h. But here's the sequence in a nutshell:
if (MaptapAtlasPresent()) {
MaptapSetTitle("my cool map");
MapTapDefineMap(-122., 48., 10000000., MaptapUSA);
MapTapLaunchAtlas('strt');
}
This will cause MapTap Atlas to show a US map centered on Seattle, at a scale of
1:10000000, with a Mercator projection.'strt' is the creator code of the calling app; substitute your own creator code. You don't have to set a title.
Possible enhancements, depending on requests:
MapTap Atlas is available at http://www.mobilegeographics.com/maptap/.