Template:Fragoria Map

From FragoriaWiki

(Difference between revisions)
Jump to: navigation, search
Line 53: Line 53:
         var tileRange = 2 << zoom;
         var tileRange = 2 << zoom;
-
         // don't repeat across y-axis (vertically)
+
         // repeat across y-axis (vertically)
         if (y < 0 || y >= tileRange) {
         if (y < 0 || y >= tileRange) {
-
    return null;
+
      var y = ((coord.y % numTiles) + numTiles) % numTiles;
         }
         }
-
         // don't repeat across x-axis
+
         // repeat across x-axis
         if (x < 0 || x >= tileRange) {
         if (x < 0 || x >= tileRange) {
-
    return null;
+
      var x = ((coord.x % numTiles) + numTiles) % numTiles;
         }
         }

Revision as of 09:41, 3 April 2015

Fragoria Map

Personal tools
Date/Time
Server & Cross

Super-Cross Server