Created
September 19, 2011 16:10
-
-
Save ricroberts/1226851 to your computer and use it in GitHub Desktop.
IMD Map Explorer initial map-manager
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
// the constructor. | |
var MapManager = function(googleMap, initialScoreDomain) { | |
self = this; | |
map = googleMap; | |
scoreDomain = initialScoreDomain; | |
}; | |
// public API | |
MapManager.prototype = { | |
}; | |
// private variables | |
var map | |
, scoreDomain | |
, self; | |
// private functions will go here | |
// add the MapManager to the swirrl namespace | |
window.swirrl.MapManager = MapManager; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment