Changeset 592988
- Timestamp:
- 08/31/2012 03:46:44 PM (13 years ago)
- File:
-
- 1 edited
-
kickpress/trunk/includes/js/kickpress.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kickpress/trunk/includes/js/kickpress.js
r592985 r592988 449 449 450 450 // Create a lettered icon for this point using our icon class 451 var letter = String.fromCharCode("A".charCodeAt(0) + ( index % 26 ) ); 452 if ( index >= 26 ) letter = letter + letter; 451 var letter = String.fromCharCode("A".charCodeAt(0) + index ); 453 452 454 453 var letteredIcon = new GIcon(baseIcon); 455 letteredIcon.image = "http://www.google.com/mapfiles/marker" + letter + ".png"; 454 455 if ( index < 26 ) 456 letteredIcon.image = "http://www.google.com/mapfiles/marker" + letter + ".png"; 456 457 457 458 // Set up our GMarkerOptions object
Note: See TracChangeset
for help on using the changeset viewer.