Displaying 2 results from an estimated 2 matches for "cloudmade_key".
2009 Nov 04
0
r53 committed - applied patch from John McKerrell
...odified:
  /trunk/source/mxn.cloudmade.core.js
=======================================
--- /trunk/source/mxn.cloudmade.core.js	Sun Sep 20 06:30:15 2009
+++ /trunk/source/mxn.cloudmade.core.js	Wed Nov  4 08:34:55 2009
@@ -7,6 +7,21 @@
              var cloudmade = new CM.Tiles.CloudMade.Web({key:  
cloudmade_key});
              this.maps[api] = new CM.Map(element, cloudmade);
              this.loaded[api] = true;
+
+            CM.Event.addListener(this.maps[api], ''click'',  
function(location,marker) {
+                if ( marker && marker.mapstraction_marker ) {
+...
2009 Jun 01
0
[mapstraction commit] r12 - Implemented most Cloudmade functions. Still requires image, tile and KML/GeoRSS overlays
...=======================================================================
--- trunk/source/mxn.cloudmade.core.js	(original)
+++ trunk/source/mxn.cloudmade.core.js	Sun May 31 17:34:27 2009
@@ -6,49 +6,73 @@
              var me = this;		
              var cloudmade = new CM.Tiles.CloudMade.Web({key:  
cloudmade_key});
              this.maps[api] = new CM.Map(element, cloudmade);
-
              this.loaded[api] = true;
-
          },
          applyOptions: function(){
              var map = this.maps[this.api];
-            // TODO: Add provider code
+            if(this.options.enableScrollWheelZoom){
+...