Lines Matching refs:width

371           width: raw
372 ? image.width || image.naturalWidth
378 return !!this.height && !!this.width;
1286 me.width = 0;
1308 this.width = c.width();
1444 mapArea.owner.scaleInfo.width,
1465 maskContext.clearRect(0, 0, maskCanvas.width, maskCanvas.height);
1548 md.scaleInfo.width +
1556 c.getContext('2d').clearRect(0, 0, c.width, c.height);
1639 me.width +
1649 me.width +
1705 var w = md.scaleInfo.width,
2835 width: size.width,
2853 width: scale.width,
3517 u.areaCorners = function (elements, image, container, width, height) { argument
3617 pos.left + el.width(),
3619 pos.left + el.width(),
3654 if (width && height) {
3658 [bestMaxX - width, minY - height],
3660 [minX - width, bestMaxY - height],
3661 [minX - width, bestMinY],
3664 [bestMaxX - width, maxY],
3705 pct = eff.width / actual.width || eff.height / actual.height;
3714 realWidth: actual.width,
3716 width: eff.width,
3718 ratio: eff.width / eff.height
3748 m.MapData.prototype.resize = function (width, height, duration, callback) { argument
3762 canvas.width = w;
3765 $(canvas).width(w);
3785 sizeCanvas(me.overlay_canvas, width, height);
3794 sizeCanvas(me.base_canvas, width, height);
3804 width: width,
3808 width: me.scaleInfo.realWidth,
3819 if (me.scaleInfo.width === width && me.scaleInfo.height === height) {
3825 if (!width) {
3827 width = Math.round(me.scaleInfo.realWidth * ratio);
3830 ratio = width / me.scaleInfo.realWidth;
3834 newsize = { width: String(width) + 'px', height: String(height) + 'px' }; property in m.MapData.resize.newsize
3879 me.resize($(me.wrapper).width(), null, duration, callback);
3948 m.impl.resize = function (width, height, duration, callback) { argument
3953 noDimensions = !width && !height,
3968 me.resize(width, height, duration, callback);