美文网首页
cocosjs地图准换像素坐标为地图坐标

cocosjs地图准换像素坐标为地图坐标

作者: 凡凡的小web | 来源:发表于2019-01-03 17:14 被阅读0次

    getTilePos: function (posInPixel) {

          var mapSize = this.map.getContentSize();

          var tileSize = this.map.getTileSize();

          var x = Math.floor(posInPixel.x / tileSize.width);

          var y = Math.floor((mapSize.height - posInPixel.y) / tileSize.height);

          return cc.p(x, y);

        }

    相关文章

      网友评论

          本文标题:cocosjs地图准换像素坐标为地图坐标

          本文链接:https://www.haomeiwen.com/subject/iukqrqtx.html