See some Demos
Read the Documentation.
Download the Project Zip.
A couple of weeks ago we launched a site about Marine Science in North Carolina with one of our design partners, Liaison Design group. A key part of the project was an interactive map that allowed visitors to find important Marine Science resources in North Carolina.
Each location on the map would be represented by a bullet. Clicking the bullet would bring up more information on the location. Since the locations of the bullets tended to be highly clustered, zooming into select subregions was possible.
We wanted the experience to be engaging as possible but also easily updatable in the future. We settled on jQuery as the interface technology to use as it made it simple to build, display and animate the map. I did a longer writeup on the detailed mechanics of how this worked two weeks ago in one of our most popular posts. Due to the great feedback we got on it, this is a follow-up with a revised version of the code as a jQuery plugin which should make it easier to integrate into other projects.
This project is being used in production on a number of sites. Below is a listing of a couple. If you have used this in a project you would like to see listed, let me know.
NC Marine Science | Sici.org | Raleigh Photonics |
![]() |
![]() |
![]() |
Liaison Design | Shadowbox Creative | Liaison Design |
This was originally developed for one project with very specific requirements. While I have taken the time to generalize that code into a plugin, I have not made it as generic as I would have liked and will do more in the future to improve it given enough interest. Here is a list of its current biggest limitations:
Even with these limitations, this is ready for production and is being used on several sites as seen above in the demos.
There are four main components required to make the plugin run: the background images, links to pages that contain html data in the correct format, some CSS for style and finally the plugin call. Below are instructions on each.
There are very limited requirements on the background images:
The plugin assumes a certain structure for the html data it loads via AJAX. As long as the basic structure is kept, a developer is free to add any type of content styled however they would like. Aside from the unavoidable requirements imposed by the animation, all style is isolated to CSS.
The HTML format contains information for the location and applied class of the bullets, a convention based link between the bullets and the pop-up content and the content itself. The html returned should just be a listing of the bullets and popups in the following format:
<a href="javascript:void(0)" id="[POPUP-ID]" class="bullet" rel="[XPOS]-[YPOS]"> </a> <div class="popup" id="[POPUP-ID]-box"> [ POPUP CONTENT ] <a class="close" href="javascript:void(0)">Close</a> </div>
[POPUP-ID] should be unique for each bullet/popup. The jQuery uses this along with the "-box" convention to open the correct popup when a bullet is clicked.
As much as possible, the plugin is designed to operate exclusively on the DOM, leaving styling up to CSS. A basic css file is included with the demo zip. Here is some rough minimal css:
#map { position: relative; width: 700px; height: 470px; overflow: hidden; } #returnlink { display: block; position: absolute; bottom: 0; right: 0; } #map a.bullet { display: block; position: absolute; width: 10px; height: 10px; background: yellow; } #map img.zoomable { } #map div.popup{ display: none; position: absolute; width: 200px; height: 300px; } #map div.popup a.close{ display: block; position: absolute; bottom: 0; right: 0; }
The code above will work just fine as a starting point. Obviously a lot of embellishment can be added to make the map look as good as the one's Liaison designed in the examples. Here are some things to note:
The last piece that needs to be put in place is a call to the jQuery zoommap plugin that makes it all happen. In the call, we must pass the in some settings as well as a data structure that sets up the map and its different zoom levels. Here is a call for a simple two level map that contains all of the possible settings:
$('#map').zoommap({ // Width and Height of the Map width: '500px', height: '580px', //Misc Settings blankImage: 'images/blank.gif', zoomDuration: 1000, bulletWidthOffset: '10px', bulletHeightOffset: '10px', //ids and classes zoomClass: 'zoomable', popupSelector: 'div.popup', popupCloseSelector: 'a.close', //Return to Parent Map Link showReturnLink: true, returnId: 'returnlink', returnText: 'return to previous map', //Initial map to be shown map: { id: 'campus', image: 'images/campus.jpg', data: 'popups/campus.html', maps: [ { id: 'quads', parent: 'campus', image: 'images/quads.png', data: 'popups/quads.html', width: '200px', height: '232px', top: '18px', left: '176px' } ] } });
Here is a breakdown/description of each of the settings:
Additionally each map has the following properties and can infinately nest more maps:
Here is a minimal call that relies on the default settings:
$('#map').zoommap({ width: '500px', height: '580px', blankImage: 'images/blank.gif', map: { // Map structure } });
And here are the default settings:
settings = $.extend({ zoomDuration: 1000, zoomClass: 'zoomable', popupSelector: 'div.popup', popupCloseSelector: 'a.close', bulletWidthOffset: '10px', bulletHeightOffset: '10px', showReturnLink: true, returnId: 'returnlink', returnText: 'Return to Previous Map' }, settings);
View the project Demo Here
Download the project zip.
This project will be revised in the future and is certainly open to suggestions. If there are any suggestions or questions, please leave them in the comments.