代码拉取完成,页面将自动刷新
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.minemap = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
"use strict";function Point(t,n){this.x=t,this.y=n}module.exports=Point,Point.prototype={clone:function(){return new Point(this.x,this.y)},add:function(t){return this.clone()._add(t)},sub:function(t){return this.clone()._sub(t)},multByPoint:function(t){return this.clone()._multByPoint(t)},divByPoint:function(t){return this.clone()._divByPoint(t)},mult:function(t){return this.clone()._mult(t)},div:function(t){return this.clone()._div(t)},rotate:function(t){return this.clone()._rotate(t)},rotateAround:function(t,n){return this.clone()._rotateAround(t,n)},matMult:function(t){return this.clone()._matMult(t)},unit:function(){return this.clone()._unit()},perp:function(){return this.clone()._perp()},round:function(){return this.clone()._round()},mag:function(){return Math.sqrt(this.x*this.x+this.y*this.y)},equals:function(t){return this.x===t.x&&this.y===t.y},dist:function(t){return Math.sqrt(this.distSqr(t))},distSqr:function(t){var n=t.x-this.x,i=t.y-this.y;return n*n+i*i},angle:function(){return Math.atan2(this.y,this.x)},angleTo:function(t){return Math.atan2(this.y-t.y,this.x-t.x)},angleWith:function(t){return this.angleWithSep(t.x,t.y)},angleWithSep:function(t,n){return Math.atan2(this.x*n-this.y*t,this.x*t+this.y*n)},_matMult:function(t){var n=t[0]*this.x+t[1]*this.y,i=t[2]*this.x+t[3]*this.y;return this.x=n,this.y=i,this},_add:function(t){return this.x+=t.x,this.y+=t.y,this},_sub:function(t){return this.x-=t.x,this.y-=t.y,this},_mult:function(t){return this.x*=t,this.y*=t,this},_div:function(t){return this.x/=t,this.y/=t,this},_multByPoint:function(t){return this.x*=t.x,this.y*=t.y,this},_divByPoint:function(t){return this.x/=t.x,this.y/=t.y,this},_unit:function(){return this._div(this.mag()),this},_perp:function(){var t=this.y;return this.y=this.x,this.x=-t,this},_rotate:function(t){var n=Math.cos(t),i=Math.sin(t),s=n*this.x-i*this.y,r=i*this.x+n*this.y;return this.x=s,this.y=r,this},_rotateAround:function(t,n){var i=Math.cos(t),s=Math.sin(t),r=n.x+i*(this.x-n.x)-s*(this.y-n.y),h=n.y+s*(this.x-n.x)+i*(this.y-n.y);return this.x=r,this.y=h,this},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this}},Point.convert=function(t){return t instanceof Point?t:Array.isArray(t)?new Point(t[0],t[1]):t};
},{}],2:[function(_dereq_,module,exports){
arguments[4][1][0].apply(exports,arguments)
},{"dup":1}],3:[function(_dereq_,module,exports){
module.exports.VectorTile=_dereq_("./lib/vectortile.js"),module.exports.VectorTileFeature=_dereq_("./lib/vectortilefeature.js"),module.exports.VectorTileLayer=_dereq_("./lib/vectortilelayer.js");
},{"./lib/vectortile.js":4,"./lib/vectortilefeature.js":5,"./lib/vectortilelayer.js":6}],4:[function(_dereq_,module,exports){
"use strict";function VectorTile(e,r){this.layers=e.readFields(readTile,{},r)}function readTile(e,r,i){if(3===e){var t=new VectorTileLayer(i,i.readVarint()+i.pos);t.length&&(r[t.name]=t)}}var VectorTileLayer=_dereq_("./vectortilelayer");module.exports=VectorTile;
},{"./vectortilelayer":6}],5:[function(_dereq_,module,exports){
"use strict";function VectorTileFeature(e,t,r,a,i){this.properties={},this.extent=r,this.type=0,this._pbf=e,this._geometry=-1,this._keys=a,this._values=i,e.readFields(readFeature,this,t)}function readFeature(e,t,r){1==e?t.id=r.readVarint():2==e?readTag(r,t):3==e?t.type=r.readVarint():4==e&&(t._geometry=r.pos)}function readTag(e,t){for(var r=e.readVarint()+e.pos;e.pos<r;){var a=t._keys[e.readVarint()],i=t._values[e.readVarint()];t.properties[a]=i}}function classifyRings(e){var t=e.length;if(t<=1)return[e];for(var r,a,i=[],o=0;o<t;o++){var n=signedArea(e[o]);0!==n&&(void 0===a&&(a=n<0),a===n<0?(r&&i.push(r),r=[e[o]]):r.push(e[o]))}return r&&i.push(r),i}function signedArea(e){for(var t,r,a=0,i=0,o=e.length,n=o-1;i<o;n=i++)t=e[i],r=e[n],a+=(r.x-t.x)*(t.y+r.y);return a}var Point=_dereq_("@mapbox/point-geometry");module.exports=VectorTileFeature,VectorTileFeature.types=["Unknown","Point","LineString","Polygon"],VectorTileFeature.prototype.loadGeometry=function(){var e=this._pbf;e.pos=this._geometry;for(var t,r=e.readVarint()+e.pos,a=1,i=0,o=0,n=0,s=[];e.pos<r;){if(!i){var p=e.readVarint();a=7&p,i=p>>3}if(i--,1===a||2===a)o+=e.readSVarint(),n+=e.readSVarint(),1===a&&(t&&s.push(t),t=[]),t.push(new Point(o,n));else{if(7!==a)throw new Error("unknown command "+a);t&&t.push(t[0].clone())}}return t&&s.push(t),s},VectorTileFeature.prototype.bbox=function(){var e=this._pbf;e.pos=this._geometry;for(var t=e.readVarint()+e.pos,r=1,a=0,i=0,o=0,n=1/0,s=-1/0,p=1/0,h=-1/0;e.pos<t;){if(!a){var u=e.readVarint();r=7&u,a=u>>3}if(a--,1===r||2===r)i+=e.readSVarint(),o+=e.readSVarint(),i<n&&(n=i),i>s&&(s=i),o<p&&(p=o),o>h&&(h=o);else if(7!==r)throw new Error("unknown command "+r)}return[n,p,s,h]},VectorTileFeature.prototype.toGeoJSON=function(e,t,r){function a(e){for(var t=0;t<e.length;t++){var r=e[t],a=180-360*(r.y+p)/n;e[t]=[360*(r.x+s)/n-180,360/Math.PI*Math.atan(Math.exp(a*Math.PI/180))-90]}}var i,o,n=this.extent*Math.pow(2,r),s=this.extent*e,p=this.extent*t,h=this.loadGeometry(),u=VectorTileFeature.types[this.type];switch(this.type){case 1:var d=[];for(i=0;i<h.length;i++)d[i]=h[i][0];h=d,a(h);break;case 2:for(i=0;i<h.length;i++)a(h[i]);break;case 3:for(h=classifyRings(h),i=0;i<h.length;i++)for(o=0;o<h[i].length;o++)a(h[i][o])}1===h.length?h=h[0]:u="Multi"+u;var f={type:"Feature",geometry:{type:u,coordinates:h},properties:this.properties};return"id"in this&&(f.id=this.id),f};
},{"@mapbox/point-geometry":1}],6:[function(_dereq_,module,exports){
"use strict";function VectorTileLayer(e,t){this.version=1,this.name=null,this.extent=4096,this.length=0,this._pbf=e,this._keys=[],this._values=[],this._features=[],e.readFields(readLayer,this,t),this.length=this._features.length}function readLayer(e,t,r){15===e?t.version=r.readVarint():1===e?t.name=r.readString():5===e?t.extent=r.readVarint():2===e?t._features.push(r.pos):3===e?t._keys.push(r.readString()):4===e&&t._values.push(readValueMessage(r))}function readValueMessage(e){for(var t=null,r=e.readVarint()+e.pos;e.pos<r;){var a=e.readVarint()>>3;t=1===a?e.readString():2===a?e.readFloat():3===a?e.readDouble():4===a?e.readVarint64():5===a?e.readVarint():6===a?e.readSVarint():7===a?e.readBoolean():null}return t}var VectorTileFeature=_dereq_("./vectortilefeature.js");module.exports=VectorTileLayer,VectorTileLayer.prototype.feature=function(e){if(e<0||e>=this._features.length)throw new Error("feature index out of bounds");this._pbf.pos=this._features[e];var t=this._pbf.readVarint()+this._pbf.pos;return new VectorTileFeature(this._pbf,t,this.extent,this._keys,this._values)};
},{"./vectortilefeature.js":5}],7:[function(_dereq_,module,exports){
function clamp_css_byte(e){return e=Math.round(e),e<0?0:e>255?255:e}function clamp_css_float(e){return e<0?0:e>1?1:e}function parse_css_int(e){return clamp_css_byte("%"===e[e.length-1]?parseFloat(e)/100*255:parseInt(e))}function parse_css_float(e){return clamp_css_float("%"===e[e.length-1]?parseFloat(e)/100:parseFloat(e))}function css_hue_to_rgb(e,r,l){return l<0?l+=1:l>1&&(l-=1),6*l<1?e+(r-e)*l*6:2*l<1?r:3*l<2?e+(r-e)*(2/3-l)*6:e}function parseCSSColor(e){var r=e.replace(/ /g,"").toLowerCase();if(r in kCSSColorTable)return kCSSColorTable[r].slice();if("#"===r[0]){if(4===r.length){var l=parseInt(r.substr(1),16);return l>=0&&l<=4095?[(3840&l)>>4|(3840&l)>>8,240&l|(240&l)>>4,15&l|(15&l)<<4,1]:null}if(7===r.length){var l=parseInt(r.substr(1),16);return l>=0&&l<=16777215?[(16711680&l)>>16,(65280&l)>>8,255&l,1]:null}return null}var a=r.indexOf("("),t=r.indexOf(")");if(-1!==a&&t+1===r.length){var n=r.substr(0,a),s=r.substr(a+1,t-(a+1)).split(","),o=1;switch(n){case"rgba":if(4!==s.length)return null;o=parse_css_float(s.pop());case"rgb":return 3!==s.length?null:[parse_css_int(s[0]),parse_css_int(s[1]),parse_css_int(s[2]),o];case"hsla":if(4!==s.length)return null;o=parse_css_float(s.pop());case"hsl":if(3!==s.length)return null;var i=(parseFloat(s[0])%360+360)%360/360,u=parse_css_float(s[1]),g=parse_css_float(s[2]),d=g<=.5?g*(u+1):g+u-g*u,c=2*g-d;return[clamp_css_byte(255*css_hue_to_rgb(c,d,i+1/3)),clamp_css_byte(255*css_hue_to_rgb(c,d,i)),clamp_css_byte(255*css_hue_to_rgb(c,d,i-1/3)),o];default:return null}}return null}var kCSSColorTable={transparent:[0,0,0,0],aliceblue:[240,248,255,1],antiquewhite:[250,235,215,1],aqua:[0,255,255,1],aquamarine:[127,255,212,1],azure:[240,255,255,1],beige:[245,245,220,1],bisque:[255,228,196,1],black:[0,0,0,1],blanchedalmond:[255,235,205,1],blue:[0,0,255,1],blueviolet:[138,43,226,1],brown:[165,42,42,1],burlywood:[222,184,135,1],cadetblue:[95,158,160,1],chartreuse:[127,255,0,1],chocolate:[210,105,30,1],coral:[255,127,80,1],cornflowerblue:[100,149,237,1],cornsilk:[255,248,220,1],crimson:[220,20,60,1],cyan:[0,255,255,1],darkblue:[0,0,139,1],darkcyan:[0,139,139,1],darkgoldenrod:[184,134,11,1],darkgray:[169,169,169,1],darkgreen:[0,100,0,1],darkgrey:[169,169,169,1],darkkhaki:[189,183,107,1],darkmagenta:[139,0,139,1],darkolivegreen:[85,107,47,1],darkorange:[255,140,0,1],darkorchid:[153,50,204,1],darkred:[139,0,0,1],darksalmon:[233,150,122,1],darkseagreen:[143,188,143,1],darkslateblue:[72,61,139,1],darkslategray:[47,79,79,1],darkslategrey:[47,79,79,1],darkturquoise:[0,206,209,1],darkviolet:[148,0,211,1],deeppink:[255,20,147,1],deepskyblue:[0,191,255,1],dimgray:[105,105,105,1],dimgrey:[105,105,105,1],dodgerblue:[30,144,255,1],firebrick:[178,34,34,1],floralwhite:[255,250,240,1],forestgreen:[34,139,34,1],fuchsia:[255,0,255,1],gainsboro:[220,220,220,1],ghostwhite:[248,248,255,1],gold:[255,215,0,1],goldenrod:[218,165,32,1],gray:[128,128,128,1],green:[0,128,0,1],greenyellow:[173,255,47,1],grey:[128,128,128,1],honeydew:[240,255,240,1],hotpink:[255,105,180,1],indianred:[205,92,92,1],indigo:[75,0,130,1],ivory:[255,255,240,1],khaki:[240,230,140,1],lavender:[230,230,250,1],lavenderblush:[255,240,245,1],lawngreen:[124,252,0,1],lemonchiffon:[255,250,205,1],lightblue:[173,216,230,1],lightcoral:[240,128,128,1],lightcyan:[224,255,255,1],lightgoldenrodyellow:[250,250,210,1],lightgray:[211,211,211,1],lightgreen:[144,238,144,1],lightgrey:[211,211,211,1],lightpink:[255,182,193,1],lightsalmon:[255,160,122,1],lightseagreen:[32,178,170,1],lightskyblue:[135,206,250,1],lightslategray:[119,136,153,1],lightslategrey:[119,136,153,1],lightsteelblue:[176,196,222,1],lightyellow:[255,255,224,1],lime:[0,255,0,1],limegreen:[50,205,50,1],linen:[250,240,230,1],magenta:[255,0,255,1],maroon:[128,0,0,1],mediumaquamarine:[102,205,170,1],mediumblue:[0,0,205,1],mediumorchid:[186,85,211,1],mediumpurple:[147,112,219,1],mediumseagreen:[60,179,113,1],mediumslateblue:[123,104,238,1],mediumspringgreen:[0,250,154,1],mediumturquoise:[72,209,204,1],mediumvioletred:[199,21,133,1],midnightblue:[25,25,112,1],mintcream:[245,255,250,1],mistyrose:[255,228,225,1],moccasin:[255,228,181,1],navajowhite:[255,222,173,1],navy:[0,0,128,1],oldlace:[253,245,230,1],olive:[128,128,0,1],olivedrab:[107,142,35,1],orange:[255,165,0,1],orangered:[255,69,0,1],orchid:[218,112,214,1],palegoldenrod:[238,232,170,1],palegreen:[152,251,152,1],paleturquoise:[175,238,238,1],palevioletred:[219,112,147,1],papayawhip:[255,239,213,1],peachpuff:[255,218,185,1],peru:[205,133,63,1],pink:[255,192,203,1],plum:[221,160,221,1],powderblue:[176,224,230,1],purple:[128,0,128,1],rebeccapurple:[102,51,153,1],red:[255,0,0,1],rosybrown:[188,143,143,1],royalblue:[65,105,225,1],saddlebrown:[139,69,19,1],salmon:[250,128,114,1],sandybrown:[244,164,96,1],seagreen:[46,139,87,1],seashell:[255,245,238,1],sienna:[160,82,45,1],silver:[192,192,192,1],skyblue:[135,206,235,1],slateblue:[106,90,205,1],slategray:[112,128,144,1],slategrey:[112,128,144,1],snow:[255,250,250,1],springgreen:[0,255,127,1],steelblue:[70,130,180,1],tan:[210,180,140,1],teal:[0,128,128,1],thistle:[216,191,216,1],tomato:[255,99,71,1],turquoise:[64,224,208,1],violet:[238,130,238,1],wheat:[245,222,179,1],white:[255,255,255,1],whitesmoke:[245,245,245,1],yellow:[255,255,0,1],yellowgreen:[154,205,50,1]};try{exports.parseCSSColor=parseCSSColor}catch(e){}
},{}],8:[function(_dereq_,module,exports){
"use strict";function earcut(e,n,r){r=r||2;var t=n&&n.length,i=t?n[0]*r:e.length,x=linkedList(e,0,i,r,!0),a=[];if(!x)return a;var o,l,u,s,v,f,y;if(t&&(x=eliminateHoles(e,n,x,r)),e.length>80*r){o=u=e[0],l=s=e[1];for(var d=r;d<i;d+=r)v=e[d],f=e[d+1],v<o&&(o=v),f<l&&(l=f),v>u&&(u=v),f>s&&(s=f);y=Math.max(u-o,s-l)}return earcutLinked(x,a,r,o,l,y),a}function linkedList(e,n,r,t,i){var x,a;if(i===signedArea(e,n,r,t)>0)for(x=n;x<r;x+=t)a=insertNode(x,e[x],e[x+1],a);else for(x=r-t;x>=n;x-=t)a=insertNode(x,e[x],e[x+1],a);return a&&equals(a,a.next)&&(removeNode(a),a=a.next),a}function filterPoints(e,n){if(!e)return e;n||(n=e);var r,t=e;do{if(r=!1,t.steiner||!equals(t,t.next)&&0!==area(t.prev,t,t.next))t=t.next;else{if(removeNode(t),(t=n=t.prev)===t.next)return null;r=!0}}while(r||t!==n);return n}function earcutLinked(e,n,r,t,i,x,a){if(e){!a&&x&&indexCurve(e,t,i,x);for(var o,l,u=e;e.prev!==e.next;)if(o=e.prev,l=e.next,x?isEarHashed(e,t,i,x):isEar(e))n.push(o.i/r),n.push(e.i/r),n.push(l.i/r),removeNode(e),e=l.next,u=l.next;else if((e=l)===u){a?1===a?(e=cureLocalIntersections(e,n,r),earcutLinked(e,n,r,t,i,x,2)):2===a&&splitEarcut(e,n,r,t,i,x):earcutLinked(filterPoints(e),n,r,t,i,x,1);break}}}function isEar(e){var n=e.prev,r=e,t=e.next;if(area(n,r,t)>=0)return!1;for(var i=e.next.next;i!==e.prev;){if(pointInTriangle(n.x,n.y,r.x,r.y,t.x,t.y,i.x,i.y)&&area(i.prev,i,i.next)>=0)return!1;i=i.next}return!0}function isEarHashed(e,n,r,t){var i=e.prev,x=e,a=e.next;if(area(i,x,a)>=0)return!1;for(var o=i.x<x.x?i.x<a.x?i.x:a.x:x.x<a.x?x.x:a.x,l=i.y<x.y?i.y<a.y?i.y:a.y:x.y<a.y?x.y:a.y,u=i.x>x.x?i.x>a.x?i.x:a.x:x.x>a.x?x.x:a.x,s=i.y>x.y?i.y>a.y?i.y:a.y:x.y>a.y?x.y:a.y,v=zOrder(o,l,n,r,t),f=zOrder(u,s,n,r,t),y=e.nextZ;y&&y.z<=f;){if(y!==e.prev&&y!==e.next&&pointInTriangle(i.x,i.y,x.x,x.y,a.x,a.y,y.x,y.y)&&area(y.prev,y,y.next)>=0)return!1;y=y.nextZ}for(y=e.prevZ;y&&y.z>=v;){if(y!==e.prev&&y!==e.next&&pointInTriangle(i.x,i.y,x.x,x.y,a.x,a.y,y.x,y.y)&&area(y.prev,y,y.next)>=0)return!1;y=y.prevZ}return!0}function cureLocalIntersections(e,n,r){var t=e;do{var i=t.prev,x=t.next.next;!equals(i,x)&&intersects(i,t,t.next,x)&&locallyInside(i,x)&&locallyInside(x,i)&&(n.push(i.i/r),n.push(t.i/r),n.push(x.i/r),removeNode(t),removeNode(t.next),t=e=x),t=t.next}while(t!==e);return t}function splitEarcut(e,n,r,t,i,x){var a=e;do{for(var o=a.next.next;o!==a.prev;){if(a.i!==o.i&&isValidDiagonal(a,o)){var l=splitPolygon(a,o);return a=filterPoints(a,a.next),l=filterPoints(l,l.next),earcutLinked(a,n,r,t,i,x),void earcutLinked(l,n,r,t,i,x)}o=o.next}a=a.next}while(a!==e)}function eliminateHoles(e,n,r,t){var i,x,a,o,l,u=[];for(i=0,x=n.length;i<x;i++)a=n[i]*t,o=i<x-1?n[i+1]*t:e.length,l=linkedList(e,a,o,t,!1),l===l.next&&(l.steiner=!0),u.push(getLeftmost(l));for(u.sort(compareX),i=0;i<u.length;i++)eliminateHole(u[i],r),r=filterPoints(r,r.next);return r}function compareX(e,n){return e.x-n.x}function eliminateHole(e,n){if(n=findHoleBridge(e,n)){var r=splitPolygon(n,e);filterPoints(r,r.next)}}function findHoleBridge(e,n){var r,t=n,i=e.x,x=e.y,a=-1/0;do{if(x<=t.y&&x>=t.next.y){var o=t.x+(x-t.y)*(t.next.x-t.x)/(t.next.y-t.y);if(o<=i&&o>a){if(a=o,o===i){if(x===t.y)return t;if(x===t.next.y)return t.next}r=t.x<t.next.x?t:t.next}}t=t.next}while(t!==n);if(!r)return null;if(i===a)return r.prev;var l,u=r,s=r.x,v=r.y,f=1/0;for(t=r.next;t!==u;)i>=t.x&&t.x>=s&&pointInTriangle(x<v?i:a,x,s,v,x<v?a:i,x,t.x,t.y)&&((l=Math.abs(x-t.y)/(i-t.x))<f||l===f&&t.x>r.x)&&locallyInside(t,e)&&(r=t,f=l),t=t.next;return r}function indexCurve(e,n,r,t){var i=e;do{null===i.z&&(i.z=zOrder(i.x,i.y,n,r,t)),i.prevZ=i.prev,i.nextZ=i.next,i=i.next}while(i!==e);i.prevZ.nextZ=null,i.prevZ=null,sortLinked(i)}function sortLinked(e){var n,r,t,i,x,a,o,l,u=1;do{for(r=e,e=null,x=null,a=0;r;){for(a++,t=r,o=0,n=0;n<u&&(o++,t=t.nextZ);n++);for(l=u;o>0||l>0&&t;)0===o?(i=t,t=t.nextZ,l--):0!==l&&t?r.z<=t.z?(i=r,r=r.nextZ,o--):(i=t,t=t.nextZ,l--):(i=r,r=r.nextZ,o--),x?x.nextZ=i:e=i,i.prevZ=x,x=i;r=t}x.nextZ=null,u*=2}while(a>1);return e}function zOrder(e,n,r,t,i){return e=32767*(e-r)/i,n=32767*(n-t)/i,e=16711935&(e|e<<8),e=252645135&(e|e<<4),e=858993459&(e|e<<2),e=1431655765&(e|e<<1),n=16711935&(n|n<<8),n=252645135&(n|n<<4),n=858993459&(n|n<<2),n=1431655765&(n|n<<1),e|n<<1}function getLeftmost(e){var n=e,r=e;do{n.x<r.x&&(r=n),n=n.next}while(n!==e);return r}function pointInTriangle(e,n,r,t,i,x,a,o){return(i-a)*(n-o)-(e-a)*(x-o)>=0&&(e-a)*(t-o)-(r-a)*(n-o)>=0&&(r-a)*(x-o)-(i-a)*(t-o)>=0}function isValidDiagonal(e,n){return e.next.i!==n.i&&e.prev.i!==n.i&&!intersectsPolygon(e,n)&&locallyInside(e,n)&&locallyInside(n,e)&&middleInside(e,n)}function area(e,n,r){return(n.y-e.y)*(r.x-n.x)-(n.x-e.x)*(r.y-n.y)}function equals(e,n){return e.x===n.x&&e.y===n.y}function intersects(e,n,r,t){return!!(equals(e,n)&&equals(r,t)||equals(e,t)&&equals(r,n))||area(e,n,r)>0!=area(e,n,t)>0&&area(r,t,e)>0!=area(r,t,n)>0}function intersectsPolygon(e,n){var r=e;do{if(r.i!==e.i&&r.next.i!==e.i&&r.i!==n.i&&r.next.i!==n.i&&intersects(r,r.next,e,n))return!0;r=r.next}while(r!==e);return!1}function locallyInside(e,n){return area(e.prev,e,e.next)<0?area(e,n,e.next)>=0&&area(e,e.prev,n)>=0:area(e,n,e.prev)<0||area(e,e.next,n)<0}function middleInside(e,n){var r=e,t=!1,i=(e.x+n.x)/2,x=(e.y+n.y)/2;do{r.y>x!=r.next.y>x&&i<(r.next.x-r.x)*(x-r.y)/(r.next.y-r.y)+r.x&&(t=!t),r=r.next}while(r!==e);return t}function splitPolygon(e,n){var r=new Node(e.i,e.x,e.y),t=new Node(n.i,n.x,n.y),i=e.next,x=n.prev;return e.next=n,n.prev=e,r.next=i,i.prev=r,t.next=r,r.prev=t,x.next=t,t.prev=x,t}function insertNode(e,n,r,t){var i=new Node(e,n,r);return t?(i.next=t.next,i.prev=t,t.next.prev=i,t.next=i):(i.prev=i,i.next=i),i}function removeNode(e){e.next.prev=e.prev,e.prev.next=e.next,e.prevZ&&(e.prevZ.nextZ=e.nextZ),e.nextZ&&(e.nextZ.prevZ=e.prevZ)}function Node(e,n,r){this.i=e,this.x=n,this.y=r,this.prev=null,this.next=null,this.z=null,this.prevZ=null,this.nextZ=null,this.steiner=!1}function signedArea(e,n,r,t){for(var i=0,x=n,a=r-t;x<r;x+=t)i+=(e[a]-e[x])*(e[x+1]+e[a+1]),a=x;return i}module.exports=earcut,earcut.deviation=function(e,n,r,t){var i=n&&n.length,x=i?n[0]*r:e.length,a=Math.abs(signedArea(e,0,x,r));if(i)for(var o=0,l=n.length;o<l;o++){var u=n[o]*r,s=o<l-1?n[o+1]*r:e.length;a-=Math.abs(signedArea(e,u,s,r))}var v=0;for(o=0;o<t.length;o+=3){var f=t[o]*r,y=t[o+1]*r,d=t[o+2]*r;v+=Math.abs((e[f]-e[d])*(e[y+1]-e[f+1])-(e[f]-e[y])*(e[d+1]-e[f+1]))}return 0===a&&0===v?0:Math.abs((v-a)/a)},earcut.flatten=function(e){for(var n=e[0][0].length,r={vertices:[],holes:[],dimensions:n},t=0,i=0;i<e.length;i++){for(var x=0;x<e[i].length;x++)for(var a=0;a<n;a++)r.vertices.push(e[i][x][a]);i>0&&(t+=e[i-1].length,r.holes.push(t))}return r};
},{}],9:[function(_dereq_,module,exports){
function sss(r){var e,t,s,n,u,a;switch(typeof r){case"object":if(null===r)return null;if(isArray(r)){for(s="[",t=r.length-1,e=0;e<t;e++)s+=sss(r[e])+",";return t>-1&&(s+=sss(r[e])),s+"]"}for(n=objKeys(r).sort(),t=n.length,s="{",u=n[e=0],a=t>0&&void 0!==r[u];e<t;)a?(s+='"'+u.replace(strReg,strReplace)+'":'+sss(r[u]),u=n[++e],(a=e<t&&void 0!==r[u])&&(s+=",")):(u=n[++e],a=e<t&&void 0!==r[u]);return s+"}";case"undefined":return null;case"string":return'"'+r.replace(strReg,strReplace)+'"';default:return r}}var toString={}.toString,isArray=Array.isArray||function(r){return"[object Array]"===toString.call(r)},objKeys=Object.keys||function(r){var e=[];for(var t in r)r.hasOwnProperty(t)&&e.push(t);return e},strReg=/[\u0000-\u001f"\\]/g,strReplace=function(r){var e=r.charCodeAt(0);switch(e){case 34:return'\\"';case 92:return"\\\\";case 12:return"\\f";case 10:return"\\n";case 13:return"\\r";case 9:return"\\t";case 8:return"\\b";default:return e>15?"\\u00"+e.toString(16):"\\u000"+e.toString(16)}};module.exports=function(r){if(void 0!==r)return""+sss(r)},module.exports.stringSearch=strReg,module.exports.stringReplace=strReplace;
},{}],10:[function(_dereq_,module,exports){
function geometry(r){if("Polygon"===r.type)return polygonArea(r.coordinates);if("MultiPolygon"===r.type){for(var e=0,n=0;n<r.coordinates.length;n++)e+=polygonArea(r.coordinates[n]);return e}return null}function polygonArea(r){var e=0;if(r&&r.length>0){e+=Math.abs(ringArea(r[0]));for(var n=1;n<r.length;n++)e-=Math.abs(ringArea(r[n]))}return e}function ringArea(r){var e=0;if(r.length>2){for(var n,t,o=0;o<r.length-1;o++)n=r[o],t=r[o+1],e+=rad(t[0]-n[0])*(2+Math.sin(rad(n[1]))+Math.sin(rad(t[1])));e=e*wgs84.RADIUS*wgs84.RADIUS/2}return e}function rad(r){return r*Math.PI/180}var wgs84=_dereq_("wgs84");module.exports.geometry=geometry,module.exports.ring=ringArea;
},{"wgs84":47}],11:[function(_dereq_,module,exports){
function rewind(r,e){switch(r&&r.type||null){case"FeatureCollection":return r.features=r.features.map(curryOuter(rewind,e)),r;case"Feature":return r.geometry=rewind(r.geometry,e),r;case"Polygon":case"MultiPolygon":return correct(r,e);default:return r}}function curryOuter(r,e){return function(n){return r(n,e)}}function correct(r,e){return"Polygon"===r.type?r.coordinates=correctRings(r.coordinates,e):"MultiPolygon"===r.type&&(r.coordinates=r.coordinates.map(curryOuter(correctRings,e))),r}function correctRings(r,e){e=!!e,r[0]=wind(r[0],e);for(var n=1;n<r.length;n++)r[n]=wind(r[n],!e);return r}function wind(r,e){return cw(r)===e?r:r.reverse()}function cw(r){return geojsonArea.ring(r)>=0}var geojsonArea=_dereq_("geojson-area");module.exports=rewind;
},{"geojson-area":10}],12:[function(_dereq_,module,exports){
"use strict";function clip(e,r,t,n,u,i,l,s){if(t/=r,n/=r,l>=t&&s<=n)return e;if(l>n||s<t)return null;for(var h=[],p=0;p<e.length;p++){var a,c,o=e[p],f=o.geometry,g=o.type;if(a=o.min[u],c=o.max[u],a>=t&&c<=n)h.push(o);else if(!(a>n||c<t)){var v=1===g?clipPoints(f,t,n,u):clipGeometry(f,t,n,u,i,3===g);v.length&&h.push(createFeature(o.tags,g,v,o.id))}}return h.length?h:null}function clipPoints(e,r,t,n){for(var u=[],i=0;i<e.length;i++){var l=e[i],s=l[n];s>=r&&s<=t&&u.push(l)}return u}function clipGeometry(e,r,t,n,u,i){for(var l=[],s=0;s<e.length;s++){var h,p,a,c=0,o=0,f=null,g=e[s],v=g.area,m=g.dist,w=g.outer,S=g.length,d=[];for(p=0;p<S-1;p++)h=f||g[p],f=g[p+1],c=o||h[n],o=f[n],c<r?o>t?(d.push(u(h,f,r),u(h,f,t)),i||(d=newSlice(l,d,v,m,w))):o>=r&&d.push(u(h,f,r)):c>t?o<r?(d.push(u(h,f,t),u(h,f,r)),i||(d=newSlice(l,d,v,m,w))):o<=t&&d.push(u(h,f,t)):(d.push(h),o<r?(d.push(u(h,f,r)),i||(d=newSlice(l,d,v,m,w))):o>t&&(d.push(u(h,f,t)),i||(d=newSlice(l,d,v,m,w))));h=g[S-1],c=h[n],c>=r&&c<=t&&d.push(h),a=d[d.length-1],i&&a&&(d[0][0]!==a[0]||d[0][1]!==a[1])&&d.push(d[0]),newSlice(l,d,v,m,w)}return l}function newSlice(e,r,t,n,u){return r.length&&(r.area=t,r.dist=n,void 0!==u&&(r.outer=u),e.push(r)),[]}module.exports=clip;var createFeature=_dereq_("./feature");
},{"./feature":14}],13:[function(_dereq_,module,exports){
"use strict";function convert(e,t){var r=[];if("FeatureCollection"===e.type)for(var o=0;o<e.features.length;o++)convertFeature(r,e.features[o],t);else"Feature"===e.type?convertFeature(r,e,t):convertFeature(r,{geometry:e},t);return r}function convertFeature(e,t,r){if(null!==t.geometry){var o,a,i,n,u=t.geometry,c=u.type,l=u.coordinates,s=t.properties,p=t.id;if("Point"===c)e.push(createFeature(s,1,[projectPoint(l)],p));else if("MultiPoint"===c)e.push(createFeature(s,1,project(l),p));else if("LineString"===c)e.push(createFeature(s,2,[project(l,r)],p));else if("MultiLineString"===c||"Polygon"===c){for(i=[],o=0;o<l.length;o++)n=project(l[o],r),"Polygon"===c&&(n.outer=0===o),i.push(n);e.push(createFeature(s,"Polygon"===c?3:2,i,p))}else if("MultiPolygon"===c){for(i=[],o=0;o<l.length;o++)for(a=0;a<l[o].length;a++)n=project(l[o][a],r),n.outer=0===a,i.push(n);e.push(createFeature(s,3,i,p))}else{if("GeometryCollection"!==c)throw new Error("Input data is not a valid GeoJSON object.");for(o=0;o<u.geometries.length;o++)convertFeature(e,{geometry:u.geometries[o],properties:s},r)}}}function project(e,t){for(var r=[],o=0;o<e.length;o++)r.push(projectPoint(e[o]));return t&&(simplify(r,t),calcSize(r)),r}function projectPoint(e){var t=Math.sin(e[1]*Math.PI/180),r=e[0]/360+.5,o=.5-.25*Math.log((1+t)/(1-t))/Math.PI;return o=o<0?0:o>1?1:o,[r,o,0]}function calcSize(e){for(var t,r,o=0,a=0,i=0;i<e.length-1;i++)t=r||e[i],r=e[i+1],o+=t[0]*r[1]-r[0]*t[1],a+=Math.abs(r[0]-t[0])+Math.abs(r[1]-t[1]);e.area=Math.abs(o/2),e.dist=a}module.exports=convert;var simplify=_dereq_("./simplify"),createFeature=_dereq_("./feature");
},{"./feature":14,"./simplify":16}],14:[function(_dereq_,module,exports){
"use strict";function createFeature(e,t,a,n){var r={id:n||null,type:t,geometry:a,tags:e||null,min:[1/0,1/0],max:[-1/0,-1/0]};return calcBBox(r),r}function calcBBox(e){var t=e.geometry,a=e.min,n=e.max;if(1===e.type)calcRingBBox(a,n,t);else for(var r=0;r<t.length;r++)calcRingBBox(a,n,t[r]);return e}function calcRingBBox(e,t,a){for(var n,r=0;r<a.length;r++)n=a[r],e[0]=Math.min(n[0],e[0]),t[0]=Math.max(n[0],t[0]),e[1]=Math.min(n[1],e[1]),t[1]=Math.max(n[1],t[1])}module.exports=createFeature;
},{}],15:[function(_dereq_,module,exports){
"use strict";function geojsonvt(e,t){return new GeoJSONVT(e,t)}function GeoJSONVT(e,t){t=this.options=extend(Object.create(this.options),t);var i=t.debug;i&&console.time("preprocess data");var o=1<<t.maxZoom,n=convert(e,t.tolerance/(o*t.extent));this.tiles={},this.tileCoords=[],i&&(console.timeEnd("preprocess data"),console.log("index: maxZoom: %d, maxPoints: %d",t.indexMaxZoom,t.indexMaxPoints),console.time("generate tiles"),this.stats={},this.total=0),n=wrap(n,t.buffer/t.extent,intersectX),n.length&&this.splitTile(n,0,0,0),i&&(n.length&&console.log("features: %d, points: %d",this.tiles[0].numFeatures,this.tiles[0].numPoints),console.timeEnd("generate tiles"),console.log("tiles generated:",this.total,JSON.stringify(this.stats)))}function toID(e,t,i){return 32*((1<<e)*i+t)+e}function intersectX(e,t,i){return[i,(i-e[0])*(t[1]-e[1])/(t[0]-e[0])+e[1],1]}function intersectY(e,t,i){return[(i-e[1])*(t[0]-e[0])/(t[1]-e[1])+e[0],i,1]}function extend(e,t){for(var i in t)e[i]=t[i];return e}function isClippedSquare(e,t,i){var o=e.source;if(1!==o.length)return!1;var n=o[0];if(3!==n.type||n.geometry.length>1)return!1;var r=n.geometry[0].length;if(5!==r)return!1;for(var s=0;s<r;s++){var l=transform.point(n.geometry[0][s],t,e.z2,e.x,e.y);if(l[0]!==-i&&l[0]!==t+i||l[1]!==-i&&l[1]!==t+i)return!1}return!0}module.exports=geojsonvt;var convert=_dereq_("./convert"),transform=_dereq_("./transform"),clip=_dereq_("./clip"),wrap=_dereq_("./wrap"),createTile=_dereq_("./tile");GeoJSONVT.prototype.options={maxZoom:14,indexMaxZoom:5,indexMaxPoints:1e5,solidChildren:!1,tolerance:3,extent:4096,buffer:64,debug:0},GeoJSONVT.prototype.splitTile=function(e,t,i,o,n,r,s){for(var l=[e,t,i,o],a=this.options,u=a.debug,c=null;l.length;){o=l.pop(),i=l.pop(),t=l.pop(),e=l.pop();var p=1<<t,d=toID(t,i,o),m=this.tiles[d],f=t===a.maxZoom?0:a.tolerance/(p*a.extent);if(!m&&(u>1&&console.time("creation"),m=this.tiles[d]=createTile(e,p,i,o,f,t===a.maxZoom),this.tileCoords.push({z:t,x:i,y:o}),u)){u>1&&(console.log("tile z%d-%d-%d (features: %d, points: %d, simplified: %d)",t,i,o,m.numFeatures,m.numPoints,m.numSimplified),console.timeEnd("creation"));var h="z"+t;this.stats[h]=(this.stats[h]||0)+1,this.total++}if(m.source=e,n){if(t===a.maxZoom||t===n)continue;var x=1<<n-t;if(i!==Math.floor(r/x)||o!==Math.floor(s/x))continue}else if(t===a.indexMaxZoom||m.numPoints<=a.indexMaxPoints)continue;if(a.solidChildren||!isClippedSquare(m,a.extent,a.buffer)){m.source=null,u>1&&console.time("clipping");var g,v,M,T,b,y,S=.5*a.buffer/a.extent,Z=.5-S,q=.5+S,w=1+S;g=v=M=T=null,b=clip(e,p,i-S,i+q,0,intersectX,m.min[0],m.max[0]),y=clip(e,p,i+Z,i+w,0,intersectX,m.min[0],m.max[0]),b&&(g=clip(b,p,o-S,o+q,1,intersectY,m.min[1],m.max[1]),v=clip(b,p,o+Z,o+w,1,intersectY,m.min[1],m.max[1])),y&&(M=clip(y,p,o-S,o+q,1,intersectY,m.min[1],m.max[1]),T=clip(y,p,o+Z,o+w,1,intersectY,m.min[1],m.max[1])),u>1&&console.timeEnd("clipping"),e.length&&(l.push(g||[],t+1,2*i,2*o),l.push(v||[],t+1,2*i,2*o+1),l.push(M||[],t+1,2*i+1,2*o),l.push(T||[],t+1,2*i+1,2*o+1))}else n&&(c=t)}return c},GeoJSONVT.prototype.getTile=function(e,t,i){var o=this.options,n=o.extent,r=o.debug,s=1<<e;t=(t%s+s)%s;var l=toID(e,t,i);if(this.tiles[l])return transform.tile(this.tiles[l],n);r>1&&console.log("drilling down to z%d-%d-%d",e,t,i);for(var a,u=e,c=t,p=i;!a&&u>0;)u--,c=Math.floor(c/2),p=Math.floor(p/2),a=this.tiles[toID(u,c,p)];if(!a||!a.source)return null;if(r>1&&console.log("found parent tile z%d-%d-%d",u,c,p),isClippedSquare(a,n,o.buffer))return transform.tile(a,n);r>1&&console.time("drilling down");var d=this.splitTile(a.source,u,c,p,e,t,i);if(r>1&&console.timeEnd("drilling down"),null!==d){var m=1<<e-d;l=toID(d,Math.floor(t/m),Math.floor(i/m))}return this.tiles[l]?transform.tile(this.tiles[l],n):null};
},{"./clip":12,"./convert":13,"./tile":17,"./transform":18,"./wrap":19}],16:[function(_dereq_,module,exports){
"use strict";function simplify(t,i){var e,p,r,s,o=i*i,f=t.length,u=0,n=f-1,g=[];for(t[u][2]=1,t[n][2]=1;n;){for(p=0,e=u+1;e<n;e++)(r=getSqSegDist(t[e],t[u],t[n]))>p&&(s=e,p=r);p>o?(t[s][2]=p,g.push(u),g.push(s),u=s):(n=g.pop(),u=g.pop())}}function getSqSegDist(t,i,e){var p=i[0],r=i[1],s=e[0],o=e[1],f=t[0],u=t[1],n=s-p,g=o-r;if(0!==n||0!==g){var l=((f-p)*n+(u-r)*g)/(n*n+g*g);l>1?(p=s,r=o):l>0&&(p+=n*l,r+=g*l)}return n=f-p,g=u-r,n*n+g*g}module.exports=simplify;
},{}],17:[function(_dereq_,module,exports){
"use strict";function createTile(e,n,r,i,t,u){for(var a={features:[],numPoints:0,numSimplified:0,numFeatures:0,source:null,x:r,y:i,z2:n,transformed:!1,min:[2,1],max:[-1,0]},m=0;m<e.length;m++){a.numFeatures++,addFeature(a,e[m],t,u);var s=e[m].min,l=e[m].max;s[0]<a.min[0]&&(a.min[0]=s[0]),s[1]<a.min[1]&&(a.min[1]=s[1]),l[0]>a.max[0]&&(a.max[0]=l[0]),l[1]>a.max[1]&&(a.max[1]=l[1])}return a}function addFeature(e,n,r,i){var t,u,a,m,s=n.geometry,l=n.type,o=[],f=r*r;if(1===l)for(t=0;t<s.length;t++)o.push(s[t]),e.numPoints++,e.numSimplified++;else for(t=0;t<s.length;t++)if(a=s[t],i||!(2===l&&a.dist<r||3===l&&a.area<f)){var d=[];for(u=0;u<a.length;u++)m=a[u],(i||m[2]>f)&&(d.push(m),e.numSimplified++),e.numPoints++;3===l&&rewind(d,a.outer),o.push(d)}else e.numPoints+=a.length;if(o.length){var g={geometry:o,type:l,tags:n.tags||null};null!==n.id&&(g.id=n.id),e.features.push(g)}}function rewind(e,n){signedArea(e)<0===n&&e.reverse()}function signedArea(e){for(var n,r,i=0,t=0,u=e.length,a=u-1;t<u;a=t++)n=e[t],r=e[a],i+=(r[0]-n[0])*(n[1]+r[1]);return i}module.exports=createTile;
},{}],18:[function(_dereq_,module,exports){
"use strict";function transformTile(r,t){if(r.transformed)return r;var n,e,o,f=r.z2,a=r.x,s=r.y;for(n=0;n<r.features.length;n++){var i=r.features[n],u=i.geometry;if(1===i.type)for(e=0;e<u.length;e++)u[e]=transformPoint(u[e],t,f,a,s);else for(e=0;e<u.length;e++){var m=u[e];for(o=0;o<m.length;o++)m[o]=transformPoint(m[o],t,f,a,s)}}return r.transformed=!0,r}function transformPoint(r,t,n,e,o){return[Math.round(t*(r[0]*n-e)),Math.round(t*(r[1]*n-o))]}exports.tile=transformTile,exports.point=transformPoint;
},{}],19:[function(_dereq_,module,exports){
"use strict";function wrap(r,e,t){var o=r,a=clip(r,1,-1-e,e,0,t,-1,2),s=clip(r,1,1-e,2+e,0,t,-1,2);return(a||s)&&(o=clip(r,1,-e,1+e,0,t,-1,2)||[],a&&(o=shiftFeatureCoords(a,1).concat(o)),s&&(o=o.concat(shiftFeatureCoords(s,-1)))),o}function shiftFeatureCoords(r,e){for(var t=[],o=0;o<r.length;o++){var a,s=r[o],i=s.type;if(1===i)a=shiftCoords(s.geometry,e);else{a=[];for(var u=0;u<s.geometry.length;u++)a.push(shiftCoords(s.geometry[u],e))}t.push(createFeature(s.tags,i,a,s.id))}return t}function shiftCoords(r,e){var t=[];t.area=r.area,t.dist=r.dist;for(var o=0;o<r.length;o++)t.push([r[o][0]+e,r[o][1],r[o][2]]);return t}var clip=_dereq_("./clip"),createFeature=_dereq_("./feature");module.exports=wrap;
},{"./clip":12,"./feature":14}],20:[function(_dereq_,module,exports){
"use strict";function GridIndex(t,r,e){var s=this.cells=[];if(t instanceof ArrayBuffer){this.arrayBuffer=t;var i=new Int32Array(this.arrayBuffer);t=i[0],r=i[1],e=i[2],this.d=r+2*e;for(var h=0;h<this.d*this.d;h++){var n=i[NUM_PARAMS+h],o=i[NUM_PARAMS+h+1];s.push(n===o?null:i.subarray(n,o))}var l=i[NUM_PARAMS+s.length],a=i[NUM_PARAMS+s.length+1];this.keys=i.subarray(l,a),this.bboxes=i.subarray(a),this.insert=this._insertReadonly}else{this.d=r+2*e;for(var d=0;d<this.d*this.d;d++)s.push([]);this.keys=[],this.bboxes=[]}this.n=r,this.extent=t,this.padding=e,this.scale=r/t,this.uid=0;var f=e/r*t;this.min=-f,this.max=t+f}module.exports=GridIndex;var NUM_PARAMS=3;GridIndex.prototype.insert=function(t,r,e,s,i){this._forEachCell(r,e,s,i,this._insertCell,this.uid++),this.keys.push(t),this.bboxes.push(r),this.bboxes.push(e),this.bboxes.push(s),this.bboxes.push(i)},GridIndex.prototype._insertReadonly=function(){throw"Cannot insert into a GridIndex created from an ArrayBuffer."},GridIndex.prototype._insertCell=function(t,r,e,s,i,h){this.cells[i].push(h)},GridIndex.prototype.query=function(t,r,e,s){var i=this.min,h=this.max;if(t<=i&&r<=i&&h<=e&&h<=s)return Array.prototype.slice.call(this.keys);var n=[],o={};return this._forEachCell(t,r,e,s,this._queryCell,n,o),n},GridIndex.prototype._queryCell=function(t,r,e,s,i,h,n){var o=this.cells[i];if(null!==o)for(var l=this.keys,a=this.bboxes,d=0;d<o.length;d++){var f=o[d];if(void 0===n[f]){var u=4*f;t<=a[u+2]&&r<=a[u+3]&&e>=a[u+0]&&s>=a[u+1]?(n[f]=!0,h.push(l[f])):n[f]=!1}}},GridIndex.prototype._forEachCell=function(t,r,e,s,i,h,n){for(var o=this._convertToCellCoord(t),l=this._convertToCellCoord(r),a=this._convertToCellCoord(e),d=this._convertToCellCoord(s),f=o;f<=a;f++)for(var u=l;u<=d;u++){var y=this.d*u+f;if(i.call(this,t,r,e,s,y,h,n))return}},GridIndex.prototype._convertToCellCoord=function(t){return Math.max(0,Math.min(this.d-1,Math.floor(t*this.scale)+this.padding))},GridIndex.prototype.toArrayBuffer=function(){if(this.arrayBuffer)return this.arrayBuffer;for(var t=this.cells,r=NUM_PARAMS+this.cells.length+1+1,e=0,s=0;s<this.cells.length;s++)e+=this.cells[s].length;var i=new Int32Array(r+e+this.keys.length+this.bboxes.length);i[0]=this.extent,i[1]=this.n,i[2]=this.padding;for(var h=r,n=0;n<t.length;n++){var o=t[n];i[NUM_PARAMS+n]=h,i.set(o,h),h+=o.length}return i[NUM_PARAMS+t.length]=h,i.set(this.keys,h),h+=this.keys.length,i[NUM_PARAMS+t.length+1]=h,i.set(this.bboxes,h),h+=this.bboxes.length,i.buffer};
},{}],21:[function(_dereq_,module,exports){
exports.read=function(a,o,t,r,h){var M,p,w=8*h-r-1,f=(1<<w)-1,e=f>>1,i=-7,N=t?h-1:0,n=t?-1:1,s=a[o+N];for(N+=n,M=s&(1<<-i)-1,s>>=-i,i+=w;i>0;M=256*M+a[o+N],N+=n,i-=8);for(p=M&(1<<-i)-1,M>>=-i,i+=r;i>0;p=256*p+a[o+N],N+=n,i-=8);if(0===M)M=1-e;else{if(M===f)return p?NaN:1/0*(s?-1:1);p+=Math.pow(2,r),M-=e}return(s?-1:1)*p*Math.pow(2,M-r)},exports.write=function(a,o,t,r,h,M){var p,w,f,e=8*M-h-1,i=(1<<e)-1,N=i>>1,n=23===h?Math.pow(2,-24)-Math.pow(2,-77):0,s=r?0:M-1,u=r?1:-1,l=o<0||0===o&&1/o<0?1:0;for(o=Math.abs(o),isNaN(o)||o===1/0?(w=isNaN(o)?1:0,p=i):(p=Math.floor(Math.log(o)/Math.LN2),o*(f=Math.pow(2,-p))<1&&(p--,f*=2),o+=p+N>=1?n/f:n*Math.pow(2,1-N),o*f>=2&&(p++,f/=2),p+N>=i?(w=0,p=i):p+N>=1?(w=(o*f-1)*Math.pow(2,h),p+=N):(w=o*Math.pow(2,N-1)*Math.pow(2,h),p=0));h>=8;a[t+s]=255&w,s+=u,w/=256,h-=8);for(p=p<<h|w,e+=h;e>0;a[t+s]=255&p,s+=u,p/=256,e-=8);a[t+s-u]|=128*l};
},{}],22:[function(_dereq_,module,exports){
"use strict";function kdbush(t,i,e,s,n){return new KDBush(t,i,e,s,n)}function KDBush(t,i,e,s,n){i=i||defaultGetX,e=e||defaultGetY,n=n||Array,this.nodeSize=s||64,this.points=t,this.ids=new n(t.length),this.coords=new n(2*t.length);for(var r=0;r<t.length;r++)this.ids[r]=r,this.coords[2*r]=i(t[r]),this.coords[2*r+1]=e(t[r]);sort(this.ids,this.coords,this.nodeSize,0,this.ids.length-1,0)}function defaultGetX(t){return t[0]}function defaultGetY(t){return t[1]}var sort=_dereq_("./sort"),range=_dereq_("./range"),within=_dereq_("./within");module.exports=kdbush,KDBush.prototype={range:function(t,i,e,s){return range(this.ids,this.coords,t,i,e,s,this.nodeSize)},within:function(t,i,e){return within(this.ids,this.coords,t,i,e,this.nodeSize)}};
},{"./range":23,"./sort":24,"./within":25}],23:[function(_dereq_,module,exports){
"use strict";function range(p,r,s,u,h,e,o){for(var a,t,n=[0,p.length-1,0],f=[];n.length;){var l=n.pop(),v=n.pop(),g=n.pop();if(v-g<=o)for(var i=g;i<=v;i++)a=r[2*i],t=r[2*i+1],a>=s&&a<=h&&t>=u&&t<=e&&f.push(p[i]);else{var c=Math.floor((g+v)/2);a=r[2*c],t=r[2*c+1],a>=s&&a<=h&&t>=u&&t<=e&&f.push(p[c]);var d=(l+1)%2;(0===l?s<=a:u<=t)&&(n.push(g),n.push(c-1),n.push(d)),(0===l?h>=a:e>=t)&&(n.push(c+1),n.push(v),n.push(d))}}return f}module.exports=range;
},{}],24:[function(_dereq_,module,exports){
"use strict";function sortKD(t,a,o,s,r,e){if(!(r-s<=o)){var f=Math.floor((s+r)/2);select(t,a,f,s,r,e%2),sortKD(t,a,o,s,f-1,e+1),sortKD(t,a,o,f+1,r,e+1)}}function select(t,a,o,s,r,e){for(;r>s;){if(r-s>600){var f=r-s+1,p=o-s+1,w=Math.log(f),m=.5*Math.exp(2*w/3),n=.5*Math.sqrt(w*m*(f-m)/f)*(p-f/2<0?-1:1);select(t,a,o,Math.max(s,Math.floor(o-p*m/f+n)),Math.min(r,Math.floor(o+(f-p)*m/f+n)),e)}var c=a[2*o+e],h=s,i=r;for(swapItem(t,a,s,o),a[2*r+e]>c&&swapItem(t,a,s,r);h<i;){for(swapItem(t,a,h,i),h++,i--;a[2*h+e]<c;)h++;for(;a[2*i+e]>c;)i--}a[2*s+e]===c?swapItem(t,a,s,i):(i++,swapItem(t,a,i,r)),i<=o&&(s=i+1),o<=i&&(r=i-1)}}function swapItem(t,a,o,s){swap(t,o,s),swap(a,2*o,2*s),swap(a,2*o+1,2*s+1)}function swap(t,a,o){var s=t[a];t[a]=t[o],t[o]=s}module.exports=sortKD;
},{}],25:[function(_dereq_,module,exports){
"use strict";function within(s,p,r,t,u,h){for(var i=[0,s.length-1,0],o=[],n=u*u;i.length;){var e=i.pop(),a=i.pop(),f=i.pop();if(a-f<=h)for(var v=f;v<=a;v++)sqDist(p[2*v],p[2*v+1],r,t)<=n&&o.push(s[v]);else{var l=Math.floor((f+a)/2),c=p[2*l],q=p[2*l+1];sqDist(c,q,r,t)<=n&&o.push(s[l]);var D=(e+1)%2;(0===e?r-u<=c:t-u<=q)&&(i.push(f),i.push(l-1),i.push(D)),(0===e?r+u>=c:t+u>=q)&&(i.push(l+1),i.push(a),i.push(D))}}return o}function sqDist(s,p,r,t){var u=s-r,h=p-t;return u*u+h*h}module.exports=within;
},{}],26:[function(_dereq_,module,exports){
function isObjectLike(r){return!!r&&"object"==typeof r}function arraySome(r,e){for(var a=-1,t=r.length;++a<t;)if(e(r[a],a,r))return!0;return!1}function baseIsEqual(r,e,a,t,o,n){return r===e||(null==r||null==e||!isObject(r)&&!isObjectLike(e)?r!==r&&e!==e:baseIsEqualDeep(r,e,baseIsEqual,a,t,o,n))}function baseIsEqualDeep(r,e,a,t,o,n,u){var c=isArray(r),s=isArray(e),i=arrayTag,g=arrayTag;c||(i=objToString.call(r),i==argsTag?i=objectTag:i!=objectTag&&(c=isTypedArray(r))),s||(g=objToString.call(e),g==argsTag?g=objectTag:g!=objectTag&&(s=isTypedArray(e)));var b=i==objectTag,l=g==objectTag,f=i==g;if(f&&!c&&!b)return equalByTag(r,e,i);if(!o){var y=b&&hasOwnProperty.call(r,"__wrapped__"),T=l&&hasOwnProperty.call(e,"__wrapped__");if(y||T)return a(y?r.value():r,T?e.value():e,t,o,n,u)}if(!f)return!1;n||(n=[]),u||(u=[]);for(var j=n.length;j--;)if(n[j]==r)return u[j]==e;n.push(r),u.push(e);var p=(c?equalArrays:equalObjects)(r,e,a,t,o,n,u);return n.pop(),u.pop(),p}function equalArrays(r,e,a,t,o,n,u){var c=-1,s=r.length,i=e.length;if(s!=i&&!(o&&i>s))return!1;for(;++c<s;){var g=r[c],b=e[c],l=t?t(o?b:g,o?g:b,c):void 0;if(void 0!==l){if(l)continue;return!1}if(o){if(!arraySome(e,function(r){return g===r||a(g,r,t,o,n,u)}))return!1}else if(g!==b&&!a(g,b,t,o,n,u))return!1}return!0}function equalByTag(r,e,a){switch(a){case boolTag:case dateTag:return+r==+e;case errorTag:return r.name==e.name&&r.message==e.message;case numberTag:return r!=+r?e!=+e:r==+e;case regexpTag:case stringTag:return r==e+""}return!1}function equalObjects(r,e,a,t,o,n,u){var c=keys(r),s=c.length;if(s!=keys(e).length&&!o)return!1;for(var i=s;i--;){var g=c[i];if(!(o?g in e:hasOwnProperty.call(e,g)))return!1}for(var b=o;++i<s;){g=c[i];var l=r[g],f=e[g],y=t?t(o?f:l,o?l:f,g):void 0;if(!(void 0===y?a(l,f,t,o,n,u):y))return!1;b||(b="constructor"==g)}if(!b){var T=r.constructor,j=e.constructor;if(T!=j&&"constructor"in r&&"constructor"in e&&!("function"==typeof T&&T instanceof T&&"function"==typeof j&&j instanceof j))return!1}return!0}function isObject(r){var e=typeof r;return!!r&&("object"==e||"function"==e)}var isArray=_dereq_("lodash.isarray"),isTypedArray=_dereq_("lodash.istypedarray"),keys=_dereq_("lodash.keys"),argsTag="[object Arguments]",arrayTag="[object Array]",boolTag="[object Boolean]",dateTag="[object Date]",errorTag="[object Error]",numberTag="[object Number]",objectTag="[object Object]",regexpTag="[object RegExp]",stringTag="[object String]",objectProto=Object.prototype,hasOwnProperty=objectProto.hasOwnProperty,objToString=objectProto.toString;module.exports=baseIsEqual;
},{"lodash.isarray":30,"lodash.istypedarray":32,"lodash.keys":33}],27:[function(_dereq_,module,exports){
function bindCallback(n,t,r){if("function"!=typeof n)return identity;if(void 0===t)return n;switch(r){case 1:return function(r){return n.call(t,r)};case 3:return function(r,e,u){return n.call(t,r,e,u)};case 4:return function(r,e,u,c){return n.call(t,r,e,u,c)};case 5:return function(r,e,u,c,i){return n.call(t,r,e,u,c,i)}}return function(){return n.apply(t,arguments)}}function identity(n){return n}module.exports=bindCallback;
},{}],28:[function(_dereq_,module,exports){
function isObjectLike(t){return!!t&&"object"==typeof t}function getNative(t,o){var e=null==t?void 0:t[o];return isNative(e)?e:void 0}function isFunction(t){return isObject(t)&&objToString.call(t)==funcTag}function isObject(t){var o=typeof t;return!!t&&("object"==o||"function"==o)}function isNative(t){return null!=t&&(isFunction(t)?reIsNative.test(fnToString.call(t)):isObjectLike(t)&&reIsHostCtor.test(t))}var funcTag="[object Function]",reIsHostCtor=/^\[object .+?Constructor\]$/,objectProto=Object.prototype,fnToString=Function.prototype.toString,hasOwnProperty=objectProto.hasOwnProperty,objToString=objectProto.toString,reIsNative=RegExp("^"+fnToString.call(hasOwnProperty).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");module.exports=getNative;
},{}],29:[function(_dereq_,module,exports){
function isArguments(t){return isArrayLikeObject(t)&&hasOwnProperty.call(t,"callee")&&(!propertyIsEnumerable.call(t,"callee")||objectToString.call(t)==argsTag)}function isArrayLike(t){return null!=t&&isLength(t.length)&&!isFunction(t)}function isArrayLikeObject(t){return isObjectLike(t)&&isArrayLike(t)}function isFunction(t){var e=isObject(t)?objectToString.call(t):"";return e==funcTag||e==genTag}function isLength(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=MAX_SAFE_INTEGER}function isObject(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function isObjectLike(t){return!!t&&"object"==typeof t}var MAX_SAFE_INTEGER=9007199254740991,argsTag="[object Arguments]",funcTag="[object Function]",genTag="[object GeneratorFunction]",objectProto=Object.prototype,hasOwnProperty=objectProto.hasOwnProperty,objectToString=objectProto.toString,propertyIsEnumerable=objectProto.propertyIsEnumerable;module.exports=isArguments;
},{}],30:[function(_dereq_,module,exports){
function isObjectLike(t){return!!t&&"object"==typeof t}function getNative(t,r){var e=null==t?void 0:t[r];return isNative(e)?e:void 0}function isLength(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=MAX_SAFE_INTEGER}function isFunction(t){return isObject(t)&&objToString.call(t)==funcTag}function isObject(t){var r=typeof t;return!!t&&("object"==r||"function"==r)}function isNative(t){return null!=t&&(isFunction(t)?reIsNative.test(fnToString.call(t)):isObjectLike(t)&&reIsHostCtor.test(t))}var arrayTag="[object Array]",funcTag="[object Function]",reIsHostCtor=/^\[object .+?Constructor\]$/,objectProto=Object.prototype,fnToString=Function.prototype.toString,hasOwnProperty=objectProto.hasOwnProperty,objToString=objectProto.toString,reIsNative=RegExp("^"+fnToString.call(hasOwnProperty).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),nativeIsArray=getNative(Array,"isArray"),MAX_SAFE_INTEGER=9007199254740991,isArray=nativeIsArray||function(t){return isObjectLike(t)&&isLength(t.length)&&objToString.call(t)==arrayTag};module.exports=isArray;
},{}],31:[function(_dereq_,module,exports){
function isEqual(a,l,i,e){i="function"==typeof i?bindCallback(i,e,3):void 0;var s=i?i(a,l):void 0;return void 0===s?baseIsEqual(a,l,i):!!s}var baseIsEqual=_dereq_("lodash._baseisequal"),bindCallback=_dereq_("lodash._bindcallback");module.exports=isEqual;
},{"lodash._baseisequal":26,"lodash._bindcallback":27}],32:[function(_dereq_,module,exports){
function isLength(a){return"number"==typeof a&&a>-1&&a%1==0&&a<=MAX_SAFE_INTEGER}function isObjectLike(a){return!!a&&"object"==typeof a}function isTypedArray(a){return isObjectLike(a)&&isLength(a.length)&&!!typedArrayTags[objectToString.call(a)]}var MAX_SAFE_INTEGER=9007199254740991,argsTag="[object Arguments]",arrayTag="[object Array]",boolTag="[object Boolean]",dateTag="[object Date]",errorTag="[object Error]",funcTag="[object Function]",mapTag="[object Map]",numberTag="[object Number]",objectTag="[object Object]",regexpTag="[object RegExp]",setTag="[object Set]",stringTag="[object String]",weakMapTag="[object WeakMap]",arrayBufferTag="[object ArrayBuffer]",dataViewTag="[object DataView]",float32Tag="[object Float32Array]",float64Tag="[object Float64Array]",int8Tag="[object Int8Array]",int16Tag="[object Int16Array]",int32Tag="[object Int32Array]",uint8Tag="[object Uint8Array]",uint8ClampedTag="[object Uint8ClampedArray]",uint16Tag="[object Uint16Array]",uint32Tag="[object Uint32Array]",typedArrayTags={};typedArrayTags[float32Tag]=typedArrayTags[float64Tag]=typedArrayTags[int8Tag]=typedArrayTags[int16Tag]=typedArrayTags[int32Tag]=typedArrayTags[uint8Tag]=typedArrayTags[uint8ClampedTag]=typedArrayTags[uint16Tag]=typedArrayTags[uint32Tag]=!0,typedArrayTags[argsTag]=typedArrayTags[arrayTag]=typedArrayTags[arrayBufferTag]=typedArrayTags[boolTag]=typedArrayTags[dataViewTag]=typedArrayTags[dateTag]=typedArrayTags[errorTag]=typedArrayTags[funcTag]=typedArrayTags[mapTag]=typedArrayTags[numberTag]=typedArrayTags[objectTag]=typedArrayTags[regexpTag]=typedArrayTags[setTag]=typedArrayTags[stringTag]=typedArrayTags[weakMapTag]=!1;var objectProto=Object.prototype,objectToString=objectProto.toString;module.exports=isTypedArray;
},{}],33:[function(_dereq_,module,exports){
function baseProperty(e){return function(t){return null==t?void 0:t[e]}}function isArrayLike(e){return null!=e&&isLength(getLength(e))}function isIndex(e,t){return e="number"==typeof e||reIsUint.test(e)?+e:-1,t=null==t?MAX_SAFE_INTEGER:t,e>-1&&e%1==0&&e<t}function isLength(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=MAX_SAFE_INTEGER}function shimKeys(e){for(var t=keysIn(e),r=t.length,n=r&&e.length,s=!!n&&isLength(n)&&(isArray(e)||isArguments(e)),o=-1,i=[];++o<r;){var u=t[o];(s&&isIndex(u,n)||hasOwnProperty.call(e,u))&&i.push(u)}return i}function isObject(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function keysIn(e){if(null==e)return[];isObject(e)||(e=Object(e));var t=e.length;t=t&&isLength(t)&&(isArray(e)||isArguments(e))&&t||0;for(var r=e.constructor,n=-1,s="function"==typeof r&&r.prototype===e,o=Array(t),i=t>0;++n<t;)o[n]=n+"";for(var u in e)i&&isIndex(u,t)||"constructor"==u&&(s||!hasOwnProperty.call(e,u))||o.push(u);return o}var getNative=_dereq_("lodash._getnative"),isArguments=_dereq_("lodash.isarguments"),isArray=_dereq_("lodash.isarray"),reIsUint=/^\d+$/,objectProto=Object.prototype,hasOwnProperty=objectProto.hasOwnProperty,nativeKeys=getNative(Object,"keys"),MAX_SAFE_INTEGER=9007199254740991,getLength=baseProperty("length"),keys=nativeKeys?function(e){var t=null==e?void 0:e.constructor;return"function"==typeof t&&t.prototype===e||"function"!=typeof e&&isArrayLike(e)?shimKeys(e):isObject(e)?nativeKeys(e):[]}:shimKeys;module.exports=keys;
},{"lodash._getnative":28,"lodash.isarguments":29,"lodash.isarray":30}],34:[function(_dereq_,module,exports){
"use strict";function isSupported(e){return!!(isBrowser()&&isArraySupported()&&isFunctionSupported()&&isObjectSupported()&&isJSONSupported()&&isWorkerSupported()&&isUint8ClampedArraySupported()&&isWebGLSupportedCached(e&&e.failIfMajorPerformanceCaveat))}function isBrowser(){return"undefined"!=typeof window&&"undefined"!=typeof document}function isArraySupported(){return Array.prototype&&Array.prototype.every&&Array.prototype.filter&&Array.prototype.forEach&&Array.prototype.indexOf&&Array.prototype.lastIndexOf&&Array.prototype.map&&Array.prototype.some&&Array.prototype.reduce&&Array.prototype.reduceRight&&Array.isArray}function isFunctionSupported(){return Function.prototype&&Function.prototype.bind}function isObjectSupported(){return Object.keys&&Object.create&&Object.getPrototypeOf&&Object.getOwnPropertyNames&&Object.isSealed&&Object.isFrozen&&Object.isExtensible&&Object.getOwnPropertyDescriptor&&Object.defineProperty&&Object.defineProperties&&Object.seal&&Object.freeze&&Object.preventExtensions}function isJSONSupported(){return"JSON"in window&&"parse"in JSON&&"stringify"in JSON}function isWorkerSupported(){return"Worker"in window}function isUint8ClampedArraySupported(){return"Uint8ClampedArray"in window}function isWebGLSupportedCached(e){return void 0===isWebGLSupportedCache[e]&&(isWebGLSupportedCache[e]=isWebGLSupported(e)),isWebGLSupportedCache[e]}function isWebGLSupported(e){var t=document.createElement("canvas"),r=Object.create(isSupported.webGLContextAttributes);return r.failIfMajorPerformanceCaveat=e,t.probablySupportsContext?t.probablySupportsContext("webgl",r)||t.probablySupportsContext("experimental-webgl",r):t.supportsContext?t.supportsContext("webgl",r)||t.supportsContext("experimental-webgl",r):t.getContext("webgl",r)||t.getContext("experimental-webgl",r)}"undefined"!=typeof module&&module.exports?module.exports=isSupported:window&&(window.minemap=window.minemap||{},window.minemap.supported=isSupported);var isWebGLSupportedCache={};isSupported.webGLContextAttributes={antialias:!1,alpha:!0,stencil:!0,depth:!0};
},{}],35:[function(_dereq_,module,exports){
"use strict";function Pbf(t){this.buf=ArrayBuffer.isView&&ArrayBuffer.isView(t)?t:new Uint8Array(t||0),this.pos=0,this.type=0,this.length=this.buf.length}function readVarintRemainder(t,i,e){var r,s,n=e.buf;if(s=n[e.pos++],r=(112&s)>>4,s<128)return toNum(t,r,i);if(s=n[e.pos++],r|=(127&s)<<3,s<128)return toNum(t,r,i);if(s=n[e.pos++],r|=(127&s)<<10,s<128)return toNum(t,r,i);if(s=n[e.pos++],r|=(127&s)<<17,s<128)return toNum(t,r,i);if(s=n[e.pos++],r|=(127&s)<<24,s<128)return toNum(t,r,i);if(s=n[e.pos++],r|=(1&s)<<31,s<128)return toNum(t,r,i);throw new Error("Expected varint not more than 10 bytes")}function readPackedEnd(t){return t.type===Pbf.Bytes?t.readVarint()+t.pos:t.pos+1}function toNum(t,i,e){return e?4294967296*i+(t>>>0):4294967296*(i>>>0)+(t>>>0)}function writeBigVarint(t,i){var e,r;if(t>=0?(e=t%4294967296|0,r=t/4294967296|0):(e=~(-t%4294967296),r=~(-t/4294967296),4294967295^e?e=e+1|0:(e=0,r=r+1|0)),t>=0x10000000000000000||t<-0x10000000000000000)throw new Error("Given varint doesn't fit into 10 bytes");i.realloc(10),writeBigVarintLow(e,r,i),writeBigVarintHigh(r,i)}function writeBigVarintLow(t,i,e){e.buf[e.pos++]=127&t|128,t>>>=7,e.buf[e.pos++]=127&t|128,t>>>=7,e.buf[e.pos++]=127&t|128,t>>>=7,e.buf[e.pos++]=127&t|128,t>>>=7,e.buf[e.pos]=127&t}function writeBigVarintHigh(t,i){var e=(7&t)<<4;i.buf[i.pos++]|=e|((t>>>=3)?128:0),t&&(i.buf[i.pos++]=127&t|((t>>>=7)?128:0),t&&(i.buf[i.pos++]=127&t|((t>>>=7)?128:0),t&&(i.buf[i.pos++]=127&t|((t>>>=7)?128:0),t&&(i.buf[i.pos++]=127&t|((t>>>=7)?128:0),t&&(i.buf[i.pos++]=127&t)))))}function makeRoomForExtraLength(t,i,e){var r=i<=16383?1:i<=2097151?2:i<=268435455?3:Math.ceil(Math.log(i)/(7*Math.LN2));e.realloc(r);for(var s=e.pos-1;s>=t;s--)e.buf[s+r]=e.buf[s]}function writePackedVarint(t,i){for(var e=0;e<t.length;e++)i.writeVarint(t[e])}function writePackedSVarint(t,i){for(var e=0;e<t.length;e++)i.writeSVarint(t[e])}function writePackedFloat(t,i){for(var e=0;e<t.length;e++)i.writeFloat(t[e])}function writePackedDouble(t,i){for(var e=0;e<t.length;e++)i.writeDouble(t[e])}function writePackedBoolean(t,i){for(var e=0;e<t.length;e++)i.writeBoolean(t[e])}function writePackedFixed32(t,i){for(var e=0;e<t.length;e++)i.writeFixed32(t[e])}function writePackedSFixed32(t,i){for(var e=0;e<t.length;e++)i.writeSFixed32(t[e])}function writePackedFixed64(t,i){for(var e=0;e<t.length;e++)i.writeFixed64(t[e])}function writePackedSFixed64(t,i){for(var e=0;e<t.length;e++)i.writeSFixed64(t[e])}function readUInt32(t,i){return(t[i]|t[i+1]<<8|t[i+2]<<16)+16777216*t[i+3]}function writeInt32(t,i,e){t[e]=i,t[e+1]=i>>>8,t[e+2]=i>>>16,t[e+3]=i>>>24}function readInt32(t,i){return(t[i]|t[i+1]<<8|t[i+2]<<16)+(t[i+3]<<24)}function readUtf8(t,i,e){for(var r="",s=i;s<e;){var n=t[s],o=null,a=n>239?4:n>223?3:n>191?2:1;if(s+a>e)break;var h,u,f;1===a?n<128&&(o=n):2===a?128==(192&(h=t[s+1]))&&(o=(31&n)<<6|63&h)<=127&&(o=null):3===a?(h=t[s+1],u=t[s+2],128==(192&h)&&128==(192&u)&&((o=(15&n)<<12|(63&h)<<6|63&u)<=2047||o>=55296&&o<=57343)&&(o=null)):4===a&&(h=t[s+1],u=t[s+2],f=t[s+3],128==(192&h)&&128==(192&u)&&128==(192&f)&&((o=(15&n)<<18|(63&h)<<12|(63&u)<<6|63&f)<=65535||o>=1114112)&&(o=null)),null===o?(o=65533,a=1):o>65535&&(o-=65536,r+=String.fromCharCode(o>>>10&1023|55296),o=56320|1023&o),r+=String.fromCharCode(o),s+=a}return r}function writeUtf8(t,i,e){for(var r,s,n=0;n<i.length;n++){if((r=i.charCodeAt(n))>55295&&r<57344){if(!s){r>56319||n+1===i.length?(t[e++]=239,t[e++]=191,t[e++]=189):s=r;continue}if(r<56320){t[e++]=239,t[e++]=191,t[e++]=189,s=r;continue}r=s-55296<<10|r-56320|65536,s=null}else s&&(t[e++]=239,t[e++]=191,t[e++]=189,s=null);r<128?t[e++]=r:(r<2048?t[e++]=r>>6|192:(r<65536?t[e++]=r>>12|224:(t[e++]=r>>18|240,t[e++]=r>>12&63|128),t[e++]=r>>6&63|128),t[e++]=63&r|128)}return e}module.exports=Pbf;var ieee754=_dereq_("ieee754");Pbf.Varint=0,Pbf.Fixed64=1,Pbf.Bytes=2,Pbf.Fixed32=5;var SHIFT_LEFT_32=4294967296,SHIFT_RIGHT_32=1/SHIFT_LEFT_32;Pbf.prototype={destroy:function(){this.buf=null},readFields:function(t,i,e){for(e=e||this.length;this.pos<e;){var r=this.readVarint(),s=r>>3,n=this.pos;this.type=7&r,t(s,i,this),this.pos===n&&this.skip(r)}return i},readMessage:function(t,i){return this.readFields(t,i,this.readVarint()+this.pos)},readFixed32:function(){var t=readUInt32(this.buf,this.pos);return this.pos+=4,t},readSFixed32:function(){var t=readInt32(this.buf,this.pos);return this.pos+=4,t},readFixed64:function(){var t=readUInt32(this.buf,this.pos)+readUInt32(this.buf,this.pos+4)*SHIFT_LEFT_32;return this.pos+=8,t},readSFixed64:function(){var t=readUInt32(this.buf,this.pos)+readInt32(this.buf,this.pos+4)*SHIFT_LEFT_32;return this.pos+=8,t},readFloat:function(){var t=ieee754.read(this.buf,this.pos,!0,23,4);return this.pos+=4,t},readDouble:function(){var t=ieee754.read(this.buf,this.pos,!0,52,8);return this.pos+=8,t},readVarint:function(t){var i,e,r=this.buf;return e=r[this.pos++],i=127&e,e<128?i:(e=r[this.pos++],i|=(127&e)<<7,e<128?i:(e=r[this.pos++],i|=(127&e)<<14,e<128?i:(e=r[this.pos++],i|=(127&e)<<21,e<128?i:(e=r[this.pos],i|=(15&e)<<28,readVarintRemainder(i,t,this)))))},readVarint64:function(){return this.readVarint(!0)},readSVarint:function(){var t=this.readVarint();return t%2==1?(t+1)/-2:t/2},readBoolean:function(){return Boolean(this.readVarint())},readString:function(){var t=this.readVarint()+this.pos,i=readUtf8(this.buf,this.pos,t);return this.pos=t,i},readBytes:function(){var t=this.readVarint()+this.pos,i=this.buf.subarray(this.pos,t);return this.pos=t,i},readPackedVarint:function(t,i){var e=readPackedEnd(this);for(t=t||[];this.pos<e;)t.push(this.readVarint(i));return t},readPackedSVarint:function(t){var i=readPackedEnd(this);for(t=t||[];this.pos<i;)t.push(this.readSVarint());return t},readPackedBoolean:function(t){var i=readPackedEnd(this);for(t=t||[];this.pos<i;)t.push(this.readBoolean());return t},readPackedFloat:function(t){var i=readPackedEnd(this);for(t=t||[];this.pos<i;)t.push(this.readFloat());return t},readPackedDouble:function(t){var i=readPackedEnd(this);for(t=t||[];this.pos<i;)t.push(this.readDouble());return t},readPackedFixed32:function(t){var i=readPackedEnd(this);for(t=t||[];this.pos<i;)t.push(this.readFixed32());return t},readPackedSFixed32:function(t){var i=readPackedEnd(this);for(t=t||[];this.pos<i;)t.push(this.readSFixed32());return t},readPackedFixed64:function(t){var i=readPackedEnd(this);for(t=t||[];this.pos<i;)t.push(this.readFixed64());return t},readPackedSFixed64:function(t){var i=readPackedEnd(this);for(t=t||[];this.pos<i;)t.push(this.readSFixed64());return t},skip:function(t){var i=7&t;if(i===Pbf.Varint)for(;this.buf[this.pos++]>127;);else if(i===Pbf.Bytes)this.pos=this.readVarint()+this.pos;else if(i===Pbf.Fixed32)this.pos+=4;else{if(i!==Pbf.Fixed64)throw new Error("Unimplemented type: "+i);this.pos+=8}},writeTag:function(t,i){this.writeVarint(t<<3|i)},realloc:function(t){for(var i=this.length||16;i<this.pos+t;)i*=2;if(i!==this.length){var e=new Uint8Array(i);e.set(this.buf),this.buf=e,this.length=i}},finish:function(){return this.length=this.pos,this.pos=0,this.buf.subarray(0,this.length)},writeFixed32:function(t){this.realloc(4),writeInt32(this.buf,t,this.pos),this.pos+=4},writeSFixed32:function(t){this.realloc(4),writeInt32(this.buf,t,this.pos),this.pos+=4},writeFixed64:function(t){this.realloc(8),writeInt32(this.buf,-1&t,this.pos),writeInt32(this.buf,Math.floor(t*SHIFT_RIGHT_32),this.pos+4),this.pos+=8},writeSFixed64:function(t){this.realloc(8),writeInt32(this.buf,-1&t,this.pos),writeInt32(this.buf,Math.floor(t*SHIFT_RIGHT_32),this.pos+4),this.pos+=8},writeVarint:function(t){if((t=+t||0)>268435455||t<0)return void writeBigVarint(t,this);this.realloc(4),this.buf[this.pos++]=127&t|(t>127?128:0),t<=127||(this.buf[this.pos++]=127&(t>>>=7)|(t>127?128:0),t<=127||(this.buf[this.pos++]=127&(t>>>=7)|(t>127?128:0),t<=127||(this.buf[this.pos++]=t>>>7&127)))},writeSVarint:function(t){this.writeVarint(t<0?2*-t-1:2*t)},writeBoolean:function(t){this.writeVarint(Boolean(t))},writeString:function(t){t=String(t),this.realloc(4*t.length),this.pos++;var i=this.pos;this.pos=writeUtf8(this.buf,t,this.pos);var e=this.pos-i;e>=128&&makeRoomForExtraLength(i,e,this),this.pos=i-1,this.writeVarint(e),this.pos+=e},writeFloat:function(t){this.realloc(4),ieee754.write(this.buf,t,this.pos,!0,23,4),this.pos+=4},writeDouble:function(t){this.realloc(8),ieee754.write(this.buf,t,this.pos,!0,52,8),this.pos+=8},writeBytes:function(t){var i=t.length;this.writeVarint(i),this.realloc(i);for(var e=0;e<i;e++)this.buf[this.pos++]=t[e]},writeRawMessage:function(t,i){this.pos++;var e=this.pos;t(i,this);var r=this.pos-e;r>=128&&makeRoomForExtraLength(e,r,this),this.pos=e-1,this.writeVarint(r),this.pos+=r},writeMessage:function(t,i,e){this.writeTag(t,Pbf.Bytes),this.writeRawMessage(i,e)},writePackedVarint:function(t,i){this.writeMessage(t,writePackedVarint,i)},writePackedSVarint:function(t,i){this.writeMessage(t,writePackedSVarint,i)},writePackedBoolean:function(t,i){this.writeMessage(t,writePackedBoolean,i)},writePackedFloat:function(t,i){this.writeMessage(t,writePackedFloat,i)},writePackedDouble:function(t,i){this.writeMessage(t,writePackedDouble,i)},writePackedFixed32:function(t,i){this.writeMessage(t,writePackedFixed32,i)},writePackedSFixed32:function(t,i){this.writeMessage(t,writePackedSFixed32,i)},writePackedFixed64:function(t,i){this.writeMessage(t,writePackedFixed64,i)},writePackedSFixed64:function(t,i){this.writeMessage(t,writePackedSFixed64,i)},writeBytesField:function(t,i){this.writeTag(t,Pbf.Bytes),this.writeBytes(i)},writeFixed32Field:function(t,i){this.writeTag(t,Pbf.Fixed32),this.writeFixed32(i)},writeSFixed32Field:function(t,i){this.writeTag(t,Pbf.Fixed32),this.writeSFixed32(i)},writeFixed64Field:function(t,i){this.writeTag(t,Pbf.Fixed64),this.writeFixed64(i)},writeSFixed64Field:function(t,i){this.writeTag(t,Pbf.Fixed64),this.writeSFixed64(i)},writeVarintField:function(t,i){this.writeTag(t,Pbf.Varint),this.writeVarint(i)},writeSVarintField:function(t,i){this.writeTag(t,Pbf.Varint),this.writeSVarint(i)},writeStringField:function(t,i){this.writeTag(t,Pbf.Bytes),this.writeString(i)},writeFloatField:function(t,i){this.writeTag(t,Pbf.Fixed32),this.writeFloat(i)},writeDoubleField:function(t,i){this.writeTag(t,Pbf.Fixed64),this.writeDouble(i)},writeBooleanField:function(t,i){this.writeVarintField(t,Boolean(i))}};
},{"ieee754":21}],36:[function(_dereq_,module,exports){
function defaultSetTimout(){throw new Error("setTimeout has not been defined")}function defaultClearTimeout(){throw new Error("clearTimeout has not been defined")}function runTimeout(e){if(cachedSetTimeout===setTimeout)return setTimeout(e,0);if((cachedSetTimeout===defaultSetTimout||!cachedSetTimeout)&&setTimeout)return cachedSetTimeout=setTimeout,setTimeout(e,0);try{return cachedSetTimeout(e,0)}catch(t){try{return cachedSetTimeout.call(null,e,0)}catch(t){return cachedSetTimeout.call(this,e,0)}}}function runClearTimeout(e){if(cachedClearTimeout===clearTimeout)return clearTimeout(e);if((cachedClearTimeout===defaultClearTimeout||!cachedClearTimeout)&&clearTimeout)return cachedClearTimeout=clearTimeout,clearTimeout(e);try{return cachedClearTimeout(e)}catch(t){try{return cachedClearTimeout.call(null,e)}catch(t){return cachedClearTimeout.call(this,e)}}}function cleanUpNextTick(){draining&¤tQueue&&(draining=!1,currentQueue.length?queue=currentQueue.concat(queue):queueIndex=-1,queue.length&&drainQueue())}function drainQueue(){if(!draining){var e=runTimeout(cleanUpNextTick);draining=!0;for(var t=queue.length;t;){for(currentQueue=queue,queue=[];++queueIndex<t;)currentQueue&¤tQueue[queueIndex].run();queueIndex=-1,t=queue.length}currentQueue=null,draining=!1,runClearTimeout(e)}}function Item(e,t){this.fun=e,this.array=t}function noop(){}var process=module.exports={},cachedSetTimeout,cachedClearTimeout;!function(){try{cachedSetTimeout="function"==typeof setTimeout?setTimeout:defaultSetTimout}catch(e){cachedSetTimeout=defaultSetTimout}try{cachedClearTimeout="function"==typeof clearTimeout?clearTimeout:defaultClearTimeout}catch(e){cachedClearTimeout=defaultClearTimeout}}();var queue=[],draining=!1,currentQueue,queueIndex=-1;process.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];queue.push(new Item(e,t)),1!==queue.length||draining||runTimeout(drainQueue)},Item.prototype.run=function(){this.fun.apply(null,this.array)},process.title="browser",process.browser=!0,process.env={},process.argv=[],process.version="",process.versions={},process.on=noop,process.addListener=noop,process.once=noop,process.off=noop,process.removeListener=noop,process.removeAllListeners=noop,process.emit=noop,process.prependListener=noop,process.prependOnceListener=noop,process.listeners=function(e){return[]},process.binding=function(e){throw new Error("process.binding is not supported")},process.cwd=function(){return"/"},process.chdir=function(e){throw new Error("process.chdir is not supported")},process.umask=function(){return 0};
},{}],37:[function(_dereq_,module,exports){
"use strict";function partialSort(a,t,r,o,p){for(r=r||0,o=o||a.length-1,p=p||defaultCompare;o>r;){if(o-r>600){var f=o-r+1,e=t-r+1,l=Math.log(f),s=.5*Math.exp(2*l/3),i=.5*Math.sqrt(l*s*(f-s)/f)*(e-f/2<0?-1:1);partialSort(a,t,Math.max(r,Math.floor(t-e*s/f+i)),Math.min(o,Math.floor(t+(f-e)*s/f+i)),p)}var n=a[t],h=r,u=o;for(swap(a,r,t),p(a[o],n)>0&&swap(a,r,o);h<u;){for(swap(a,h,u),h++,u--;p(a[h],n)<0;)h++;for(;p(a[u],n)>0;)u--}0===p(a[r],n)?swap(a,r,u):(u++,swap(a,u,o)),u<=t&&(r=u+1),t<=u&&(o=u-1)}}function swap(a,t,r){var o=a[t];a[t]=a[r],a[r]=o}function defaultCompare(a,t){return a<t?-1:a>t?1:0}module.exports=partialSort;
},{}],38:[function(_dereq_,module,exports){
"use strict";function supercluster(t){return new SuperCluster(t)}function SuperCluster(t){this.options=extend(Object.create(this.options),t),this.trees=new Array(this.options.maxZoom+1)}function createCluster(t,e,n,o,i){return{x:t,y:e,zoom:1/0,id:o,properties:i,parentId:-1,numPoints:n}}function createPointCluster(t,e){var n=t.geometry.coordinates;return{x:lngX(n[0]),y:latY(n[1]),zoom:1/0,id:e,parentId:-1}}function getClusterJSON(t){return{type:"Feature",properties:getClusterProperties(t),geometry:{type:"Point",coordinates:[xLng(t.x),yLat(t.y)]}}}function getClusterProperties(t){var e=t.numPoints,n=e>=1e4?Math.round(e/1e3)+"k":e>=1e3?Math.round(e/100)/10+"k":e;return extend(extend({},t.properties),{cluster:!0,cluster_id:t.id,point_count:e,point_count_abbreviated:n})}function lngX(t){return t/360+.5}function latY(t){var e=Math.sin(t*Math.PI/180),n=.5-.25*Math.log((1+e)/(1-e))/Math.PI;return n<0?0:n>1?1:n}function xLng(t){return 360*(t-.5)}function yLat(t){var e=(180-360*t)*Math.PI/180;return 360*Math.atan(Math.exp(e))/Math.PI-90}function extend(t,e){for(var n in e)t[n]=e[n];return t}function getX(t){return t.x}function getY(t){return t.y}var kdbush=_dereq_("kdbush");module.exports=supercluster,SuperCluster.prototype={options:{minZoom:0,maxZoom:16,radius:40,extent:512,nodeSize:64,log:!1,reduce:null,initial:function(){return{}},map:function(t){return t}},load:function(t){var e=this.options.log;e&&console.time("total time");var n="prepare "+t.length+" points";e&&console.time(n),this.points=t;var o=t.map(createPointCluster);e&&console.timeEnd(n);for(var i=this.options.maxZoom;i>=this.options.minZoom;i--){var r=+Date.now();this.trees[i+1]=kdbush(o,getX,getY,this.options.nodeSize,Float32Array),o=this._cluster(o,i),e&&console.log("z%d: %d clusters in %dms",i,o.length,+Date.now()-r)}return this.trees[this.options.minZoom]=kdbush(o,getX,getY,this.options.nodeSize,Float32Array),e&&console.timeEnd("total time"),this},getClusters:function(t,e){for(var n=this.trees[this._limitZoom(e)],o=n.range(lngX(t[0]),latY(t[3]),lngX(t[2]),latY(t[1])),i=[],r=0;r<o.length;r++){var s=n.points[o[r]];i.push(s.numPoints?getClusterJSON(s):this.points[s.id])}return i},getChildren:function(t,e){for(var n=this.trees[e+1].points[t],o=this.options.radius/(this.options.extent*Math.pow(2,e)),i=this.trees[e+1].within(n.x,n.y,o),r=[],s=0;s<i.length;s++){var u=this.trees[e+1].points[i[s]];u.parentId===t&&r.push(u.numPoints?getClusterJSON(u):this.points[u.id])}return r},getLeaves:function(t,e,n,o){n=n||10,o=o||0;var i=[];return this._appendLeaves(i,t,e,n,o,0),i},getTile:function(t,e,n){var o=this.trees[this._limitZoom(t)],i=Math.pow(2,t),r=this.options.extent,s=this.options.radius,u=s/r,a=(n-u)/i,p=(n+1+u)/i,h={features:[]};return this._addTileFeatures(o.range((e-u)/i,a,(e+1+u)/i,p),o.points,e,n,i,h),0===e&&this._addTileFeatures(o.range(1-u/i,a,1,p),o.points,i,n,i,h),e===i-1&&this._addTileFeatures(o.range(0,a,u/i,p),o.points,-1,n,i,h),h.features.length?h:null},getClusterExpansionZoom:function(t,e){for(;e<this.options.maxZoom;){var n=this.getChildren(t,e);if(e++,1!==n.length)break;t=n[0].properties.cluster_id}return e},_appendLeaves:function(t,e,n,o,i,r){for(var s=this.getChildren(e,n),u=0;u<s.length;u++){var a=s[u].properties;if(a.cluster?r+a.point_count<=i?r+=a.point_count:r=this._appendLeaves(t,a.cluster_id,n+1,o,i,r):r<i?r++:t.push(s[u]),t.length===o)break}return r},_addTileFeatures:function(t,e,n,o,i,r){for(var s=0;s<t.length;s++){var u=e[t[s]];r.features.push({type:1,geometry:[[Math.round(this.options.extent*(u.x*i-n)),Math.round(this.options.extent*(u.y*i-o))]],tags:u.numPoints?getClusterProperties(u):this.points[u.id].properties})}},_limitZoom:function(t){return Math.max(this.options.minZoom,Math.min(t,this.options.maxZoom+1))},_cluster:function(t,e){for(var n=[],o=this.options.radius/(this.options.extent*Math.pow(2,e)),i=0;i<t.length;i++){var r=t[i];if(!(r.zoom<=e)){r.zoom=e;var s=this.trees[e+1],u=s.within(r.x,r.y,o),a=r.numPoints||1,p=r.x*a,h=r.y*a,l=null;this.options.reduce&&(l=this.options.initial(),this._accumulate(l,r));for(var c=0;c<u.length;c++){var d=s.points[u[c]];if(e<d.zoom){var m=d.numPoints||1;d.zoom=e,p+=d.x*m,h+=d.y*m,a+=m,d.parentId=i,this.options.reduce&&this._accumulate(l,d)}}1===a?n.push(r):(r.parentId=i,n.push(createCluster(p/a,h/a,a,i,l)))}}return n},_accumulate:function(t,e){var n=e.numPoints?e.properties:this.options.map(this.points[e.id].properties);this.options.reduce(t,n)}};
},{"kdbush":22}],39:[function(_dereq_,module,exports){
"use strict";function TinyQueue(t,i){if(!(this instanceof TinyQueue))return new TinyQueue(t,i);if(this.data=t||[],this.length=this.data.length,this.compare=i||defaultCompare,this.length>0)for(var e=this.length>>1;e>=0;e--)this._down(e)}function defaultCompare(t,i){return t<i?-1:t>i?1:0}module.exports=TinyQueue,TinyQueue.prototype={push:function(t){this.data.push(t),this.length++,this._up(this.length-1)},pop:function(){if(0!==this.length){var t=this.data[0];return this.length--,this.length>0&&(this.data[0]=this.data[this.length],this._down(0)),this.data.pop(),t}},peek:function(){return this.data[0]},_up:function(t){for(var i=this.data,e=this.compare,h=i[t];t>0;){var n=t-1>>1,a=i[n];if(e(h,a)>=0)break;i[t]=a,t=n}i[t]=h},_down:function(t){for(var i=this.data,e=this.compare,h=this.length,n=h>>1,a=i[t];t<n;){var s=1+(t<<1),u=s+1,r=i[s];if(u<h&&e(i[u],r)<0&&(s=u,r=i[u]),e(r,a)>=0)break;i[t]=r,t=s}i[t]=a}};
},{}],40:[function(_dereq_,module,exports){
"function"==typeof Object.create?module.exports=function(t,e){t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}})}:module.exports=function(t,e){t.super_=e;var o=function(){};o.prototype=e.prototype,t.prototype=new o,t.prototype.constructor=t};
},{}],41:[function(_dereq_,module,exports){
module.exports=function(o){return o&&"object"==typeof o&&"function"==typeof o.copy&&"function"==typeof o.fill&&"function"==typeof o.readUInt8};
},{}],42:[function(_dereq_,module,exports){
(function (process,global){
function inspect(e,r){var t={seen:[],stylize:stylizeNoColor};return arguments.length>=3&&(t.depth=arguments[2]),arguments.length>=4&&(t.colors=arguments[3]),isBoolean(r)?t.showHidden=r:r&&exports._extend(t,r),isUndefined(t.showHidden)&&(t.showHidden=!1),isUndefined(t.depth)&&(t.depth=2),isUndefined(t.colors)&&(t.colors=!1),isUndefined(t.customInspect)&&(t.customInspect=!0),t.colors&&(t.stylize=stylizeWithColor),formatValue(t,e,t.depth)}function stylizeWithColor(e,r){var t=inspect.styles[r];return t?"["+inspect.colors[t][0]+"m"+e+"["+inspect.colors[t][1]+"m":e}function stylizeNoColor(e,r){return e}function arrayToHash(e){var r={};return e.forEach(function(e,t){r[e]=!0}),r}function formatValue(e,r,t){if(e.customInspect&&r&&isFunction(r.inspect)&&r.inspect!==exports.inspect&&(!r.constructor||r.constructor.prototype!==r)){var n=r.inspect(t,e);return isString(n)||(n=formatValue(e,n,t)),n}var i=formatPrimitive(e,r);if(i)return i;var o=Object.keys(r),s=arrayToHash(o);if(e.showHidden&&(o=Object.getOwnPropertyNames(r)),isError(r)&&(o.indexOf("message")>=0||o.indexOf("description")>=0))return formatError(r);if(0===o.length){if(isFunction(r)){var u=r.name?": "+r.name:"";return e.stylize("[Function"+u+"]","special")}if(isRegExp(r))return e.stylize(RegExp.prototype.toString.call(r),"regexp");if(isDate(r))return e.stylize(Date.prototype.toString.call(r),"date");if(isError(r))return formatError(r)}var c="",a=!1,l=["{","}"];if(isArray(r)&&(a=!0,l=["[","]"]),isFunction(r)){c=" [Function"+(r.name?": "+r.name:"")+"]"}if(isRegExp(r)&&(c=" "+RegExp.prototype.toString.call(r)),isDate(r)&&(c=" "+Date.prototype.toUTCString.call(r)),isError(r)&&(c=" "+formatError(r)),0===o.length&&(!a||0==r.length))return l[0]+c+l[1];if(t<0)return isRegExp(r)?e.stylize(RegExp.prototype.toString.call(r),"regexp"):e.stylize("[Object]","special");e.seen.push(r);var p;return p=a?formatArray(e,r,t,s,o):o.map(function(n){return formatProperty(e,r,t,s,n,a)}),e.seen.pop(),reduceToSingleString(p,c,l)}function formatPrimitive(e,r){if(isUndefined(r))return e.stylize("undefined","undefined");if(isString(r)){var t="'"+JSON.stringify(r).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return e.stylize(t,"string")}return isNumber(r)?e.stylize(""+r,"number"):isBoolean(r)?e.stylize(""+r,"boolean"):isNull(r)?e.stylize("null","null"):void 0}function formatError(e){return"["+Error.prototype.toString.call(e)+"]"}function formatArray(e,r,t,n,i){for(var o=[],s=0,u=r.length;s<u;++s)hasOwnProperty(r,String(s))?o.push(formatProperty(e,r,t,n,String(s),!0)):o.push("");return i.forEach(function(i){i.match(/^\d+$/)||o.push(formatProperty(e,r,t,n,i,!0))}),o}function formatProperty(e,r,t,n,i,o){var s,u,c;if(c=Object.getOwnPropertyDescriptor(r,i)||{value:r[i]},c.get?u=c.set?e.stylize("[Getter/Setter]","special"):e.stylize("[Getter]","special"):c.set&&(u=e.stylize("[Setter]","special")),hasOwnProperty(n,i)||(s="["+i+"]"),u||(e.seen.indexOf(c.value)<0?(u=isNull(t)?formatValue(e,c.value,null):formatValue(e,c.value,t-1),u.indexOf("\n")>-1&&(u=o?u.split("\n").map(function(e){return" "+e}).join("\n").substr(2):"\n"+u.split("\n").map(function(e){return" "+e}).join("\n"))):u=e.stylize("[Circular]","special")),isUndefined(s)){if(o&&i.match(/^\d+$/))return u;s=JSON.stringify(""+i),s.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(s=s.substr(1,s.length-2),s=e.stylize(s,"name")):(s=s.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),s=e.stylize(s,"string"))}return s+": "+u}function reduceToSingleString(e,r,t){var n=0;return e.reduce(function(e,r){return n++,r.indexOf("\n")>=0&&n++,e+r.replace(/\u001b\[\d\d?m/g,"").length+1},0)>60?t[0]+(""===r?"":r+"\n ")+" "+e.join(",\n ")+" "+t[1]:t[0]+r+" "+e.join(", ")+" "+t[1]}function isArray(e){return Array.isArray(e)}function isBoolean(e){return"boolean"==typeof e}function isNull(e){return null===e}function isNullOrUndefined(e){return null==e}function isNumber(e){return"number"==typeof e}function isString(e){return"string"==typeof e}function isSymbol(e){return"symbol"==typeof e}function isUndefined(e){return void 0===e}function isRegExp(e){return isObject(e)&&"[object RegExp]"===objectToString(e)}function isObject(e){return"object"==typeof e&&null!==e}function isDate(e){return isObject(e)&&"[object Date]"===objectToString(e)}function isError(e){return isObject(e)&&("[object Error]"===objectToString(e)||e instanceof Error)}function isFunction(e){return"function"==typeof e}function isPrimitive(e){return null===e||"boolean"==typeof e||"number"==typeof e||"string"==typeof e||"symbol"==typeof e||void 0===e}function objectToString(e){return Object.prototype.toString.call(e)}function pad(e){return e<10?"0"+e.toString(10):e.toString(10)}function timestamp(){var e=new Date,r=[pad(e.getHours()),pad(e.getMinutes()),pad(e.getSeconds())].join(":");return[e.getDate(),months[e.getMonth()],r].join(" ")}function hasOwnProperty(e,r){return Object.prototype.hasOwnProperty.call(e,r)}var formatRegExp=/%[sdj%]/g;exports.format=function(e){if(!isString(e)){for(var r=[],t=0;t<arguments.length;t++)r.push(inspect(arguments[t]));return r.join(" ")}for(var t=1,n=arguments,i=n.length,o=String(e).replace(formatRegExp,function(e){if("%%"===e)return"%";if(t>=i)return e;switch(e){case"%s":return String(n[t++]);case"%d":return Number(n[t++]);case"%j":try{return JSON.stringify(n[t++])}catch(e){return"[Circular]"}default:return e}}),s=n[t];t<i;s=n[++t])isNull(s)||!isObject(s)?o+=" "+s:o+=" "+inspect(s);return o},exports.deprecate=function(e,r){function t(){if(!n){if(process.throwDeprecation)throw new Error(r);process.traceDeprecation?console.trace(r):console.error(r),n=!0}return e.apply(this,arguments)}if(isUndefined(global.process))return function(){return exports.deprecate(e,r).apply(this,arguments)};if(!0===process.noDeprecation)return e;var n=!1;return t};var debugs={},debugEnviron;exports.debuglog=function(e){if(isUndefined(debugEnviron)&&(debugEnviron=process.env.NODE_DEBUG||""),e=e.toUpperCase(),!debugs[e])if(new RegExp("\\b"+e+"\\b","i").test(debugEnviron)){var r=process.pid;debugs[e]=function(){var t=exports.format.apply(exports,arguments);console.error("%s %d: %s",e,r,t)}}else debugs[e]=function(){};return debugs[e]},exports.inspect=inspect,inspect.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},inspect.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},exports.isArray=isArray,exports.isBoolean=isBoolean,exports.isNull=isNull,exports.isNullOrUndefined=isNullOrUndefined,exports.isNumber=isNumber,exports.isString=isString,exports.isSymbol=isSymbol,exports.isUndefined=isUndefined,exports.isRegExp=isRegExp,exports.isObject=isObject,exports.isDate=isDate,exports.isError=isError,exports.isFunction=isFunction,exports.isPrimitive=isPrimitive,exports.isBuffer=_dereq_("./support/isBuffer");var months=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];exports.log=function(){console.log("%s - %s",timestamp(),exports.format.apply(exports,arguments))},exports.inherits=_dereq_("inherits"),exports._extend=function(e,r){if(!r||!isObject(r))return e;for(var t=Object.keys(r),n=t.length;n--;)e[t[n]]=r[t[n]];return e};
}).call(this,_dereq_('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
},{"./support/isBuffer":41,"_process":36,"inherits":40}],43:[function(_dereq_,module,exports){
function fromVectorTileJs(e){var r=[];for(var o in e.layers)r.push(prepareLayer(e.layers[o]));var t=new Pbf;return vtpb.tile.write({layers:r},t),t.finish()}function fromGeojsonVt(e){var r={};for(var o in e)r[o]=new GeoJSONWrapper(e[o].features),r[o].name=o;return fromVectorTileJs({layers:r})}function prepareLayer(e){for(var r={name:e.name||"",version:e.version||1,extent:e.extent||4096,keys:[],values:[],features:[]},o={},t={},a=0;a<e.length;a++){var n=e.feature(a);n.geometry=encodeGeometry(n.loadGeometry());var u=[];for(var s in n.properties){var i=o[s];void 0===i&&(r.keys.push(s),i=r.keys.length-1,o[s]=i);var p=wrapValue(n.properties[s]),l=t[p.key];void 0===l&&(r.values.push(p),l=r.values.length-1,t[p.key]=l),u.push(i),u.push(l)}n.tags=u,r.features.push(n)}return r}function command(e,r){return(r<<3)+(7&e)}function zigzag(e){return e<<1^e>>31}function encodeGeometry(e){for(var r=[],o=0,t=0,a=e.length,n=0;n<a;n++){var u=e[n];r.push(command(1,1));for(var s=0;s<u.length;s++){1===s&&r.push(command(2,u.length-1));var i=u[s].x-o,p=u[s].y-t;r.push(zigzag(i),zigzag(p)),o+=i,t+=p}}return r}function wrapValue(e){var r,o=typeof e;return"string"===o?r={string_value:e}:"boolean"===o?r={bool_value:e}:"number"===o?r=e%1!=0?{double_value:e}:e<0?{sint_value:e}:{uint_value:e}:(e=JSON.stringify(e),r={string_value:e}),r.key=o+":"+e,r}var Pbf=_dereq_("pbf"),vtpb=_dereq_("./vector-tile-pb"),GeoJSONWrapper=_dereq_("./lib/geojson_wrapper");module.exports=fromVectorTileJs,module.exports.fromVectorTileJs=fromVectorTileJs,module.exports.fromGeojsonVt=fromGeojsonVt,module.exports.GeoJSONWrapper=GeoJSONWrapper;
},{"./lib/geojson_wrapper":44,"./vector-tile-pb":45,"pbf":35}],44:[function(_dereq_,module,exports){
"use strict";function GeoJSONWrapper(e){this.features=e,this.length=e.length}function FeatureWrapper(e){this.id="number"==typeof e.id?e.id:void 0,this.type=e.type,this.rawGeometry=1===e.type?[e.geometry]:e.geometry,this.properties=e.tags,this.extent=4096}var Point=_dereq_("@minemap/point-geometry"),VectorTileFeature=_dereq_("@minemap/vector-tile").VectorTileFeature;module.exports=GeoJSONWrapper,GeoJSONWrapper.prototype.feature=function(e){return new FeatureWrapper(this.features[e])},FeatureWrapper.prototype.loadGeometry=function(){var e=this.rawGeometry;this.geometry=[];for(var t=0;t<e.length;t++){for(var r=e[t],o=[],a=0;a<r.length;a++)o.push(new Point(r[a][0],r[a][1]));this.geometry.push(o)}return this.geometry},FeatureWrapper.prototype.bbox=function(){this.geometry||this.loadGeometry();for(var e=this.geometry,t=1/0,r=-1/0,o=1/0,a=-1/0,i=0;i<e.length;i++)for(var p=e[i],n=0;n<p.length;n++){var h=p[n];t=Math.min(t,h.x),r=Math.max(r,h.x),o=Math.min(o,h.y),a=Math.max(a,h.y)}return[t,o,r,a]},FeatureWrapper.prototype.toGeoJSON=VectorTileFeature.prototype.toGeoJSON;
},{"@minemap/point-geometry":2,"@minemap/vector-tile":3}],45:[function(_dereq_,module,exports){
"use strict";function readTile(e,r){return e.readFields(readTileField,{layers:[]},r)}function readTileField(e,r,i){3===e&&r.layers.push(readLayer(i,i.readVarint()+i.pos))}function writeTile(e,r){var i;if(void 0!==e.layers)for(i=0;i<e.layers.length;i++)r.writeMessage(3,writeLayer,e.layers[i])}function readValue(e,r){return e.readFields(readValueField,{},r)}function readValueField(e,r,i){1===e?r.string_value=i.readString():2===e?r.float_value=i.readFloat():3===e?r.double_value=i.readDouble():4===e?r.int_value=i.readVarint():5===e?r.uint_value=i.readVarint():6===e?r.sint_value=i.readSVarint():7===e&&(r.bool_value=i.readBoolean())}function writeValue(e,r){void 0!==e.string_value&&r.writeStringField(1,e.string_value),void 0!==e.float_value&&r.writeFloatField(2,e.float_value),void 0!==e.double_value&&r.writeDoubleField(3,e.double_value),void 0!==e.int_value&&r.writeVarintField(4,e.int_value),void 0!==e.uint_value&&r.writeVarintField(5,e.uint_value),void 0!==e.sint_value&&r.writeSVarintField(6,e.sint_value),void 0!==e.bool_value&&r.writeBooleanField(7,e.bool_value)}function readFeature(e,r){var i=e.readFields(readFeatureField,{},r);return void 0===i.type&&(i.type="Unknown"),i}function readFeatureField(e,r,i){1===e?r.id=i.readVarint():2===e?r.tags=i.readPackedVarint():3===e?r.type=i.readVarint():4===e&&(r.geometry=i.readPackedVarint())}function writeFeature(e,r){void 0!==e.id&&r.writeVarintField(1,e.id),void 0!==e.tags&&r.writePackedVarint(2,e.tags),void 0!==e.type&&r.writeVarintField(3,e.type),void 0!==e.geometry&&r.writePackedVarint(4,e.geometry)}function readLayer(e,r){return e.readFields(readLayerField,{features:[],keys:[],values:[]},r)}function readLayerField(e,r,i){15===e?r.version=i.readVarint():1===e?r.name=i.readString():2===e?r.features.push(readFeature(i,i.readVarint()+i.pos)):3===e?r.keys.push(i.readString()):4===e?r.values.push(readValue(i,i.readVarint()+i.pos)):5===e&&(r.extent=i.readVarint())}function writeLayer(e,r){void 0!==e.version&&r.writeVarintField(15,e.version),void 0!==e.name&&r.writeStringField(1,e.name);var i;if(void 0!==e.features)for(i=0;i<e.features.length;i++)r.writeMessage(2,writeFeature,e.features[i]);if(void 0!==e.keys)for(i=0;i<e.keys.length;i++)r.writeStringField(3,e.keys[i]);if(void 0!==e.values)for(i=0;i<e.values.length;i++)r.writeMessage(4,writeValue,e.values[i]);void 0!==e.extent&&r.writeVarintField(5,e.extent)}var tile=exports.tile={read:readTile,write:writeTile};tile.GeomType={Unknown:0,Point:1,LineString:2,Polygon:3},tile.value={read:readValue,write:writeValue},tile.feature={read:readFeature,write:writeFeature},tile.layer={read:readLayer,write:writeLayer};
},{}],46:[function(_dereq_,module,exports){
var bundleFn=arguments[3],sources=arguments[4],cache=arguments[5],stringify=JSON.stringify;module.exports=function(r,e){function t(r){d[r]=!0;for(var e in sources[r][1]){var n=sources[r][1][e];d[n]||t(n)}}for(var n,o=Object.keys(cache),a=0,i=o.length;a<i;a++){var s=o[a],u=cache[s].exports;if(u===r||u&&u.default===r){n=s;break}}if(!n){n=Math.floor(Math.pow(16,8)*Math.random()).toString(16);for(var f={},a=0,i=o.length;a<i;a++){var s=o[a];f[s]=s}sources[n]=[Function(["require","module","exports"],"("+r+")(self)"),f]}var c=Math.floor(Math.pow(16,8)*Math.random()).toString(16),l={};l[n]=n,sources[c]=[Function(["require"],"var f = require("+stringify(n)+");(f.default ? f.default : f)(self);"),l];var d={};t(c);var g="("+bundleFn+")({"+Object.keys(d).map(function(r){return stringify(r)+":["+sources[r][0]+","+stringify(sources[r][1])+"]"}).join(",")+"},{},["+stringify(c)+"])",v=window.URL||window.webkitURL||window.mozURL||window.msURL,w=new Blob([g],{type:"text/javascript"});if(e&&e.bare)return w;var h=v.createObjectURL(w),b=new Worker(h);return b.objectURL=h,b};
},{}],47:[function(_dereq_,module,exports){
module.exports.RADIUS=6378137,module.exports.FLATTENING=1/298.257223563,module.exports.POLAR_RADIUS=6356752.3142;
},{}],48:[function(_dereq_,module,exports){
module.exports={"version":"0.1.3"}
},{}],49:[function(_dereq_,module,exports){
!function(t,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):t.glMatrix=n()}(this,function(){"use strict";function t(t,n,r){var e=n[0],a=n[1],o=n[2];return t[0]=e*r[0]+a*r[3]+o*r[6],t[1]=e*r[1]+a*r[4]+o*r[7],t[2]=e*r[2]+a*r[5]+o*r[8],t}function n(t,n,r){var e=n[0],a=n[1],o=n[2],u=n[3];return t[0]=r[0]*e+r[4]*a+r[8]*o+r[12]*u,t[1]=r[1]*e+r[5]*a+r[9]*o+r[13]*u,t[2]=r[2]*e+r[6]*a+r[10]*o+r[14]*u,t[3]=r[3]*e+r[7]*a+r[11]*o+r[15]*u,t}function r(){var t=new Float32Array(4);return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t}function e(t,n,r){var e=n[0],a=n[1],o=n[2],u=n[3],i=Math.sin(r),c=Math.cos(r);return t[0]=e*c+o*i,t[1]=a*c+u*i,t[2]=e*-i+o*c,t[3]=a*-i+u*c,t}function a(t,n,r){var e=n[0],a=n[1],o=n[2],u=n[3],i=r[0],c=r[1];return t[0]=e*i,t[1]=a*i,t[2]=o*c,t[3]=u*c,t}function o(){var t=new Float32Array(9);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=1,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t}function u(t,n){var r=Math.sin(n),e=Math.cos(n);return t[0]=e,t[1]=r,t[2]=0,t[3]=-r,t[4]=e,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t}function i(){var t=new Float32Array(16);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}function c(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}function f(t,n){var r=n[0],e=n[1],a=n[2],o=n[3],u=n[4],i=n[5],c=n[6],f=n[7],v=n[8],s=n[9],l=n[10],M=n[11],h=n[12],m=n[13],y=n[14],d=n[15],p=r*i-e*u,w=r*c-a*u,A=r*f-o*u,F=e*c-a*i,x=e*f-o*i,b=a*f-o*c,g=v*m-s*h,j=v*y-l*h,R=v*d-M*h,X=s*y-l*m,Z=s*d-M*m,k=l*d-M*y,q=p*k-w*Z+A*X+F*R-x*j+b*g;return q?(q=1/q,t[0]=(i*k-c*Z+f*X)*q,t[1]=(a*Z-e*k-o*X)*q,t[2]=(m*b-y*x+d*F)*q,t[3]=(l*x-s*b-M*F)*q,t[4]=(c*R-u*k-f*j)*q,t[5]=(r*k-a*R+o*j)*q,t[6]=(y*A-h*b-d*w)*q,t[7]=(v*b-l*A+M*w)*q,t[8]=(u*Z-i*R+f*g)*q,t[9]=(e*R-r*Z-o*g)*q,t[10]=(h*x-m*A+d*p)*q,t[11]=(s*A-v*x-M*p)*q,t[12]=(i*j-u*X-c*g)*q,t[13]=(r*X-e*j+a*g)*q,t[14]=(m*w-h*F-y*p)*q,t[15]=(v*F-s*w+l*p)*q,t):null}function v(t,n,r){var e=n[0],a=n[1],o=n[2],u=n[3],i=n[4],c=n[5],f=n[6],v=n[7],s=n[8],l=n[9],M=n[10],h=n[11],m=n[12],y=n[13],d=n[14],p=n[15],w=r[0],A=r[1],F=r[2],x=r[3];return t[0]=w*e+A*i+F*s+x*m,t[1]=w*a+A*c+F*l+x*y,t[2]=w*o+A*f+F*M+x*d,t[3]=w*u+A*v+F*h+x*p,w=r[4],A=r[5],F=r[6],x=r[7],t[4]=w*e+A*i+F*s+x*m,t[5]=w*a+A*c+F*l+x*y,t[6]=w*o+A*f+F*M+x*d,t[7]=w*u+A*v+F*h+x*p,w=r[8],A=r[9],F=r[10],x=r[11],t[8]=w*e+A*i+F*s+x*m,t[9]=w*a+A*c+F*l+x*y,t[10]=w*o+A*f+F*M+x*d,t[11]=w*u+A*v+F*h+x*p,w=r[12],A=r[13],F=r[14],x=r[15],t[12]=w*e+A*i+F*s+x*m,t[13]=w*a+A*c+F*l+x*y,t[14]=w*o+A*f+F*M+x*d,t[15]=w*u+A*v+F*h+x*p,t}function s(t,n,r){var e,a,o,u,i,c,f,v,s,l,M,h,m=r[0],y=r[1],d=r[2];return n===t?(t[12]=n[0]*m+n[4]*y+n[8]*d+n[12],t[13]=n[1]*m+n[5]*y+n[9]*d+n[13],t[14]=n[2]*m+n[6]*y+n[10]*d+n[14],t[15]=n[3]*m+n[7]*y+n[11]*d+n[15]):(e=n[0],a=n[1],o=n[2],u=n[3],i=n[4],c=n[5],f=n[6],v=n[7],s=n[8],l=n[9],M=n[10],h=n[11],t[0]=e,t[1]=a,t[2]=o,t[3]=u,t[4]=i,t[5]=c,t[6]=f,t[7]=v,t[8]=s,t[9]=l,t[10]=M,t[11]=h,t[12]=e*m+i*y+s*d+n[12],t[13]=a*m+c*y+l*d+n[13],t[14]=o*m+f*y+M*d+n[14],t[15]=u*m+v*y+h*d+n[15]),t}function l(t,n,r){var e=r[0],a=r[1],o=r[2];return t[0]=n[0]*e,t[1]=n[1]*e,t[2]=n[2]*e,t[3]=n[3]*e,t[4]=n[4]*a,t[5]=n[5]*a,t[6]=n[6]*a,t[7]=n[7]*a,t[8]=n[8]*o,t[9]=n[9]*o,t[10]=n[10]*o,t[11]=n[11]*o,t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15],t}function M(t,n,r){var e=Math.sin(r),a=Math.cos(r),o=n[4],u=n[5],i=n[6],c=n[7],f=n[8],v=n[9],s=n[10],l=n[11];return n!==t&&(t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15]),t[4]=o*a+f*e,t[5]=u*a+v*e,t[6]=i*a+s*e,t[7]=c*a+l*e,t[8]=f*a-o*e,t[9]=v*a-u*e,t[10]=s*a-i*e,t[11]=l*a-c*e,t}function h(t,n,r){var e=Math.sin(r),a=Math.cos(r),o=n[0],u=n[1],i=n[2],c=n[3],f=n[4],v=n[5],s=n[6],l=n[7];return n!==t&&(t[8]=n[8],t[9]=n[9],t[10]=n[10],t[11]=n[11],t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15]),t[0]=o*a+f*e,t[1]=u*a+v*e,t[2]=i*a+s*e,t[3]=c*a+l*e,t[4]=f*a-o*e,t[5]=v*a-u*e,t[6]=s*a-i*e,t[7]=l*a-c*e,t}function m(t,n,r,e,a){var o=1/Math.tan(n/2),u=1/(e-a);return t[0]=o/r,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=o,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=(a+e)*u,t[11]=-1,t[12]=0,t[13]=0,t[14]=2*a*e*u,t[15]=0,t}function y(t,n,r,e,a,o,u){var i=1/(n-r),c=1/(e-a),f=1/(o-u);return t[0]=-2*i,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*c,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=2*f,t[11]=0,t[12]=(n+r)*i,t[13]=(a+e)*c,t[14]=(u+o)*f,t[15]=1,t}(function(){var t=new Float32Array(3);t[0]=0,t[1]=0,t[2]=0})(),function(){var t=new Float32Array(4);t[0]=0,t[1]=0,t[2]=0,t[3]=0}();return{vec3:{transformMat3:t},vec4:{transformMat4:n},mat2:{create:r,rotate:e,scale:a},mat3:{create:o,fromRotation:u},mat4:{create:i,identity:c,translate:s,scale:l,multiply:v,perspective:m,rotateX:M,rotateZ:h,invert:f,ortho:y}}});
},{}],50:[function(_dereq_,module,exports){
"use strict";function Point(t,i,n){this.x=t,this.y=i,this.z=n||0}module.exports=Point,Point.prototype={clone:function(){return new Point(this.x,this.y,this.z)},add:function(t){return this.clone()._add(t)},sub:function(t){return this.clone()._sub(t)},multByPoint:function(t){return this.clone()._multByPoint(t)},divByPoint:function(t){return this.clone()._divByPoint(t)},mult:function(t){return this.clone()._mult(t)},div:function(t){return this.clone()._div(t)},rotate:function(t){return this.clone()._rotate(t)},rotateAround:function(t,i){return this.clone()._rotateAround(t,i)},matMult:function(t){return this.clone()._matMult(t)},unit:function(){return this.clone()._unit()},perp:function(){return this.clone()._perp()},round:function(){return this.clone()._round()},mag:function(){return Math.sqrt(this.x*this.x+this.y*this.y)},equals:function(t){return this.x===t.x&&this.y===t.y},dist:function(t){return Math.sqrt(this.distSqr(t))},distSqr:function(t){var i=t.x-this.x,n=t.y-this.y;return i*i+n*n},angle:function(){return Math.atan2(this.y,this.x)},angleTo:function(t){return Math.atan2(this.y-t.y,this.x-t.x)},angleWith:function(t){return this.angleWithSep(t.x,t.y)},angleWithSep:function(t,i){return Math.atan2(this.x*i-this.y*t,this.x*t+this.y*i)},_matMult:function(t){var i=t[0]*this.x+t[1]*this.y,n=t[2]*this.x+t[3]*this.y;return this.x=i,this.y=n,this},_add:function(t){return this.x+=t.x,this.y+=t.y,this},_sub:function(t){return this.x-=t.x,this.y-=t.y,this},_mult:function(t){return this.x*=t,this.y*=t,this},_div:function(t){return this.x/=t,this.y/=t,this},_multByPoint:function(t){return this.x*=t.x,this.y*=t.y,this},_divByPoint:function(t){return this.x/=t.x,this.y/=t.y,this},_unit:function(){return this._div(this.mag()),this},_perp:function(){var t=this.y;return this.y=this.x,this.x=-t,this},_rotate:function(t){var i=Math.cos(t),n=Math.sin(t),s=i*this.x-n*this.y,h=n*this.x+i*this.y;return this.x=s,this.y=h,this},_rotateAround:function(t,i){var n=Math.cos(t),s=Math.sin(t),h=i.x+n*(this.x-i.x)-s*(this.y-i.y),r=i.y+s*(this.x-i.x)+n*(this.y-i.y);return this.x=h,this.y=r,this},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this}},Point.convert=function(t){return t instanceof Point?t:Array.isArray(t)?new Point(t[0],t[1]):t};
},{}],51:[function(_dereq_,module,exports){
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.ShelfPack=e()}(this,function(){function t(t,e,i){i=i||{},this.w=t||64,this.h=e||64,this.autoResize=!!i.autoResize,this.shelves=[],this.freebins=[],this.stats={},this.bins={},this.maxId=0}function e(t,e,i){this.x=0,this.y=t,this.w=this.free=e,this.h=i}function i(t,e,i,s,h,n,r){this.id=t,this.x=e,this.y=i,this.w=s,this.h=h,this.maxw=n||s,this.maxh=r||h,this.refcount=0}return t.prototype.pack=function(t,e){t=[].concat(t),e=e||{};for(var i,s,h,n,r=[],f=0;f<t.length;f++)if(i=t[f].w||t[f].width,s=t[f].h||t[f].height,h=t[f].id,i&&s){if(!(n=this.packOne(i,s,h)))continue;e.inPlace&&(t[f].x=n.x,t[f].y=n.y,t[f].id=n.id),r.push(n)}if(this.shelves.length>0){for(var o=0,a=0,u=0;u<this.shelves.length;u++){var l=this.shelves[u];a+=l.h,o=Math.max(l.w-l.free,o)}this.resize(o,a)}return r},t.prototype.packOne=function(t,i,s){var h,n,r,f,o={freebin:-1,shelf:-1,waste:1/0},a=0;if("string"==typeof s||"number"==typeof s){if(h=this.getBin(s))return this.ref(h),h;"number"==typeof s&&(this.maxId=Math.max(s,this.maxId))}else s=++this.maxId;for(f=0;f<this.freebins.length;f++){if(h=this.freebins[f],i===h.maxh&&t===h.maxw)return this.allocFreebin(f,t,i,s);i>h.maxh||t>h.maxw||i<=h.maxh&&t<=h.maxw&&(r=h.maxw*h.maxh-t*i)<o.waste&&(o.waste=r,o.freebin=f)}for(f=0;f<this.shelves.length;f++)if(n=this.shelves[f],a+=n.h,!(t>n.free)){if(i===n.h)return this.allocShelf(f,t,i,s);i>n.h||i<n.h&&(r=(n.h-i)*t)<o.waste&&(o.freebin=-1,o.waste=r,o.shelf=f)}if(-1!==o.freebin)return this.allocFreebin(o.freebin,t,i,s);if(-1!==o.shelf)return this.allocShelf(o.shelf,t,i,s);if(i<=this.h-a&&t<=this.w)return n=new e(a,this.w,i),this.allocShelf(this.shelves.push(n)-1,t,i,s);if(this.autoResize){var u,l,c,p;return u=l=this.h,c=p=this.w,(c<=u||t>c)&&(p=2*Math.max(t,c)),(u<c||i>u)&&(l=2*Math.max(i,u)),this.resize(p,l),this.packOne(t,i,s)}return null},t.prototype.allocFreebin=function(t,e,i,s){var h=this.freebins.splice(t,1)[0];return h.id=s,h.w=e,h.h=i,h.refcount=0,this.bins[s]=h,this.ref(h),h},t.prototype.allocShelf=function(t,e,i,s){var h=this.shelves[t],n=h.alloc(e,i,s);return this.bins[s]=n,this.ref(n),n},t.prototype.getBin=function(t){return this.bins[t]},t.prototype.ref=function(t){if(1==++t.refcount){var e=t.h;this.stats[e]=1+(0|this.stats[e])}return t.refcount},t.prototype.unref=function(t){return 0===t.refcount?0:(0==--t.refcount&&(this.stats[t.h]--,delete this.bins[t.id],this.freebins.push(t)),t.refcount)},t.prototype.clear=function(){this.shelves=[],this.freebins=[],this.stats={},this.bins={},this.maxId=0},t.prototype.resize=function(t,e){this.w=t,this.h=e;for(var i=0;i<this.shelves.length;i++)this.shelves[i].resize(t);return!0},e.prototype.alloc=function(t,e,s){if(t>this.free||e>this.h)return null;var h=this.x;return this.x+=t,this.free-=t,new i(s,h,this.y,t,e,t,this.h)},e.prototype.resize=function(t){return this.free+=t-this.w,this.w=t,!0},t});
},{}],52:[function(_dereq_,module,exports){
"use strict";function TinySDF(t,i,s,e,h,r){this.fontSize=t||24,this.buffer=void 0===i?3:i,this.cutoff=e||.25,this.fontFamily=h||"sans-serif",this.fontWeight=r||"normal",this.radius=s||8;var a=this.size=this.fontSize+2*this.buffer;this.canvas=document.createElement("canvas"),this.canvas.width=this.canvas.height=a,this.ctx=this.canvas.getContext("2d"),this.ctx.font=this.fontWeight+" "+this.fontSize+"px "+this.fontFamily,this.ctx.textBaseline="middle",this.ctx.fillStyle="black",this.gridOuter=new Float64Array(a*a),this.gridInner=new Float64Array(a*a),this.f=new Float64Array(a),this.d=new Float64Array(a),this.z=new Float64Array(a+1),this.v=new Int16Array(a),this.middle=Math.round(a/2*(navigator.userAgent.indexOf("Gecko/")>=0?1.2:1))}function edt(t,i,s,e,h,r,a){for(var n=0;n<i;n++){for(var o=0;o<s;o++)e[o]=t[o*i+n];for(edt1d(e,h,r,a,s),o=0;o<s;o++)t[o*i+n]=h[o]}for(o=0;o<s;o++){for(n=0;n<i;n++)e[n]=t[o*i+n];for(edt1d(e,h,r,a,i),n=0;n<i;n++)t[o*i+n]=Math.sqrt(h[n])}}function edt1d(t,i,s,e,h){s[0]=0,e[0]=-INF,e[1]=+INF;for(var r=1,a=0;r<h;r++){for(var n=(t[r]+r*r-(t[s[a]]+s[a]*s[a]))/(2*r-2*s[a]);n<=e[a];)a--,n=(t[r]+r*r-(t[s[a]]+s[a]*s[a]))/(2*r-2*s[a]);a++,s[a]=r,e[a]=n,e[a+1]=+INF}for(r=0,a=0;r<h;r++){for(;e[a+1]<r;)a++;i[r]=(r-s[a])*(r-s[a])+t[s[a]]}}module.exports=TinySDF;var INF=1e20;TinySDF.prototype.draw=function(t){this.ctx.clearRect(0,0,this.size,this.size),this.ctx.fillText(t,this.buffer,this.middle);for(var i=this.ctx.getImageData(0,0,this.size,this.size),s=new Uint8ClampedArray(this.size*this.size),e=0;e<this.size*this.size;e++){var h=i.data[4*e+3]/255;this.gridOuter[e]=1===h?0:0===h?INF:Math.pow(Math.max(0,.5-h),2),this.gridInner[e]=1===h?INF:0===h?0:Math.pow(Math.max(0,h-.5),2)}for(edt(this.gridOuter,this.size,this.size,this.f,this.d,this.v,this.z),edt(this.gridInner,this.size,this.size,this.f,this.d,this.v,this.z),e=0;e<this.size*this.size;e++){var r=this.gridOuter[e]-this.gridInner[e];s[e]=Math.max(0,Math.min(255,Math.round(255-255*(r/this.radius+this.cutoff))))}return s};
},{}],53:[function(_dereq_,module,exports){
function UnitBezier(t,i,e,r){this.cx=3*t,this.bx=3*(e-t)-this.cx,this.ax=1-this.cx-this.bx,this.cy=3*i,this.by=3*(r-i)-this.cy,this.ay=1-this.cy-this.by,this.p1x=t,this.p1y=r,this.p2x=e,this.p2y=r}module.exports=UnitBezier,UnitBezier.prototype.sampleCurveX=function(t){return((this.ax*t+this.bx)*t+this.cx)*t},UnitBezier.prototype.sampleCurveY=function(t){return((this.ay*t+this.by)*t+this.cy)*t},UnitBezier.prototype.sampleCurveDerivativeX=function(t){return(3*this.ax*t+2*this.bx)*t+this.cx},UnitBezier.prototype.solveCurveX=function(t,i){void 0===i&&(i=1e-6);var e,r,s,h,n;for(s=t,n=0;n<8;n++){if(h=this.sampleCurveX(s)-t,Math.abs(h)<i)return s;var u=this.sampleCurveDerivativeX(s);if(Math.abs(u)<1e-6)break;s-=h/u}if(e=0,r=1,(s=t)<e)return e;if(s>r)return r;for(;e<r;){if(h=this.sampleCurveX(s),Math.abs(h-t)<i)return s;t>h?e=s:r=s,s=.5*(r-e)+e}return s},UnitBezier.prototype.solve=function(t,i){return this.sampleCurveY(this.solveCurveX(t,i))};
},{}],54:[function(_dereq_,module,exports){
arguments[4][3][0].apply(exports,arguments)
},{"./lib/vectortile.js":55,"./lib/vectortilefeature.js":56,"./lib/vectortilelayer.js":57,"dup":3}],55:[function(_dereq_,module,exports){
arguments[4][4][0].apply(exports,arguments)
},{"./vectortilelayer":57,"dup":4}],56:[function(_dereq_,module,exports){
'use strict';
var Point = _dereq_('../../point-geometry');
module.exports = VectorTileFeature;
function VectorTileFeature(pbf, end, extent, keys, values) {
// Public
this.properties = {};
this.extent = extent;
this.type = 0;
// Private
this._pbf = pbf;
this._geometry = -1;
this._keys = keys;
this._values = values;
this._version = arguments[5];
pbf.readFields(readFeature, this, end);
}
function readFeature(tag, feature, pbf) {
if (tag == 1) feature.id = pbf.readVarint();
else if (tag == 2) readTag(pbf, feature);
else if (tag == 3) feature.type = pbf.readVarint();
else if (tag == 4) feature._geometry = pbf.pos;
}
function readTag(pbf, feature) {
var end = pbf.readVarint() + pbf.pos;
while (pbf.pos < end) {
var key = feature._keys[pbf.readVarint()],
value = feature._values[pbf.readVarint()];
feature.properties[key] = value;
}
}
VectorTileFeature.types = ['Unknown', 'Point', 'LineString', 'Polygon'];
VectorTileFeature.prototype.loadGeometry = function () {
var pbf = this._pbf;
pbf.pos = this._geometry;
var end = pbf.readVarint() + pbf.pos,
cmd = 1,
length = 0,
x = 0,
y = 0,
z = 0,
lines = [],
line;
while (pbf.pos < end) {
if (!length) {
var cmdLen = pbf.readVarint();
cmd = cmdLen & 0x7;
length = cmdLen >> 3;
}
length--;
if (cmd === 1 || cmd === 2) {
x += pbf.readSVarint();
y += pbf.readSVarint();
if (this._version && this._version > 100) {
z += pbf.readSVarint();
}
if (cmd === 1) { // moveTo
if (line) lines.push(line);
line = [];
}
line.push(new Point(x, y, z));
} else if (cmd === 7) {
// Workaround for https://github.com/mapbox/mapnik-vector-tile/issues/90
if (line) {
line.push(line[0].clone()); // closePolygon
}
} else {
throw new Error('unknown command ' + cmd);
}
}
if (line) lines.push(line);
return lines;
};
VectorTileFeature.prototype.bbox = function () {
var pbf = this._pbf;
pbf.pos = this._geometry;
var end = pbf.readVarint() + pbf.pos,
cmd = 1,
length = 0,
x = 0,
y = 0,
x1 = Infinity,
x2 = -Infinity,
y1 = Infinity,
y2 = -Infinity;
while (pbf.pos < end) {
if (!length) {
var cmdLen = pbf.readVarint();
cmd = cmdLen & 0x7;
length = cmdLen >> 3;
}
length--;
if (cmd === 1 || cmd === 2) {
x += pbf.readSVarint();
y += pbf.readSVarint();
if (x < x1) x1 = x;
if (x > x2) x2 = x;
if (y < y1) y1 = y;
if (y > y2) y2 = y;
} else if (cmd !== 7) {
throw new Error('unknown command ' + cmd);
}
}
return [x1, y1, x2, y2];
};
VectorTileFeature.prototype.toGeoJSON = function (x, y, z) {
var size = this.extent * Math.pow(2, z),
x0 = this.extent * x,
y0 = this.extent * y,
coords = this.loadGeometry(),
type = VectorTileFeature.types[this.type],
i, j;
let that = this;
function project(line) {
for (var j = 0; j < line.length; j++) {
var p = line[j], y2 = 180 - (p.y + y0) * 360 / size;
let arr = [
(p.x + x0) * 360 / size - 180,
360 / Math.PI * Math.atan(Math.exp(y2 * Math.PI / 180)) - 90
];
if (that._version && that._version > 100) {
arr.push(p.z);
}
line[j] = arr;
}
}
switch (this.type) {
case 1:
var points = [];
for (i = 0; i < coords.length; i++) {
points[i] = coords[i][0];
}
coords = points;
project(coords);
break;
case 2:
for (i = 0; i < coords.length; i++) {
project(coords[i]);
}
break;
case 3:
coords = classifyRings(coords);
for (i = 0; i < coords.length; i++) {
for (j = 0; j < coords[i].length; j++) {
project(coords[i][j]);
}
}
break;
}
if (coords.length === 1) {
coords = coords[0];
} else {
type = 'Multi' + type;
}
var result = {
type: "Feature",
geometry: {
type: type,
coordinates: coords
},
properties: this.properties
};
if ('id' in this) {
result.id = this.id;
}
return result;
};
// classifies an array of rings into polygons with outer rings and holes
function classifyRings(rings) {
var len = rings.length;
if (len <= 1) return [rings];
var polygons = [],
polygon,
ccw;
for (var i = 0; i < len; i++) {
var area = signedArea(rings[i]);
if (area === 0) continue;
if (ccw === undefined) ccw = area < 0;
if (ccw === area < 0) {
if (polygon) polygons.push(polygon);
polygon = [rings[i]];
} else {
polygon.push(rings[i]);
}
}
if (polygon) polygons.push(polygon);
return polygons;
}
function signedArea(ring) {
var sum = 0;
for (var i = 0, len = ring.length, j = len - 1, p1, p2; i < len; j = i++) {
p1 = ring[i];
p2 = ring[j];
sum += (p2.x - p1.x) * (p1.y + p2.y);
}
return sum;
}
},{"../../point-geometry":50}],57:[function(_dereq_,module,exports){
"use strict";function VectorTileLayer(e,t){this.version=1,this.name=null,this.extent=4096,this.length=0,this._pbf=e,this._keys=[],this._values=[],this._features=[],e.readFields(readLayer,this,t),this.length=this._features.length}function readLayer(e,t,r){15===e?t.version=r.readVarint():1===e?t.name=r.readString():5===e?t.extent=r.readVarint():2===e?t._features.push(r.pos):3===e?t._keys.push(r.readString()):4===e&&t._values.push(readValueMessage(r))}function readValueMessage(e){for(var t=null,r=e.readVarint()+e.pos;e.pos<r;){var a=e.readVarint()>>3;t=1===a?e.readString():2===a?e.readFloat():3===a?e.readDouble():4===a?e.readVarint64():5===a?e.readVarint():6===a?e.readSVarint():7===a?e.readBoolean():null}return t}var VectorTileFeature=_dereq_("./vectortilefeature.js");module.exports=VectorTileLayer,VectorTileLayer.prototype.feature=function(e){if(e<0||e>=this._features.length)throw new Error("feature index out of bounds");this._pbf.pos=this._features[e];var t=this._pbf.readVarint()+this._pbf.pos;return new VectorTileFeature(this._pbf,t,this.extent,this._keys,this._values,this.version)};
},{"./vectortilefeature.js":56}],58:[function(_dereq_,module,exports){
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t(e.WhooTS=e.WhooTS||{})}(this,function(e){function t(e,t,r,n,i,s){return s=s||{},e+"?"+["bbox="+o(r,n,i),"format="+(s.format||"image/png"),"service="+(s.service||"WMS"),"version="+(s.version||"1.1.1"),"request="+(s.request||"GetMap"),"srs="+(s.srs||"EPSG:3857"),"width="+(s.width||256),"height="+(s.height||256),"layers="+t].join("&")}function o(e,t,o){t=Math.pow(2,o)-t-1;var n=r(256*e,256*t,o),i=r(256*(e+1),256*(t+1),o);return n[0]+","+n[1]+","+i[0]+","+i[1]}function r(e,t,o){var r=2*Math.PI*6378137/256/Math.pow(2,o);return[e*r-2*Math.PI*6378137/2,t*r-2*Math.PI*6378137/2]}e.getURL=t,e.getTileBBox=o,e.getMercCoords=r,Object.defineProperty(e,"__esModule",{value:!0})});
},{}],59:[function(_dereq_,module,exports){
"use strict";function serializePaintVertexArrays(r,e){var t={};for(var a in r){var i=r[a].paintVertexArray;if(0!==i.length){var n=i.serialize(e),y=i.constructor.serialize();t[a]={array:n,type:y}}}return t}var ProgramConfiguration=_dereq_("./program_configuration"),createVertexArrayType=_dereq_("./vertex_array_type"),Segment=function(r,e){this.vertexOffset=r,this.primitiveOffset=e,this.vertexLength=0,this.primitiveLength=0},ArrayGroup=function(r,e,t){var a=this;this.globalProperties={zoom:t};var i=createVertexArrayType(r.layoutAttributes);if(this.layoutVertexArray=new i,r.dynamicLayoutAttributes){var n=createVertexArrayType(r.dynamicLayoutAttributes);this.dynamicLayoutVertexArray=new n}var y=r.elementArrayType;y&&(this.elementArray=new y);var s=r.elementArrayType2;s&&(this.elementArray2=new s),this.layerData={};for(var o=0,A=e;o<A.length;o+=1){var p=A[o],u=ProgramConfiguration.createDynamic(r,p,t);a.layerData[p.id]={layer:p,programConfiguration:u,paintVertexArray:new u.PaintVertexArray,paintPropertyStatistics:u.createPaintPropertyStatistics()}}this.segments=[],this.segments2=[]};ArrayGroup.prototype.prepareSegment=function(r){var e=this.segments[this.segments.length-1];return(!e||e.vertexLength+r>ArrayGroup.MAX_VERTEX_ARRAY_LENGTH)&&(e=new Segment(this.layoutVertexArray.length,this.elementArray.length),this.segments.push(e)),e},ArrayGroup.prototype.prepareSegment2=function(r){var e=this.segments2[this.segments2.length-1];return(!e||e.vertexLength+r>ArrayGroup.MAX_VERTEX_ARRAY_LENGTH)&&(e=new Segment(this.layoutVertexArray.length,this.elementArray2.length),this.segments2.push(e)),e},ArrayGroup.prototype.populatePaintArrays=function(r){var e=this;for(var t in e.layerData){var a=e.layerData[t];0!==a.paintVertexArray.bytesPerElement&&a.programConfiguration.populatePaintArray(a.layer,a.paintVertexArray,a.paintPropertyStatistics,e.layoutVertexArray.length,r)}},ArrayGroup.prototype.isEmpty=function(){return 0===this.layoutVertexArray.length},ArrayGroup.prototype.serialize=function(r){return{layoutVertexArray:this.layoutVertexArray.serialize(r),dynamicLayoutVertexArray:this.dynamicLayoutVertexArray&&this.dynamicLayoutVertexArray.serialize(r),elementArray:this.elementArray&&this.elementArray.serialize(r),elementArray2:this.elementArray2&&this.elementArray2.serialize(r),paintVertexArrays:serializePaintVertexArrays(this.layerData,r),segments:this.segments,segments2:this.segments2}},ArrayGroup.MAX_VERTEX_ARRAY_LENGTH=Math.pow(2,16)-1,module.exports=ArrayGroup;
},{"./program_configuration":79,"./vertex_array_type":81}],60:[function(_dereq_,module,exports){
"use strict";var ArrayGroup=_dereq_("./array_group"),BufferGroup=_dereq_("./buffer_group"),util=_dereq_("../util/util"),Bucket=function(r,e){this.zoom=r.zoom,this.overscaling=r.overscaling,this.layers=r.layers,this.index=r.index,r.arrays?this.buffers=new BufferGroup(e,r.layers,r.zoom,r.arrays):this.arrays=new ArrayGroup(e,r.layers,r.zoom)};Bucket.deserialize=function(r,e){var t={};if(!e)return t;for(var i=0,a=r;i<a.length;i+=1){var u=a[i],o=u.layerIds.map(function(r){return e.getLayer(r)}).filter(Boolean);if(0!==o.length)for(var s=o[0].createBucket(util.extend({layers:o},u)),n=0,f=o;n<f.length;n+=1){var y=f[n];t[y.id]=s}}return t},Bucket.prototype.populate=function(r,e){for(var t=this,i=0,a=r;i<a.length;i+=1){var u=a[i],o=u.feature,s=u.index,n=u.sourceLayerIndex;t.layers[0].filter(o)&&(t.addFeature(o),e.featureIndex.insert(o,s,n,t.index))}},Bucket.prototype.getPaintPropertyStatistics=function(){return util.mapObject(this.arrays.layerData,function(r){return r.paintPropertyStatistics})},Bucket.prototype.isEmpty=function(){return this.arrays.isEmpty()},Bucket.prototype.serialize=function(r){return{zoom:this.zoom,layerIds:this.layers.map(function(r){return r.id}),arrays:this.arrays.serialize(r)}},Bucket.prototype.destroy=function(){this.buffers&&(this.buffers.destroy(),this.buffers=null)},module.exports=Bucket;
},{"../util/util":247,"./array_group":59,"./buffer_group":73}],61:[function(_dereq_,module,exports){
"use strict";function addLineVertex(e,t,r,i,a,n,o){e.emplaceBack(t.x<<1|i,t.y<<1|a,h_seq,Math.round(EXTRUDE_SCALE*r.x)+128,Math.round(EXTRUDE_SCALE*r.y)+128,1+(0===n?0:n<0?-1:1)|(o*LINE_DISTANCE_SCALE&63)<<2,o*LINE_DISTANCE_SCALE>>6,seq,_count)}var Bucket=_dereq_("../bucket"),createElementArrayType=_dereq_("../element_array_type"),loadGeometry=_dereq_("../load_geometry"),EXTENT=_dereq_("../extent"),vectorTileFeatureTypes=_dereq_("../../@minemap/vector-tile").VectorTileFeature.types,h_seq=0,seq=0,_count=0,EXTRUDE_SCALE=63,COS_HALF_SHARP_CORNER=Math.cos(Math.PI/180*37.5),SHARP_CORNER_OFFSET=15,LINE_DISTANCE_BUFFER_BITS=15,LINE_DISTANCE_SCALE=.5,MAX_LINE_DISTANCE=Math.pow(2,LINE_DISTANCE_BUFFER_BITS-1)/LINE_DISTANCE_SCALE,airlineInterface={layoutAttributes:[{name:"a_pos",components:2,type:"Int16"},{name:"a_height",components:1,type:"Uint16"},{name:"a_data",components:4,type:"Uint8"},{name:"a_seq",components:2,type:"Uint16"}],paintAttributes:[{property:"airline-color"},{property:"airline-blur"},{property:"airline-opacity"},{property:"airline-gap-width",name:"gapwidth"},{property:"airline-offset"},{property:"airline-width"},{property:"airline-width",name:"floorwidth",useIntegerZoom:!0}],elementArrayType:createElementArrayType()},AirlineBucket=function(e){function t(t){e.call(this,t,airlineInterface)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.addFeature=function(e){var t=this,r=this.layers[0].layout,i=this.layers[0].getLayoutValue("airline-join",{zoom:this.zoom},e.properties),a=r["airline-cap"];seq=e.properties.link_seq,_count=e.properties.total;for(var n=0,o=loadGeometry(e,LINE_DISTANCE_BUFFER_BITS);n<o.length;n+=1){var s=o[n];t.addLine(s,e,i,a)}},t.prototype.addLine=function(e,t,r,i,a,n){for(var o=this,s=t.properties,p="Polygon"===vectorTileFeatureTypes[t.type],h=e.length;h>=2&&e[h-1].equals(e[h-2]);)h--;for(var l=0;l<h-1&&e[l].equals(e[l+1]);)l++;if(!(h<(p?3:2))){"bevel"===r&&1.05;var u=e[l],_=this.arrays,c=_.prepareSegment(10*h);this.distance=0;var y,d=void 0,E=void 0,m=void 0,A=void 0;this.e1=this.e2=this.e3=-1,p&&(y=e[h-2],A=u.sub(y)._unit()._perp());for(var L=l;L<h;L++)if(h_seq=0===L?10*t.properties.start_height:10*t.properties.end_height,!(E=p&&L===h-1?e[l+1]:e[L+1])||!e[L].equals(E)){A&&(m=A),y&&(d=y),y=e[L],A=E?E.sub(y)._unit()._perp():m,m=m||A;var v=m.add(A);0===v.x&&0===v.y||v._unit();var I=v.x*A.x+v.y*A.y,T=0!==I?1/I:1/0;d&&(o.distance+=y.dist(d)),v._mult(T),o.addCurrentVertex(y,o.distance,v,0,0,!1,c)}_.populatePaintArrays(s)}},t.prototype.addCurrentVertex=function(e,t,r,i,a,n,o){var s,p=n?1:0,h=this.arrays,l=h.layoutVertexArray,u=h.elementArray;s=r.clone(),i&&s._sub(r.perp()._mult(i)),addLineVertex(l,e,s,p,0,i,t),this.e3=o.vertexLength++,this.e1>=0&&this.e2>=0&&(u.emplaceBack(this.e1,this.e2,this.e3),o.primitiveLength++),this.e1=this.e2,this.e2=this.e3,s=r.mult(-1),a&&s._sub(r.perp()._mult(a)),addLineVertex(l,e,s,p,1,-a,t),this.e3=o.vertexLength++,this.e1>=0&&this.e2>=0&&(u.emplaceBack(this.e1,this.e2,this.e3),o.primitiveLength++),this.e1=this.e2,this.e2=this.e3,t>MAX_LINE_DISTANCE/2&&(this.distance=0,this.addCurrentVertex(e,this.distance,r,i,a,n,o))},t.prototype.addPieSliceVertex=function(e,t,r,i,a){var n=i?1:0;r=r.mult(i?-1:1);var o=this.arrays,s=o.layoutVertexArray,p=o.elementArray;addLineVertex(s,e,r,0,n,0,t),this.e3=a.vertexLength++,this.e1>=0&&this.e2>=0&&(p.emplaceBack(this.e1,this.e2,this.e3),a.primitiveLength++),i?this.e2=this.e3:this.e1=this.e3},t}(Bucket);AirlineBucket.programInterface=airlineInterface,module.exports=AirlineBucket;
},{"../../@minemap/vector-tile":54,"../bucket":60,"../element_array_type":74,"../extent":75,"../load_geometry":77}],62:[function(_dereq_,module,exports){
"use strict";function addCircleVertex(e,r,t,c,a,o){e.emplaceBack(2*r+(c+1)/2,2*t+(a+1)/2,o)}var Bucket=_dereq_("../bucket"),createElementArrayType=_dereq_("../element_array_type"),loadGeometry=_dereq_("../load_geometry"),EXTENT=_dereq_("../extent"),circleInterface={layoutAttributes:[{name:"a_pos",components:2,type:"Int16"}],elementArrayType:createElementArrayType(),paintAttributes:[{property:"circle-color"},{property:"circle-radius"},{property:"circle-blur"},{property:"circle-opacity"},{property:"circle-stroke-color"},{property:"circle-stroke-width"},{property:"circle-stroke-opacity"}]},CircleBucket=function(e){function r(r){e.call(this,r,circleInterface)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.addFeature=function(e){for(var r=this.arrays,t=0,c=loadGeometry(e);t<c.length;t+=1)for(var a=c[t],o=0,p=a;o<p.length;o+=1){var l=p[o],i=l.x,y=l.y;if(!(i<0||i>=EXTENT||y<0||y>=EXTENT)){var n=r.prepareSegment(4),u=n.vertexLength;addCircleVertex(r.layoutVertexArray,i,y,-1,-1,l.z),addCircleVertex(r.layoutVertexArray,i,y,1,-1,l.z),addCircleVertex(r.layoutVertexArray,i,y,1,1,l.z),addCircleVertex(r.layoutVertexArray,i,y,-1,1,l.z),r.elementArray.emplaceBack(u,u+1,u+2),r.elementArray.emplaceBack(u,u+3,u+2),n.vertexLength+=4,n.primitiveLength+=2}}r.populatePaintArrays(e.properties)},r}(Bucket);CircleBucket.programInterface=circleInterface,module.exports=CircleBucket;
},{"../bucket":60,"../element_array_type":74,"../extent":75,"../load_geometry":77}],63:[function(_dereq_,module,exports){
"use strict";function addLineVertex(e,t,r,i,a,n,s){e.emplaceBack(t.x<<1|i,t.y<<1|a,Math.round(EXTRUDE_SCALE*r.x)+128,Math.round(EXTRUDE_SCALE*r.y)+128,1+(0===n?0:n<0?-1:1)|(s*LINE_DISTANCE_SCALE&63)<<2,s*LINE_DISTANCE_SCALE>>6,seq,total,offset)}var Bucket=_dereq_("../bucket"),createElementArrayType=_dereq_("../element_array_type"),loadGeometry=_dereq_("../load_geometry"),EXTENT=_dereq_("../extent"),vectorTileFeatureTypes=_dereq_("../../@minemap/vector-tile").VectorTileFeature.types,seq=0,total=0,offset=0,EXTRUDE_SCALE=63,COS_HALF_SHARP_CORNER=Math.cos(Math.PI/180*37.5),SHARP_CORNER_OFFSET=15,LINE_DISTANCE_BUFFER_BITS=15,LINE_DISTANCE_SCALE=.5,MAX_LINE_DISTANCE=Math.pow(2,LINE_DISTANCE_BUFFER_BITS-1)/LINE_DISTANCE_SCALE,dynamicLineInterface={layoutAttributes:[{name:"a_pos",components:2,type:"Int16"},{name:"a_data",components:4,type:"Uint8"},{name:"a_seq",components:1,type:"Uint16"},{name:"a_info",components:2,type:"Uint16"}],paintAttributes:[{property:"dynamicLine-color"},{property:"dynamicLine-blur"},{property:"dynamicLine-opacity"},{property:"dynamicLine-gap-width",name:"gapwidth"},{property:"dynamicLine-offset"},{property:"dynamicLine-width"},{property:"dynamicLine-width",name:"floorwidth",useIntegerZoom:!0}],elementArrayType:createElementArrayType()},DynamicLineBucket=function(e){function t(t){e.call(this,t,dynamicLineInterface)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.addFeature=function(e){var t=this,r=this.layers[0].layout,i=this.layers[0].getLayoutValue("dynamicLine-join",{zoom:this.zoom},e.properties),a=r["dynamicLine-cap"];seq=e.properties.link_seq,total=e.properties.total_link_count,offset=e.properties.offset_link_count;for(var n=0,s=loadGeometry(e,LINE_DISTANCE_BUFFER_BITS);n<s.length;n+=1){var d=s[n];t.addLine(d,e,i,a)}},t.prototype.addLine=function(e,t,r,i,a,n){for(var s=this,d=t.properties,o="Polygon"===vectorTileFeatureTypes[t.type],u=e.length;u>=2&&e[u-1].equals(e[u-2]);)u--;for(var c=0;c<u-1&&e[c].equals(e[c+1]);)c++;if(!(u<(o?3:2))){"bevel"===r&&(a=1.05);var p=SHARP_CORNER_OFFSET*(EXTENT/(512*this.overscaling)),l=e[c],y=this.arrays,_=y.prepareSegment(10*u);this.distance=0;var m,h,f,E=i,L=o?"butt":i,v=!0,x=void 0,C=void 0,A=void 0,S=void 0;this.e1=this.e2=this.e3=-1,o&&(m=e[u-2],S=l.sub(m)._unit()._perp());for(var T=c;T<u;T++)if(seq++,!(C=o&&T===u-1?e[c+1]:e[T+1])||!e[T].equals(C)){S&&(A=S),m&&(x=m),m=e[T],S=C?C.sub(m)._unit()._perp():A,A=A||S;var V=A.add(S);0===V.x&&0===V.y||V._unit();var I=V.x*S.x+V.y*S.y,N=0!==I?1/I:1/0,b=I<COS_HALF_SHARP_CORNER&&x&&C;if(b&&T>c){var g=m.dist(x);if(g>2*p){var R=m.sub(m.sub(x)._mult(p/g)._round());s.distance+=R.dist(x),s.addCurrentVertex(R,s.distance,A.mult(1),0,0,!1,_),x=R}}var k=x&&C,q=k?r:C?E:L;if(k&&"round"===q&&(N<n?q="miter":N<=2&&(q="fakeround")),"miter"===q&&N>a&&(q="bevel"),"bevel"===q&&(N>2&&(q="flipbevel"),N<a&&(q="miter")),x&&(s.distance+=m.dist(x)),"miter"===q)V._mult(N),s.addCurrentVertex(m,s.distance,V,0,0,!1,_);else if("flipbevel"===q){if(N>100)V=S.clone().mult(-1);else{var F=A.x*S.y-A.y*S.x>0?-1:1,B=N*A.add(S).mag()/A.sub(S).mag();V._perp()._mult(B*F)}s.addCurrentVertex(m,s.distance,V,0,0,!1,_),s.addCurrentVertex(m,s.distance,V.mult(-1),0,0,!1,_)}else if("bevel"===q||"fakeround"===q){var D=A.x*S.y-A.y*S.x>0,P=-Math.sqrt(N*N-1);if(D?(f=0,h=P):(h=0,f=P),v||s.addCurrentVertex(m,s.distance,A,h,f,!1,_),"fakeround"===q){for(var M=Math.floor(8*(.5-(I-.5))),O=void 0,U=0;U<M;U++)O=S.mult((U+1)/(M+1))._add(A)._unit(),s.addPieSliceVertex(m,s.distance,O,D,_);s.addPieSliceVertex(m,s.distance,V,D,_);for(var X=M-1;X>=0;X--)O=A.mult((X+1)/(M+1))._add(S)._unit(),s.addPieSliceVertex(m,s.distance,O,D,_)}C&&s.addCurrentVertex(m,s.distance,S,-h,-f,!1,_)}else"butt"===q?(v||s.addCurrentVertex(m,s.distance,A,0,0,!1,_),C&&s.addCurrentVertex(m,s.distance,S,0,0,!1,_)):"square"===q?(v||(s.addCurrentVertex(m,s.distance,A,1,1,!1,_),s.e1=s.e2=-1),C&&s.addCurrentVertex(m,s.distance,S,-1,-1,!1,_)):"round"===q&&(v||(s.addCurrentVertex(m,s.distance,A,0,0,!1,_),s.addCurrentVertex(m,s.distance,A,1,1,!0,_),s.e1=s.e2=-1),C&&(s.addCurrentVertex(m,s.distance,S,-1,-1,!0,_),s.addCurrentVertex(m,s.distance,S,0,0,!1,_)));if(b&&T<u-1){var w=m.dist(C);if(w>2*p){var H=m.add(C.sub(m)._mult(p/w)._round());s.distance+=H.dist(m),s.addCurrentVertex(H,s.distance,S.mult(1),0,0,!1,_),m=H}}v=!1}y.populatePaintArrays(d)}},t.prototype.addCurrentVertex=function(e,t,r,i,a,n,s){var d,o=n?1:0,u=this.arrays,c=u.layoutVertexArray,p=u.elementArray;d=r.clone(),i&&d._sub(r.perp()._mult(i)),addLineVertex(c,e,d,o,0,i,t),this.e3=s.vertexLength++,this.e1>=0&&this.e2>=0&&(p.emplaceBack(this.e1,this.e2,this.e3),s.primitiveLength++),this.e1=this.e2,this.e2=this.e3,d=r.mult(-1),a&&d._sub(r.perp()._mult(a)),addLineVertex(c,e,d,o,1,-a,t),this.e3=s.vertexLength++,this.e1>=0&&this.e2>=0&&(p.emplaceBack(this.e1,this.e2,this.e3),s.primitiveLength++),this.e1=this.e2,this.e2=this.e3,t>MAX_LINE_DISTANCE/2&&(this.distance=0,this.addCurrentVertex(e,this.distance,r,i,a,n,s))},t.prototype.addPieSliceVertex=function(e,t,r,i,a){var n=i?1:0;r=r.mult(i?-1:1);var s=this.arrays,d=s.layoutVertexArray,o=s.elementArray;addLineVertex(d,e,r,0,n,0,t),this.e3=a.vertexLength++,this.e1>=0&&this.e2>=0&&(o.emplaceBack(this.e1,this.e2,this.e3),a.primitiveLength++),i?this.e2=this.e3:this.e1=this.e3},t}(Bucket);DynamicLineBucket.programInterface=dynamicLineInterface,module.exports=DynamicLineBucket;
},{"../../@minemap/vector-tile":54,"../bucket":60,"../element_array_type":74,"../extent":75,"../load_geometry":77}],64:[function(_dereq_,module,exports){
"use strict";function addVertex(e,r,t,a,n,o,i,y){e.emplaceBack(r,t,2*Math.floor(a*FACTOR)+i,n*FACTOR*2,o*FACTOR*2,Math.round(y))}function isBoundaryEdge(e,r){return e.x===r.x&&(e.x<0||e.x>EXTENT)||e.y===r.y&&(e.y<0||e.y>EXTENT)}var Bucket=_dereq_("../bucket"),createElementArrayType=_dereq_("../element_array_type"),loadGeometry=_dereq_("../load_geometry"),EXTENT=_dereq_("../extent"),earcut=_dereq_("earcut"),classifyRings=_dereq_("../../util/classify_rings"),EARCUT_MAX_RINGS=500,fillExtrusionInterface={layoutAttributes:[{name:"a_pos",components:2,type:"Int16"},{name:"a_normal",components:3,type:"Int16"},{name:"a_edgedistance",components:1,type:"Int16"}],elementArrayType:createElementArrayType(3),paintAttributes:[{property:"extrusion-base"},{property:"extrusion-height"},{property:"extrusion-color"}]},FACTOR=Math.pow(2,13),FillExtrusionBucket=function(e){function r(r){e.call(this,r,fillExtrusionInterface)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.addFeature=function(e){for(var r=this.arrays,t=0,a=classifyRings(loadGeometry(e),EARCUT_MAX_RINGS);t<a.length;t+=1){for(var n=a[t],o=0,i=0,y=n;i<y.length;i+=1){o+=y[i].length}for(var u=r.prepareSegment(5*o),l=[],p=[],s=[],c=0,x=n;c<x.length;c+=1){var d=x[c];if(0!==d.length){d!==n[0]&&p.push(l.length/2);for(var m=0,h=0;h<d.length;h++){var f=d[h];if(addVertex(r.layoutVertexArray,f.x,f.y,0,0,1,1,0),s.push(u.vertexLength++),h>=1){var g=d[h-1];if(!isBoundaryEdge(f,g)){var A=f.sub(g)._perp()._unit();addVertex(r.layoutVertexArray,f.x,f.y,A.x,A.y,0,0,m),addVertex(r.layoutVertexArray,f.x,f.y,A.x,A.y,0,1,m),m+=g.dist(f),addVertex(r.layoutVertexArray,g.x,g.y,A.x,A.y,0,0,m),addVertex(r.layoutVertexArray,g.x,g.y,A.x,A.y,0,1,m);var E=u.vertexLength;r.elementArray.emplaceBack(E,E+1,E+2),r.elementArray.emplaceBack(E+1,E+2,E+3),u.vertexLength+=4,u.primitiveLength+=2}}l.push(f.x),l.push(f.y)}}}for(var _=earcut(l,p),v=0;v<_.length;v+=3)r.elementArray.emplaceBack(s[_[v]],s[_[v+1]],s[_[v+2]]);u.primitiveLength+=_.length/3}r.populatePaintArrays(e.properties)},r}(Bucket);FillExtrusionBucket.programInterface=fillExtrusionInterface,module.exports=FillExtrusionBucket;
},{"../../util/classify_rings":225,"../bucket":60,"../element_array_type":74,"../extent":75,"../load_geometry":77,"earcut":8}],65:[function(_dereq_,module,exports){
"use strict";var Bucket=_dereq_("../bucket"),createElementArrayType=_dereq_("../element_array_type"),loadGeometry=_dereq_("../load_geometry"),earcut=_dereq_("earcut"),classifyRings=_dereq_("../../util/classify_rings"),EARCUT_MAX_RINGS=500,fillInterface={layoutAttributes:[{name:"a_pos",components:2,type:"Int16"}],elementArrayType:createElementArrayType(3),elementArrayType2:createElementArrayType(2),paintAttributes:[{property:"fill-color"},{property:"fill-outline-color"},{property:"fill-opacity"}]},FillBucket=function(e){function t(t){e.call(this,t,fillInterface)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.addFeature=function(e){for(var t=this.arrays,r=0,a=classifyRings(loadGeometry(e),EARCUT_MAX_RINGS);r<a.length;r+=1){for(var l=a[r],n=0,p=0,o=l;p<o.length;p+=1){n+=o[p].length}for(var c=t.prepareSegment(n),i=c.vertexLength,y=[],u=[],s=0,g=l;s<g.length;s+=1){var h=g[s];if(0!==h.length){h!==l[0]&&u.push(y.length/2);var m=t.prepareSegment2(h.length),f=m.vertexLength;t.layoutVertexArray.emplaceBack(h[0].x,h[0].y),t.elementArray2.emplaceBack(f+h.length-1,f),y.push(h[0].x),y.push(h[0].y);for(var A=1;A<h.length;A++)t.layoutVertexArray.emplaceBack(h[A].x,h[A].y),t.elementArray2.emplaceBack(f+A-1,f+A),y.push(h[A].x),y.push(h[A].y);m.vertexLength+=h.length,m.primitiveLength+=h.length}}for(var v=earcut(y,u),_=0;_<v.length;_+=3)t.elementArray.emplaceBack(i+v[_],i+v[_+1],i+v[_+2]);c.vertexLength+=n,c.primitiveLength+=v.length/3}t.populatePaintArrays(e.properties)},t}(Bucket);FillBucket.programInterface=fillInterface,module.exports=FillBucket;
},{"../../util/classify_rings":225,"../bucket":60,"../element_array_type":74,"../load_geometry":77,"earcut":8}],66:[function(_dereq_,module,exports){
"use strict";function addVertex(e,r,t,a,o,n,y,i){e.emplaceBack(r,t,2*Math.floor(a*FACTOR)+y,o*FACTOR*2,n*FACTOR*2,Math.round(i))}function isBoundaryEdge(e,r){return e.x===r.x&&(e.x<0||e.x>EXTENT)||e.y===r.y&&(e.y<0||e.y>EXTENT)}var Bucket=_dereq_("../bucket"),createElementArrayType=_dereq_("../element_array_type"),loadGeometry=_dereq_("../load_geometry"),EXTENT=_dereq_("../extent"),earcut=_dereq_("earcut"),classifyRings=_dereq_("../../util/classify_rings"),EARCUT_MAX_RINGS=500,histogramInterface={layoutAttributes:[{name:"a_pos",components:2,type:"Int16"},{name:"a_normal",components:3,type:"Int16"},{name:"a_edgedistance",components:1,type:"Int16"}],elementArrayType:createElementArrayType(3),paintAttributes:[{property:"histogram-base"},{property:"histogram-height"},{property:"histogram-time"},{property:"histogram-color"},{property:"histogram-heightArr1"},{property:"histogram-heightArr2"},{property:"histogram-heightArr3"}]},FACTOR=Math.pow(2,13),HistogramBucket=function(e){function r(r){e.call(this,r,histogramInterface)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.addFeature=function(e){for(var r=this.arrays,t=0,a=classifyRings(loadGeometry(e),EARCUT_MAX_RINGS);t<a.length;t+=1){for(var o=a[t],n=0,y=0,i=o;y<i.length;y+=1){n+=i[y].length}for(var p=r.prepareSegment(5*n),s=[],u=[],c=[],h=0,g=o;h<g.length;h+=1){var l=g[h];if(0!==l.length){l!==o[0]&&u.push(s.length/2);for(var m=0,x=0;x<l.length;x++){var d=l[x];if(addVertex(r.layoutVertexArray,d.x,d.y,0,0,1,1,0),c.push(p.vertexLength++),x>=1){var A=l[x-1];if(!isBoundaryEdge(d,A)){var f=d.sub(A)._perp()._unit();addVertex(r.layoutVertexArray,d.x,d.y,f.x,f.y,0,0,m),addVertex(r.layoutVertexArray,d.x,d.y,f.x,f.y,0,1,m),m+=A.dist(d),addVertex(r.layoutVertexArray,A.x,A.y,f.x,f.y,0,0,m),addVertex(r.layoutVertexArray,A.x,A.y,f.x,f.y,0,1,m);var _=p.vertexLength;r.elementArray.emplaceBack(_,_+1,_+2),r.elementArray.emplaceBack(_+1,_+2,_+3),p.vertexLength+=4,p.primitiveLength+=2}}s.push(d.x),s.push(d.y)}}}for(var v=earcut(s,u),T=0;T<v.length;T+=3)r.elementArray.emplaceBack(c[v[T]],c[v[T+1]],c[v[T+2]]);p.primitiveLength+=v.length/3}r.populatePaintArrays(e.properties)},r}(Bucket);HistogramBucket.programInterface=histogramInterface,module.exports=HistogramBucket;
},{"../../util/classify_rings":225,"../bucket":60,"../element_array_type":74,"../extent":75,"../load_geometry":77,"earcut":8}],67:[function(_dereq_,module,exports){
"use strict";function addLineVertex(e,t,r,i,a,n,d){e.emplaceBack(t.x<<1|i,t.y<<1|a,Math.round(EXTRUDE_SCALE*r.x)+128,Math.round(EXTRUDE_SCALE*r.y)+128,1+(0===n?0:n<0?-1:1)|(d*LINE_DISTANCE_SCALE&63)<<2,d*LINE_DISTANCE_SCALE>>6)}var Bucket=_dereq_("../bucket"),createElementArrayType=_dereq_("../element_array_type"),loadGeometry=_dereq_("../load_geometry"),EXTENT=_dereq_("../extent"),vectorTileFeatureTypes=_dereq_("../../@minemap/vector-tile").VectorTileFeature.types,EXTRUDE_SCALE=63,COS_HALF_SHARP_CORNER=Math.cos(Math.PI/180*37.5),SHARP_CORNER_OFFSET=15,LINE_DISTANCE_BUFFER_BITS=15,LINE_DISTANCE_SCALE=.5,MAX_LINE_DISTANCE=Math.pow(2,LINE_DISTANCE_BUFFER_BITS-1)/LINE_DISTANCE_SCALE,lineInterface={layoutAttributes:[{name:"a_pos",components:2,type:"Int16"},{name:"a_data",components:4,type:"Uint8"}],paintAttributes:[{property:"line-color"},{property:"line-blur"},{property:"line-opacity"},{property:"line-gap-width",name:"gapwidth"},{property:"line-offset"},{property:"line-width"},{property:"line-width",name:"floorwidth",useIntegerZoom:!0}],elementArrayType:createElementArrayType()},LineBucket=function(e){function t(t){e.call(this,t,lineInterface)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.addFeature=function(e){for(var t=this,r=this.layers[0].layout,i=this.layers[0].getLayoutValue("line-join",{zoom:this.zoom},e.properties),a=r["line-cap"],n=r["line-miter-limit"],d=r["line-round-limit"],s=0,o=loadGeometry(e,LINE_DISTANCE_BUFFER_BITS);s<o.length;s+=1){var u=o[s];t.addLine(u,e,i,a,n,d)}},t.prototype.addLine=function(e,t,r,i,a,n){for(var d=this,s=t.properties,o="Polygon"===vectorTileFeatureTypes[t.type],u=e.length;u>=2&&e[u-1].equals(e[u-2]);)u--;for(var l=0;l<u-1&&e[l].equals(e[l+1]);)l++;if(!(u<(o?3:2))){"bevel"===r&&(a=1.05);var p=SHARP_CORNER_OFFSET*(EXTENT/(512*this.overscaling)),c=e[l],h=this.arrays,_=h.prepareSegment(10*u);this.distance=0;var y,m,E,v=i,x=o?"butt":i,C=!0,f=void 0,A=void 0,L=void 0,S=void 0;this.e1=this.e2=this.e3=-1,o&&(y=e[u-2],S=c.sub(y)._unit()._perp());for(var T=l;T<u;T++)if(!(A=o&&T===u-1?e[l+1]:e[T+1])||!e[T].equals(A)){S&&(L=S),y&&(f=y),y=e[T],S=A?A.sub(y)._unit()._perp():L,L=L||S;var V=L.add(S);0===V.x&&0===V.y||V._unit();var I=V.x*S.x+V.y*S.y,N=0!==I?1/I:1/0,b=I<COS_HALF_SHARP_CORNER&&f&&A;if(b&&T>l){var g=y.dist(f);if(g>2*p){var R=y.sub(y.sub(f)._mult(p/g)._round());d.distance+=R.dist(f),d.addCurrentVertex(R,d.distance,L.mult(1),0,0,!1,_),f=R}}var F=f&&A,B=F?r:A?v:x;if(F&&"round"===B&&(N<n?B="miter":N<=2&&(B="fakeround")),"miter"===B&&N>a&&(B="bevel"),"bevel"===B&&(N>2&&(B="flipbevel"),N<a&&(B="miter")),f&&(d.distance+=y.dist(f)),"miter"===B)V._mult(N),d.addCurrentVertex(y,d.distance,V,0,0,!1,_);else if("flipbevel"===B){if(N>100)V=S.clone().mult(-1);else{var k=L.x*S.y-L.y*S.x>0?-1:1,D=N*L.add(S).mag()/L.sub(S).mag();V._perp()._mult(D*k)}d.addCurrentVertex(y,d.distance,V,0,0,!1,_),d.addCurrentVertex(y,d.distance,V.mult(-1),0,0,!1,_)}else if("bevel"===B||"fakeround"===B){var P=L.x*S.y-L.y*S.x>0,q=-Math.sqrt(N*N-1);if(P?(E=0,m=q):(m=0,E=q),C||d.addCurrentVertex(y,d.distance,L,m,E,!1,_),"fakeround"===B){for(var M=Math.floor(8*(.5-(I-.5))),O=void 0,U=0;U<M;U++)O=S.mult((U+1)/(M+1))._add(L)._unit(),d.addPieSliceVertex(y,d.distance,O,P,_);d.addPieSliceVertex(y,d.distance,V,P,_);for(var X=M-1;X>=0;X--)O=L.mult((X+1)/(M+1))._add(S)._unit(),d.addPieSliceVertex(y,d.distance,O,P,_)}A&&d.addCurrentVertex(y,d.distance,S,-m,-E,!1,_)}else"butt"===B?(C||d.addCurrentVertex(y,d.distance,L,0,0,!1,_),A&&d.addCurrentVertex(y,d.distance,S,0,0,!1,_)):"square"===B?(C||(d.addCurrentVertex(y,d.distance,L,1,1,!1,_),d.e1=d.e2=-1),A&&d.addCurrentVertex(y,d.distance,S,-1,-1,!1,_)):"round"===B&&(C||(d.addCurrentVertex(y,d.distance,L,0,0,!1,_),d.addCurrentVertex(y,d.distance,L,1,1,!0,_),d.e1=d.e2=-1),A&&(d.addCurrentVertex(y,d.distance,S,-1,-1,!0,_),d.addCurrentVertex(y,d.distance,S,0,0,!1,_)));if(b&&T<u-1){var w=y.dist(A);if(w>2*p){var H=y.add(A.sub(y)._mult(p/w)._round());d.distance+=H.dist(y),d.addCurrentVertex(H,d.distance,S.mult(1),0,0,!1,_),y=H}}C=!1}h.populatePaintArrays(s)}},t.prototype.addCurrentVertex=function(e,t,r,i,a,n,d){var s,o=n?1:0,u=this.arrays,l=u.layoutVertexArray,p=u.elementArray;s=r.clone(),i&&s._sub(r.perp()._mult(i)),addLineVertex(l,e,s,o,0,i,t),this.e3=d.vertexLength++,this.e1>=0&&this.e2>=0&&(p.emplaceBack(this.e1,this.e2,this.e3),d.primitiveLength++),this.e1=this.e2,this.e2=this.e3,s=r.mult(-1),a&&s._sub(r.perp()._mult(a)),addLineVertex(l,e,s,o,1,-a,t),this.e3=d.vertexLength++,this.e1>=0&&this.e2>=0&&(p.emplaceBack(this.e1,this.e2,this.e3),d.primitiveLength++),this.e1=this.e2,this.e2=this.e3,t>MAX_LINE_DISTANCE/2&&(this.distance=0,this.addCurrentVertex(e,this.distance,r,i,a,n,d))},t.prototype.addPieSliceVertex=function(e,t,r,i,a){var n=i?1:0;r=r.mult(i?-1:1);var d=this.arrays,s=d.layoutVertexArray,o=d.elementArray;addLineVertex(s,e,r,0,n,0,t),this.e3=a.vertexLength++,this.e1>=0&&this.e2>=0&&(o.emplaceBack(this.e1,this.e2,this.e3),a.primitiveLength++),i?this.e2=this.e3:this.e1=this.e3},t}(Bucket);LineBucket.programInterface=lineInterface,module.exports=LineBucket;
},{"../../@minemap/vector-tile":54,"../bucket":60,"../element_array_type":74,"../extent":75,"../load_geometry":77}],68:[function(_dereq_,module,exports){
"use strict";function addLineVertex(e,t,r,i,a,s,n){e.emplaceBack(t.x<<1|i,t.y<<1|a,Math.round(EXTRUDE_SCALE*r.x)+128,Math.round(EXTRUDE_SCALE*r.y)+128,1+(0===s?0:s<0?-1:1)|(n*LINE_DISTANCE_SCALE&63)<<2,n*LINE_DISTANCE_SCALE>>6,255&curOpacity,parseInt(curNum),parseInt(curStatus))}var Bucket=_dereq_("../bucket"),createElementArrayType=_dereq_("../element_array_type"),loadGeometry=_dereq_("../load_geometry"),EXTENT=_dereq_("../extent"),vectorTileFeatureTypes=_dereq_("../../@minemap/vector-tile").VectorTileFeature.types,EXTRUDE_SCALE=63,COS_HALF_SHARP_CORNER=Math.cos(Math.PI/180*37.5),SHARP_CORNER_OFFSET=15,LINE_DISTANCE_BUFFER_BITS=15,LINE_DISTANCE_SCALE=.5,MAX_LINE_DISTANCE=Math.pow(2,LINE_DISTANCE_BUFFER_BITS-1)/LINE_DISTANCE_SCALE,spriteInterface={layoutAttributes:[{name:"a_pos",components:2,type:"Int16"},{name:"a_data",components:4,type:"Uint8"},{name:"a_extra_m",components:3,type:"Uint8"}],paintAttributes:[{property:"sprite-color"},{property:"sprite-blur"},{property:"sprite-opacity"},{property:"sprite-gap-width",name:"gapwidth"},{property:"sprite-offset"},{property:"sprite-width"},{property:"sprite-width",name:"floorwidth",useIntegerZoom:!0}],elementArrayType:createElementArrayType()},curOpacity=0,curNum=0,curStatus=1,SpriteBucket=function(e){function t(t){e.call(this,t,spriteInterface)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.addFeature=function(e){var t=this,r=this.layers[0].layout,i=this.layers[0].getLayoutValue("sprite-join",{zoom:this.zoom},e.properties),a=r["sprite-cap"],s=r["sprite-miter-limit"],n=r["sprite-round-limit"];curNum=e.properties.link_seq?e.properties.link_seq:curNum,curNum%=10,curStatus=e.properties.status||1;for(var d=0,u=loadGeometry(e,LINE_DISTANCE_BUFFER_BITS);d<u.length;d+=1){var p=u[d];t.addLine(p,e,i,a,s,n)}},t.prototype.addLine=function(e,t,r,i,a,s){for(var n=this,d=t.properties,u="Polygon"===vectorTileFeatureTypes[t.type],p=e.length;p>=2&&e[p-1].equals(e[p-2]);)p--;for(var o=0;o<p-1&&e[o].equals(e[o+1]);)o++;if(!(p<(u?3:2))){"bevel"===r&&(a=1.05);var c=SHARP_CORNER_OFFSET*(EXTENT/(512*this.overscaling)),l=e[o],h=this.arrays,_=h.prepareSegment(10*p);this.distance=0;var m,y,E,v=i,x=u?"butt":i,C=!0,S=void 0,f=void 0,A=void 0,L=void 0;this.e1=this.e2=this.e3=-1,u&&(m=e[p-2],L=l.sub(m)._unit()._perp());for(var I=o;I<p;I++)if(curOpacity=Math.round(255/p*I),!(f=u&&I===p-1?e[o+1]:e[I+1])||!e[I].equals(f)){L&&(A=L),m&&(S=m),m=e[I],L=f?f.sub(m)._unit()._perp():A,A=A||L;var N=A.add(L);0===N.x&&0===N.y||N._unit();var T=N.x*L.x+N.y*L.y,V=0!==T?1/T:1/0,b=T<COS_HALF_SHARP_CORNER&&S&&f;if(b&&I>o){var g=m.dist(S);if(g>2*c){var R=m.sub(m.sub(S)._mult(c/g)._round());n.distance+=R.dist(S),n.addCurrentVertex(R,n.distance,A.mult(1),0,0,!1,_),S=R}}var F=S&&f,k=F?r:f?v:x;if(F&&"round"===k&&(V<s?k="miter":V<=2&&(k="fakeround")),"miter"===k&&V>a&&(k="bevel"),"bevel"===k&&(V>2&&(k="flipbevel"),V<a&&(k="miter")),S&&(n.distance+=m.dist(S)),"miter"===k)N._mult(V),n.addCurrentVertex(m,n.distance,N,0,0,!1,_);else if("flipbevel"===k){if(V>100)N=L.clone().mult(-1);else{var B=A.x*L.y-A.y*L.x>0?-1:1,q=V*A.add(L).mag()/A.sub(L).mag();N._perp()._mult(q*B)}n.addCurrentVertex(m,n.distance,N,0,0,!1,_),n.addCurrentVertex(m,n.distance,N.mult(-1),0,0,!1,_)}else if("bevel"===k||"fakeround"===k){var D=A.x*L.y-A.y*L.x>0,O=-Math.sqrt(V*V-1);if(D?(E=0,y=O):(y=0,E=O),C||n.addCurrentVertex(m,n.distance,A,y,E,!1,_),"fakeround"===k){for(var P=Math.floor(8*(.5-(T-.5))),M=void 0,U=0;U<P;U++)M=L.mult((U+1)/(P+1))._add(A)._unit(),n.addPieSliceVertex(m,n.distance,M,D,_);n.addPieSliceVertex(m,n.distance,N,D,_);for(var X=P-1;X>=0;X--)M=A.mult((X+1)/(P+1))._add(L)._unit(),n.addPieSliceVertex(m,n.distance,M,D,_)}f&&n.addCurrentVertex(m,n.distance,L,-y,-E,!1,_)}else"butt"===k?(C||n.addCurrentVertex(m,n.distance,A,0,0,!1,_),f&&n.addCurrentVertex(m,n.distance,L,0,0,!1,_)):"square"===k?(C||(n.addCurrentVertex(m,n.distance,A,1,1,!1,_),n.e1=n.e2=-1),f&&n.addCurrentVertex(m,n.distance,L,-1,-1,!1,_)):"round"===k&&(C||(n.addCurrentVertex(m,n.distance,A,0,0,!1,_),n.addCurrentVertex(m,n.distance,A,1,1,!0,_),n.e1=n.e2=-1),f&&(n.addCurrentVertex(m,n.distance,L,-1,-1,!0,_),n.addCurrentVertex(m,n.distance,L,0,0,!1,_)));if(b&&I<p-1){var w=m.dist(f);if(w>2*c){var H=m.add(f.sub(m)._mult(c/w)._round());n.distance+=H.dist(m),n.addCurrentVertex(H,n.distance,L.mult(1),0,0,!1,_),m=H}}C=!1}h.populatePaintArrays(d)}},t.prototype.addCurrentVertex=function(e,t,r,i,a,s,n){var d,u=s?1:0,p=this.arrays,o=p.layoutVertexArray,c=p.elementArray;d=r.clone(),i&&d._sub(r.perp()._mult(i)),addLineVertex(o,e,d,u,0,i,t),this.e3=n.vertexLength++,this.e1>=0&&this.e2>=0&&(c.emplaceBack(this.e1,this.e2,this.e3),n.primitiveLength++),this.e1=this.e2,this.e2=this.e3,d=r.mult(-1),a&&d._sub(r.perp()._mult(a)),addLineVertex(o,e,d,u,1,-a,t),this.e3=n.vertexLength++,this.e1>=0&&this.e2>=0&&(c.emplaceBack(this.e1,this.e2,this.e3),n.primitiveLength++),this.e1=this.e2,this.e2=this.e3,t>MAX_LINE_DISTANCE/2&&(this.distance=0,this.addCurrentVertex(e,this.distance,r,i,a,s,n))},t.prototype.addPieSliceVertex=function(e,t,r,i,a){var s=i?1:0;r=r.mult(i?-1:1);var n=this.arrays,d=n.layoutVertexArray,u=n.elementArray;addLineVertex(d,e,r,0,s,0,t),this.e3=a.vertexLength++,this.e1>=0&&this.e2>=0&&(u.emplaceBack(this.e1,this.e2,this.e3),a.primitiveLength++),i?this.e2=this.e3:this.e1=this.e3},t}(Bucket);SpriteBucket.programInterface=spriteInterface,module.exports=SpriteBucket;
},{"../../@minemap/vector-tile":54,"../bucket":60,"../element_array_type":74,"../extent":75,"../load_geometry":77}],69:[function(_dereq_,module,exports){
"use strict";function addVertex(e,t,a,o,r,i,n,l){e.emplaceBack(t,a,Math.round(64*o),Math.round(64*r),i,n,l?l[0]:void 0,l?l[1]:void 0)}function addDynamicAttributes(e,t,a,o){var r=2*Math.PI,i=packUint8ToFloat((a+r)%r/r*255,10*o);e.emplaceBack(t.x,t.y,i),e.emplaceBack(t.x,t.y,i),e.emplaceBack(t.x,t.y,i),e.emplaceBack(t.x,t.y,i)}function addCollisionBoxVertex(e,t,a,o,r,i){return e.emplaceBack(t.x,t.y,a.x,a.y,Math.round(o.x),Math.round(o.y),10*r,10*i)}function getSizeData(e,t,a){var o={};if(o.isFeatureConstant=t.isLayoutValueFeatureConstant(a),o.isZoomConstant=t.isLayoutValueZoomConstant(a),o.isFeatureConstant&&(o.layoutSize=t.getLayoutValue(a,{zoom:e+1})),!o.isZoomConstant){for(var r=t.getLayoutValueStopZoomLevels(a),i=0;i<r.length&&r[i]<=e;)i++;i=Math.max(0,i-1);for(var n=i;n<r.length&&r[n]<e+1;)n++;n=Math.min(r.length-1,n),o.coveringZoomRange=[r[i],r[n]],t.isLayoutValueFeatureConstant(a)&&(o.coveringStopValues=[t.getLayoutValue(a,{zoom:r[i]}),t.getLayoutValue(a,{zoom:r[n]})]),o.functionBase=t.getLayoutProperty(a).base,void 0===o.functionBase&&(o.functionBase=1),o.functionType=t.getLayoutProperty(a).type||"exponential"}return o}function getSizeVertexData(e,t,a,o,r){return e.isLayoutValueZoomConstant(o)&&!e.isLayoutValueFeatureConstant(o)?[10*e.getLayoutValue(o,{},r)]:e.isLayoutValueZoomConstant(o)||e.isLayoutValueFeatureConstant(o)?null:[10*e.getLayoutValue(o,{zoom:a[0]},r),10*e.getLayoutValue(o,{zoom:a[1]},r)]}var Point=_dereq_("../../@minemap/point-geometry"),ArrayGroup=_dereq_("../array_group"),BufferGroup=_dereq_("../buffer_group"),createElementArrayType=_dereq_("../element_array_type"),EXTENT=_dereq_("../extent"),packUint8ToFloat=_dereq_("../../shaders/encode_attribute").packUint8ToFloat,Anchor=_dereq_("../../symbol/anchor"),getAnchors=_dereq_("../../symbol/get_anchors"),resolveTokens=_dereq_("../../util/token"),Quads=_dereq_("../../symbol/quads"),Shaping=_dereq_("../../symbol/shaping"),transformText=_dereq_("../../symbol/transform_text"),mergeLines=_dereq_("../../symbol/mergelines"),clipLine=_dereq_("../../symbol/clip_line"),util=_dereq_("../../util/util"),scriptDetection=_dereq_("../../util/script_detection"),loadGeometry=_dereq_("../load_geometry"),CollisionFeature=_dereq_("../../symbol/collision_feature"),findPoleOfInaccessibility=_dereq_("../../util/find_pole_of_inaccessibility"),classifyRings=_dereq_("../../util/classify_rings"),vectorTileFeatureTypes=_dereq_("../../@minemap/vector-tile").VectorTileFeature.types,createStructArrayType=_dereq_("../../util/struct_array"),verticalizePunctuation=_dereq_("../../util/verticalize_punctuation"),shapeText=Shaping.shapeText,shapeIcon=Shaping.shapeIcon,WritingMode=Shaping.WritingMode,getGlyphQuads=Quads.getGlyphQuads,getIconQuads=Quads.getIconQuads,PlacedSymbolArray=createStructArrayType({members:[{type:"Int16",name:"anchorX"},{type:"Int16",name:"anchorY"},{type:"Uint16",name:"glyphStartIndex"},{type:"Uint16",name:"numGlyphs"},{type:"Uint32",name:"lineStartIndex"},{type:"Uint32",name:"lineLength"},{type:"Uint16",name:"segment"},{type:"Uint16",name:"lowerSize"},{type:"Uint16",name:"upperSize"},{type:"Float32",name:"lineOffsetX"},{type:"Float32",name:"lineOffsetY"},{type:"Float32",name:"placementZoom"},{type:"Uint8",name:"vertical"}]}),GlyphOffsetArray=createStructArrayType({members:[{type:"Float32",name:"offsetX"}]}),LineVertexArray=createStructArrayType({members:[{type:"Int16",name:"x"},{type:"Int16",name:"y"}]}),elementArrayType=createElementArrayType(),layoutAttributes=[{name:"a_pos_offset",components:4,type:"Int16"},{name:"a_data",components:4,type:"Uint16"}],dynamicLayoutAttributes=[{name:"a_projected_pos",components:3,type:"Float32"}],symbolInterfaces={glyph:{layoutAttributes:layoutAttributes,dynamicLayoutAttributes:dynamicLayoutAttributes,elementArrayType:elementArrayType,paintAttributes:[{property:"text-color",name:"fill_color"},{property:"text-halo-color",name:"halo_color"},{property:"text-halo-width",name:"halo_width"},{property:"text-halo-blur",name:"halo_blur"},{property:"text-opacity",name:"opacity"}]},icon:{layoutAttributes:layoutAttributes,dynamicLayoutAttributes:dynamicLayoutAttributes,elementArrayType:elementArrayType,paintAttributes:[{property:"icon-color",name:"fill_color"},{property:"icon-halo-color",name:"halo_color"},{property:"icon-halo-width",name:"halo_width"},{property:"icon-halo-blur",name:"halo_blur"},{property:"icon-opacity",name:"opacity"}]},collisionBox:{layoutAttributes:[{name:"a_pos",components:2,type:"Int16"},{name:"a_anchor_pos",components:2,type:"Int16"},{name:"a_extrude",components:2,type:"Int16"},{name:"a_data",components:2,type:"Uint8"}],elementArrayType:createElementArrayType(2)}},SymbolBucket=function(e){var t=this;this.collisionBoxArray=e.collisionBoxArray,this.zoom=e.zoom,this.overscaling=e.overscaling,this.layers=e.layers,this.index=e.index,this.sdfIcons=e.sdfIcons,this.iconsNeedLinear=e.iconsNeedLinear,this.fontstack=e.fontstack;var a=this.layers[0];if(this.symbolInterfaces=symbolInterfaces,e.arrays){this.buffers={};for(var o in e.arrays)e.arrays[o]&&(t.buffers[o]=new BufferGroup(t.symbolInterfaces[o],e.layers,e.zoom,e.arrays[o]));this.textSizeData=e.textSizeData,this.iconSizeData=e.iconSizeData,this.placedGlyphArray=new PlacedSymbolArray(e.placedGlyphArray),this.placedIconArray=new PlacedSymbolArray(e.placedIconArray),this.glyphOffsetArray=new GlyphOffsetArray(e.glyphOffsetArray),this.lineVertexArray=new LineVertexArray(e.lineVertexArray)}else this.textSizeData=getSizeData(this.zoom,a,"text-size"),this.iconSizeData=getSizeData(this.zoom,a,"icon-size")};SymbolBucket.prototype.populate=function(e,t){var a=this,o=this.layers[0],r=o.layout,i=r["text-font"],n=(!o.isLayoutValueFeatureConstant("text-field")||r["text-field"])&&i,l=!o.isLayoutValueFeatureConstant("icon-image")||r["icon-image"];if(this.features=[],n||l){for(var s=t.iconDependencies,y=t.glyphDependencies,c=y[i]=y[i]||{},p={zoom:this.zoom},u=0,m=e;u<m.length;u+=1){var h=m[u],x=h.feature,d=h.index,f=h.sourceLayerIndex;if(o.filter(x)){var g=void 0;n&&(g=o.getLayoutValue("text-field",p,x.properties),o.isLayoutValueFeatureConstant("text-field")&&(g=resolveTokens(x.properties,g)),g=transformText(g,o,p,x.properties));var b=void 0;if(l&&(b=o.getLayoutValue("icon-image",p,x.properties),o.isLayoutValueFeatureConstant("icon-image")&&(b=resolveTokens(x.properties,b))),(g||b)&&(a.features.push({text:g,icon:b,index:d,sourceLayerIndex:f,geometry:loadGeometry(x),properties:x.properties,type:vectorTileFeatureTypes[x.type]}),b&&(s[b]=!0),g))for(var v="map"===r["text-rotation-alignment"]&&"line"===r["symbol-placement"],S=scriptDetection.allowsVerticalWritingMode(g),A=0;A<g.length;A++)if(c[g.charCodeAt(A)]=!0,v&&S){var I=verticalizePunctuation.lookup[g.charAt(A)];I&&(c[I.charCodeAt(0)]=!0)}}}"line"===r["symbol-placement"]&&(this.features=mergeLines(this.features))}},SymbolBucket.prototype.isEmpty=function(){return this.arrays.icon.isEmpty()&&this.arrays.glyph.isEmpty()&&this.arrays.collisionBox.isEmpty()},SymbolBucket.prototype.getPaintPropertyStatistics=function(){for(var e=this,t={},a=0,o=e.layers;a<o.length;a+=1){var r=o[a];t[r.id]=util.extend({},e.arrays.icon.layerData[r.id].paintPropertyStatistics,e.arrays.glyph.layerData[r.id].paintPropertyStatistics)}return t},SymbolBucket.prototype.serialize=function(e){return{zoom:this.zoom,layerIds:this.layers.map(function(e){return e.id}),sdfIcons:this.sdfIcons,iconsNeedLinear:this.iconsNeedLinear,textSizeData:this.textSizeData,iconSizeData:this.iconSizeData,fontstack:this.fontstack,placedGlyphArray:this.placedGlyphArray.serialize(e),placedIconArray:this.placedIconArray.serialize(e),glyphOffsetArray:this.glyphOffsetArray.serialize(e),lineVertexArray:this.lineVertexArray.serialize(e),arrays:util.mapObject(this.arrays,function(t){return t.isEmpty()?null:t.serialize(e)})}},SymbolBucket.prototype.destroy=function(){this.buffers&&(this.buffers.icon&&this.buffers.icon.destroy(),this.buffers.glyph&&this.buffers.glyph.destroy(),this.buffers.collisionBox&&this.buffers.collisionBox.destroy(),this.buffers=null)},SymbolBucket.prototype.createArrays=function(){var e=this;this.arrays=util.mapObject(this.symbolInterfaces,function(t){return new ArrayGroup(t,e.layers,e.zoom)})},SymbolBucket.prototype.prepare=function(e,t){var a=this;this.symbolInstances=[];var o=512*this.overscaling;this.tilePixelRatio=EXTENT/o,this.compareText={},this.iconsNeedLinear=!1;for(var r=this.layers[0].layout,i=24*r["text-line-height"],n="line"!==r["symbol-placement"]?24*r["text-max-width"]:0,l=24*r["text-letter-spacing"],s=this.fontstack=r["text-font"].join(","),y="map"===r["text-rotation-alignment"]&&"line"===r["symbol-placement"],c=0,p=a.features;c<p.length;c+=1){var u=p[c],m=void 0;if(u.text){var h=scriptDetection.allowsVerticalWritingMode(u.text),x=a.layers[0].getLayoutValue("text-offset",{zoom:a.zoom},u.properties).map(function(e){return 24*e}),d=scriptDetection.allowsLetterSpacing(u.text)?l:0,f=a.layers[0].getLayoutValue("text-anchor",{zoom:a.zoom},u.properties),g=a.layers[0].getLayoutValue("text-justify",{zoom:a.zoom},u.properties);m={},m[WritingMode.horizontal]=shapeText(u.text,e[s],n,i,f,g,d,x,24,WritingMode.horizontal),m[WritingMode.vertical]=h&&y&&shapeText(u.text,e[s],n,i,f,g,d,x,24,WritingMode.vertical)}else m={};var b=void 0;if(u.icon){var v=t[u.icon];v&&(b=shapeIcon(v,a.layers[0].getLayoutValue("icon-offset",{zoom:a.zoom},u.properties)),void 0===a.sdfIcons?a.sdfIcons=v.sdf:a.sdfIcons!==v.sdf&&util.warnOnce("Style sheet warning: Cannot mix SDF and non-SDF icons in one buffer"),v.isNativePixelRatio?0===r["icon-rotate"]&&a.layers[0].isLayoutValueFeatureConstant("icon-rotate")||(a.iconsNeedLinear=!0):a.iconsNeedLinear=!0)}(m[WritingMode.horizontal]||b)&&a.addFeature(u,m,b)}},SymbolBucket.prototype.addFeature=function(e,t,a){var o=this,r=this.layers[0].getLayoutValue("text-size",{zoom:this.zoom+1},e.properties),i=this.layers[0].getLayoutValue("icon-size",{zoom:this.zoom+1},e.properties),n=this.layers[0].getLayoutValue("text-offset",{zoom:this.zoom},e.properties),l=this.layers[0].getLayoutValue("icon-offset",{zoom:this.zoom},e.properties),s=this.layers[0].getLayoutValue("text-size",{zoom:18},e.properties);void 0===s&&(s=r);var y=this.layers[0].layout,c=r/24,p=this.tilePixelRatio*c,u=this.tilePixelRatio*s/24,m=this.tilePixelRatio*i,h=this.tilePixelRatio*y["symbol-spacing"],x=y["symbol-avoid-edges"],d=y["text-padding"]*this.tilePixelRatio,f=y["icon-padding"]*this.tilePixelRatio,g=y["text-max-angle"]/180*Math.PI,b="map"===y["text-rotation-alignment"]&&"line"===y["symbol-placement"],v="map"===y["icon-rotation-alignment"]&&"line"===y["symbol-placement"],S=y["text-allow-overlap"]||y["icon-allow-overlap"]||y["text-ignore-placement"]||y["icon-ignore-placement"],A=y["symbol-placement"],I=h/2,z=function(r,i){var s=!(i.x<0||i.x>EXTENT||i.y<0||i.y>EXTENT);if(!x||s){var y=s||S;o.addSymbolInstance(i,r,t,a,o.layers[0],y,o.collisionBoxArray,e.index,e.sourceLayerIndex,o.index,p,d,b,n,m,f,v,l,{zoom:o.zoom},e.properties)}};if("line"===A)for(var B=0,L=clipLine(e.geometry,0,0,EXTENT,EXTENT);B<L.length;B+=1)for(var V=L[B],T=getAnchors(V,h,g,t[WritingMode.vertical]||t[WritingMode.horizontal],a,24,u,o.overscaling,EXTENT),M=0,k=T;M<k.length;M+=1){var P=k[M],w=t[WritingMode.horizontal];w&&o.anchorIsTooClose(w.text,I,P)||z(V,P)}else if("Polygon"===e.type)for(var _=0,C=classifyRings(e.geometry,0);_<C.length;_+=1){var E=C[_],F=findPoleOfInaccessibility(E,16);z(E[0],new Anchor(F.x,F.y,0))}else if("LineString"===e.type)for(var D=0,O=e.geometry;D<O.length;D+=1){var q=O[D];z(q,new Anchor(q[0].x,q[0].y,0))}else if("Point"===e.type)for(var N=0,G=e.geometry;N<G.length;N+=1)for(var W=G[N],R=0,Q=W;R<Q.length;R+=1){var U=Q[R];z([U],new Anchor(U.x,U.y,0))}},SymbolBucket.prototype.anchorIsTooClose=function(e,t,a){var o=this.compareText;if(e in o){for(var r=o[e],i=r.length-1;i>=0;i--)if(a.dist(r[i])<t)return!0}else o[e]=[];return o[e].push(a),!1},SymbolBucket.prototype.place=function(e,t){var a=this;this.createArrays(),this.placedGlyphArray=new PlacedSymbolArray,this.placedIconArray=new PlacedSymbolArray,this.glyphOffsetArray=new GlyphOffsetArray,this.lineVertexArray=new LineVertexArray;var o=this.layers[0],r=o.layout,i=e.maxScale,n="map"===r["text-rotation-alignment"]&&"line"===r["symbol-placement"],l="map"===r["icon-rotation-alignment"]&&"line"===r["symbol-placement"];if(r["text-allow-overlap"]||r["icon-allow-overlap"]||r["text-ignore-placement"]||r["icon-ignore-placement"]){var s=e.angle,y=Math.sin(s),c=Math.cos(s);this.symbolInstances.sort(function(e,t){return(y*e.anchor.x+c*e.anchor.y|0)-(y*t.anchor.x+c*t.anchor.y|0)||t.featureIndex-e.featureIndex})}for(var p=0,u=a.symbolInstances;p<u.length;p+=1){var m=u[p],h={boxStartIndex:m.textBoxStartIndex,boxEndIndex:m.textBoxEndIndex},x={boxStartIndex:m.iconBoxStartIndex,boxEndIndex:m.iconBoxEndIndex},d=!(m.textBoxStartIndex===m.textBoxEndIndex),f=!(m.iconBoxStartIndex===m.iconBoxEndIndex),g=r["text-optional"]||!d,b=r["icon-optional"]||!f,v=d?e.placeCollisionFeature(h,r["text-allow-overlap"],r["symbol-avoid-edges"]):e.minScale,S=f?e.placeCollisionFeature(x,r["icon-allow-overlap"],r["symbol-avoid-edges"]):e.minScale;if(g||b?!b&&v?v=Math.max(S,v):!g&&S&&(S=Math.max(S,v)):S=v=Math.max(S,v),d||f){for(var A=m.line,I=a.lineVertexArray.length,z=0;z<A.length;z++)a.lineVertexArray.emplaceBack(A[z].x,A[z].y);var B=a.lineVertexArray.length-I;if(d&&(e.insertCollisionFeature(h,v,r["text-ignore-placement"]),v<=i)){var L=getSizeVertexData(o,a.zoom,a.textSizeData.coveringZoomRange,"text-size",m.featureProperties);a.addSymbols(a.arrays.glyph,m.glyphQuads,v,L,r["text-keep-upright"],m.textOffset,n,e.angle,m.featureProperties,m.writingModes,m.anchor,I,B,a.placedGlyphArray)}if(f&&(e.insertCollisionFeature(x,S,r["icon-ignore-placement"]),S<=i)){var V=getSizeVertexData(o,a.zoom,a.iconSizeData.coveringZoomRange,"icon-size",m.featureProperties);a.addSymbols(a.arrays.icon,m.iconQuads,S,V,r["icon-keep-upright"],m.iconOffset,l,e.angle,m.featureProperties,null,m.anchor,I,B,a.placedIconArray)}}}t&&this.addToDebugBuffers(e)},SymbolBucket.prototype.addSymbols=function(e,t,a,o,r,i,n,l,s,y,c,p,u,m){for(var h=this,x=e.elementArray,d=e.layoutVertexArray,f=e.dynamicLayoutVertexArray,g=this.zoom,b=Math.max(Math.log(a)/Math.LN2+g,0),v=this.glyphOffsetArray.length,S=(c.angle+l+2*Math.PI)%(2*Math.PI),A=S>1*Math.PI/4&&S<=3*Math.PI/4||S>5*Math.PI/4&&S<=7*Math.PI/4,I=Boolean(y&WritingMode.vertical)&&A,z=0,B=t;z<B.length;z+=1){var L=B[z];if(!n||!r||L.writingMode===WritingMode.vertical===I){var V=L.tl,T=L.tr,M=L.bl,k=L.br,P=L.tex,w=e.prepareSegment(4),_=w.vertexLength,C=L.glyphOffset[1];addVertex(d,c.x,c.y,V.x,C+V.y,P.x,P.y,o),addVertex(d,c.x,c.y,T.x,C+T.y,P.x+P.w,P.y,o),addVertex(d,c.x,c.y,M.x,C+M.y,P.x,P.y+P.h,o),addVertex(d,c.x,c.y,k.x,C+k.y,P.x+P.w,P.y+P.h,o),addDynamicAttributes(f,c,0,b),x.emplaceBack(_,_+1,_+2),x.emplaceBack(_+1,_+2,_+3),w.vertexLength+=4,w.primitiveLength+=2,h.glyphOffsetArray.emplaceBack(L.glyphOffset[0])}}m.emplaceBack(c.x,c.y,v,this.glyphOffsetArray.length-v,p,u,c.segment,o?o[0]:0,o?o[1]:0,i[0],i[1],b,I),e.populatePaintArrays(s)},SymbolBucket.prototype.addToDebugBuffers=function(e){for(var t=this,a=this.arrays.collisionBox,o=a.layoutVertexArray,r=a.elementArray,i=-e.angle,n=e.yStretch,l=0,s=t.symbolInstances;l<s.length;l+=1){var y=s[l];y.textCollisionFeature={boxStartIndex:y.textBoxStartIndex,boxEndIndex:y.textBoxEndIndex},y.iconCollisionFeature={boxStartIndex:y.iconBoxStartIndex,boxEndIndex:y.iconBoxEndIndex};for(var c=0;c<2;c++){var p=y[0===c?"textCollisionFeature":"iconCollisionFeature"];if(p)for(var u=p.boxStartIndex;u<p.boxEndIndex;u++){var m=t.collisionBoxArray.get(u);if(!(1===e.perspectiveRatio&&m.maxScale<1)){var h=m.anchorPoint,x=new Point(m.x1,m.y1*n)._rotate(i),d=new Point(m.x2,m.y1*n)._rotate(i),f=new Point(m.x1,m.y2*n)._rotate(i),g=new Point(m.x2,m.y2*n)._rotate(i),b=Math.max(0,Math.min(25,t.zoom+Math.log(m.maxScale)/Math.LN2)),v=Math.max(0,Math.min(25,t.zoom+Math.log(m.placementScale)/Math.LN2)),S=a.prepareSegment(4),A=S.vertexLength;addCollisionBoxVertex(o,h,y.anchor,x,b,v),addCollisionBoxVertex(o,h,y.anchor,d,b,v),addCollisionBoxVertex(o,h,y.anchor,g,b,v),addCollisionBoxVertex(o,h,y.anchor,f,b,v),r.emplaceBack(A,A+1),r.emplaceBack(A+1,A+2),r.emplaceBack(A+2,A+3),r.emplaceBack(A+3,A),S.vertexLength+=4,S.primitiveLength+=4}}}}},SymbolBucket.prototype.addSymbolInstance=function(e,t,a,o,r,i,n,l,s,y,c,p,u,m,h,x,d,f,g,b){var v,S,A=[],I=[];for(var z in a){var B=parseInt(z,10);a[B]&&(I=I.concat(i?getGlyphQuads(e,a[B],r,u,g,b):[]),v=new CollisionFeature(n,t,e,l,s,y,a[B],c,p,u,!1))}var L=v?v.boxStartIndex:this.collisionBoxArray.length,V=v?v.boxEndIndex:this.collisionBoxArray.length;o&&(A=i?getIconQuads(e,o,r,d,a[WritingMode.horizontal],g,b):[],S=new CollisionFeature(n,t,e,l,s,y,o,h,x,d,!0));var T=S?S.boxStartIndex:this.collisionBoxArray.length,M=S?S.boxEndIndex:this.collisionBoxArray.length;V>SymbolBucket.MAX_INSTANCES&&util.warnOnce("Too many symbols being rendered in a tile. See minedata.cn-js/issues/2907"),M>SymbolBucket.MAX_INSTANCES&&util.warnOnce("Too many glyphs being rendered in a tile. See minedata.cn-js/issues/2907");var k=(a[WritingMode.vertical]?WritingMode.vertical:0)|(a[WritingMode.horizontal]?WritingMode.horizontal:0);this.symbolInstances.push({textBoxStartIndex:L,textBoxEndIndex:V,iconBoxStartIndex:T,iconBoxEndIndex:M,glyphQuads:I,iconQuads:A,textOffset:m,iconOffset:f,anchor:e,line:t,featureIndex:l,featureProperties:b,writingModes:k})},SymbolBucket.programInterfaces=symbolInterfaces,SymbolBucket.MAX_INSTANCES=65535,SymbolBucket.addDynamicAttributes=addDynamicAttributes,module.exports=SymbolBucket;
},{"../../@minemap/point-geometry":50,"../../@minemap/vector-tile":54,"../../shaders/encode_attribute":108,"../../symbol/anchor":185,"../../symbol/clip_line":187,"../../symbol/collision_feature":189,"../../symbol/get_anchors":191,"../../symbol/mergelines":194,"../../symbol/quads":196,"../../symbol/shaping":197,"../../symbol/transform_text":200,"../../util/classify_rings":225,"../../util/find_pole_of_inaccessibility":232,"../../util/script_detection":241,"../../util/struct_array":244,"../../util/token":246,"../../util/util":247,"../../util/verticalize_punctuation":249,"../array_group":59,"../buffer_group":73,"../element_array_type":74,"../extent":75,"../load_geometry":77}],70:[function(_dereq_,module,exports){
"use strict";function addVertex(e,t,a,r,o,i,n,s,l){e.emplaceBack(t,a,Math.round(64*r),Math.round(64*o),i,n,s?s[0]:void 0,s?s[1]:void 0,l)}function addDynamicAttributes(e,t,a,r){var o=2*Math.PI,i=packUint8ToFloat((a+o)%o/o*255,10*r);e.emplaceBack(t.x,t.y,i),e.emplaceBack(t.x,t.y,i),e.emplaceBack(t.x,t.y,i),e.emplaceBack(t.x,t.y,i)}function addCollisionBoxVertex(e,t,a,r,o,i){return e.emplaceBack(t.x,t.y,a.x,a.y,Math.round(r.x),Math.round(r.y),10*o,10*i)}function getSizeData(e,t,a){var r={};if(r.isFeatureConstant=t.isLayoutValueFeatureConstant(a),r.isZoomConstant=t.isLayoutValueZoomConstant(a),r.isFeatureConstant&&(r.layoutSize=t.getLayoutValue(a,{zoom:e+1})),!r.isZoomConstant){for(var o=t.getLayoutValueStopZoomLevels(a),i=0;i<o.length&&o[i]<=e;)i++;i=Math.max(0,i-1);for(var n=i;n<o.length&&o[n]<e+1;)n++;n=Math.min(o.length-1,n),r.coveringZoomRange=[o[i],o[n]],t.isLayoutValueFeatureConstant(a)&&(r.coveringStopValues=[t.getLayoutValue(a,{zoom:o[i]}),t.getLayoutValue(a,{zoom:o[n]})]),r.functionBase=t.getLayoutProperty(a).base,void 0===r.functionBase&&(r.functionBase=1),r.functionType=t.getLayoutProperty(a).type||"exponential"}return r}function getSizeVertexData(e,t,a,r,o){return e.isLayoutValueZoomConstant(r)&&!e.isLayoutValueFeatureConstant(r)?[10*e.getLayoutValue(r,{},o)]:e.isLayoutValueZoomConstant(r)||e.isLayoutValueFeatureConstant(r)?null:[10*e.getLayoutValue(r,{zoom:a[0]},o),10*e.getLayoutValue(r,{zoom:a[1]},o)]}var Point=_dereq_("../../@minemap/point-geometry"),ArrayGroup=_dereq_("../array_group"),BufferGroup=_dereq_("../buffer_group"),createElementArrayType=_dereq_("../element_array_type"),EXTENT=_dereq_("../extent"),packUint8ToFloat=_dereq_("../../shaders/encode_attribute").packUint8ToFloat,Anchor=_dereq_("../../symbol/anchor"),getAnchors=_dereq_("../../symbol/get_anchors"),resolveTokens=_dereq_("../../util/token"),Quads=_dereq_("../../symbol/quads"),Shaping=_dereq_("../../symbol/shaping"),transformText=_dereq_("../../symbol/transform_text"),mergeLines=_dereq_("../../symbol/mergelines"),clipLine=_dereq_("../../symbol/clip_line"),util=_dereq_("../../util/util"),scriptDetection=_dereq_("../../util/script_detection"),loadGeometry=_dereq_("../load_geometry"),CollisionFeature=_dereq_("../../symbol/collision_feature"),findPoleOfInaccessibility=_dereq_("../../util/find_pole_of_inaccessibility"),classifyRings=_dereq_("../../util/classify_rings"),vectorTileFeatureTypes=_dereq_("../../@minemap/vector-tile").VectorTileFeature.types,createStructArrayType=_dereq_("../../util/struct_array"),verticalizePunctuation=_dereq_("../../util/verticalize_punctuation"),shapeText=Shaping.shapeText,shapeIcon=Shaping.shapeIcon,WritingMode=Shaping.WritingMode,getGlyphQuads=Quads.getGlyphQuads,getIconQuads=Quads.getIconQuads,PlacedSymbolArray=createStructArrayType({members:[{type:"Int16",name:"anchorX"},{type:"Int16",name:"anchorY"},{type:"Uint16",name:"glyphStartIndex"},{type:"Uint16",name:"numGlyphs"},{type:"Uint32",name:"lineStartIndex"},{type:"Uint32",name:"lineLength"},{type:"Uint16",name:"segment"},{type:"Uint16",name:"lowerSize"},{type:"Uint16",name:"upperSize"},{type:"Float32",name:"lineOffsetX"},{type:"Float32",name:"lineOffsetY"},{type:"Float32",name:"placementZoom"},{type:"Uint8",name:"vertical"}]}),GlyphOffsetArray=createStructArrayType({members:[{type:"Float32",name:"offsetX"}]}),LineVertexArray=createStructArrayType({members:[{type:"Int16",name:"x"},{type:"Int16",name:"y"}]}),elementArrayType=createElementArrayType(),layoutAttributes=[{name:"a_pos_offset",components:4,type:"Int16"},{name:"a_data",components:4,type:"Uint16"},{name:"a_seq",components:1,type:"Uint16"}],dynamicLayoutAttributes=[{name:"a_projected_pos",components:3,type:"Float32"}],symtrackingInterfaces={glyph:{layoutAttributes:layoutAttributes,dynamicLayoutAttributes:dynamicLayoutAttributes,elementArrayType:elementArrayType,paintAttributes:[{property:"text-color",name:"fill_color"},{property:"text-halo-color",name:"halo_color"},{property:"text-halo-width",name:"halo_width"},{property:"text-halo-blur",name:"halo_blur"},{property:"text-opacity",name:"opacity"}]},icon:{layoutAttributes:layoutAttributes,dynamicLayoutAttributes:dynamicLayoutAttributes,elementArrayType:elementArrayType,paintAttributes:[{property:"icon-color",name:"fill_color"},{property:"icon-halo-color",name:"halo_color"},{property:"icon-halo-width",name:"halo_width"},{property:"icon-halo-blur",name:"halo_blur"},{property:"icon-opacity",name:"opacity"}]},collisionBox:{layoutAttributes:[{name:"a_pos",components:2,type:"Int16"},{name:"a_anchor_pos",components:2,type:"Int16"},{name:"a_extrude",components:2,type:"Int16"},{name:"a_data",components:2,type:"Uint8"}],elementArrayType:createElementArrayType(2)}},SymtrackingBucket=function(e){var t=this;this.collisionBoxArray=e.collisionBoxArray,this._seq=0,this.zoom=e.zoom,this.overscaling=e.overscaling,this.layers=e.layers,this.index=e.index,this.sdfIcons=e.sdfIcons,this.iconsNeedLinear=e.iconsNeedLinear,this.fontstack=e.fontstack;var a=this.layers[0];if(this.symtrackingInterfaces=symtrackingInterfaces,e.arrays){this.buffers={};for(var r in e.arrays)e.arrays[r]&&(t.buffers[r]=new BufferGroup(t.symtrackingInterfaces[r],e.layers,e.zoom,e.arrays[r]));this.textSizeData=e.textSizeData,this.iconSizeData=e.iconSizeData,this.placedGlyphArray=new PlacedSymbolArray(e.placedGlyphArray),this.placedIconArray=new PlacedSymbolArray(e.placedIconArray),this.glyphOffsetArray=new GlyphOffsetArray(e.glyphOffsetArray),this.lineVertexArray=new LineVertexArray(e.lineVertexArray)}else this.textSizeData=getSizeData(this.zoom,a,"text-size"),this.iconSizeData=getSizeData(this.zoom,a,"icon-size")};SymtrackingBucket.prototype.populate=function(e,t){var a=this,r=this.layers[0],o=r.layout,i=o["text-font"],n=(!r.isLayoutValueFeatureConstant("text-field")||o["text-field"])&&i,s=!r.isLayoutValueFeatureConstant("icon-image")||o["icon-image"];if(this.features=[],n||s){for(var l=t.iconDependencies,c=t.glyphDependencies,y=c[i]=c[i]||{},p={zoom:this.zoom},u=0,m=e;u<m.length;u+=1){var h=m[u],x=h.feature,d=h.index,g=h.sourceLayerIndex;if(r.filter(x)){var f=void 0;n&&(f=r.getLayoutValue("text-field",p,x.properties),r.isLayoutValueFeatureConstant("text-field")&&(f=resolveTokens(x.properties,f)),f=transformText(f,r,p,x.properties));var v=void 0;if(s&&(v=r.getLayoutValue("icon-image",p,x.properties),r.isLayoutValueFeatureConstant("icon-image")&&(v=resolveTokens(x.properties,v))),(f||v)&&(a.features.push({text:f,icon:v,index:d,sourceLayerIndex:g,geometry:loadGeometry(x),properties:x.properties,type:vectorTileFeatureTypes[x.type]}),v&&(l[v]=!0),f))for(var A="map"===o["text-rotation-alignment"]&&"line"===o["symbol-placement"],S=scriptDetection.allowsVerticalWritingMode(f),b=0;b<f.length;b++)if(y[f.charCodeAt(b)]=!0,A&&S){var I=verticalizePunctuation.lookup[f.charAt(b)];I&&(y[I.charCodeAt(0)]=!0)}}}"line"===o["symbol-placement"]&&(this.features=mergeLines(this.features))}},SymtrackingBucket.prototype.isEmpty=function(){return this.arrays.icon.isEmpty()&&this.arrays.glyph.isEmpty()&&this.arrays.collisionBox.isEmpty()},SymtrackingBucket.prototype.getPaintPropertyStatistics=function(){for(var e=this,t={},a=0,r=e.layers;a<r.length;a+=1){var o=r[a];t[o.id]=util.extend({},e.arrays.icon.layerData[o.id].paintPropertyStatistics,e.arrays.glyph.layerData[o.id].paintPropertyStatistics)}return t},SymtrackingBucket.prototype.serialize=function(e){return{zoom:this.zoom,layerIds:this.layers.map(function(e){return e.id}),sdfIcons:this.sdfIcons,iconsNeedLinear:this.iconsNeedLinear,textSizeData:this.textSizeData,iconSizeData:this.iconSizeData,fontstack:this.fontstack,placedGlyphArray:this.placedGlyphArray.serialize(e),placedIconArray:this.placedIconArray.serialize(e),glyphOffsetArray:this.glyphOffsetArray.serialize(e),lineVertexArray:this.lineVertexArray.serialize(e),arrays:util.mapObject(this.arrays,function(t){return t.isEmpty()?null:t.serialize(e)})}},SymtrackingBucket.prototype.destroy=function(){this.buffers&&(this.buffers.icon&&this.buffers.icon.destroy(),this.buffers.glyph&&this.buffers.glyph.destroy(),this.buffers.collisionBox&&this.buffers.collisionBox.destroy(),this.buffers=null)},SymtrackingBucket.prototype.createArrays=function(){var e=this;this.arrays=util.mapObject(this.symtrackingInterfaces,function(t){return new ArrayGroup(t,e.layers,e.zoom)})},SymtrackingBucket.prototype.prepare=function(e,t){var a=this;this.symbolInstances=[];var r=512*this.overscaling;this.tilePixelRatio=EXTENT/r,this.compareText={},this.iconsNeedLinear=!1;for(var o=this.layers[0].layout,i=24*o["text-line-height"],n="line"!==o["symbol-placement"]?24*o["text-max-width"]:0,s=24*o["text-letter-spacing"],l=this.fontstack=o["text-font"].join(","),c="map"===o["text-rotation-alignment"]&&"line"===o["symbol-placement"],y=0,p=a.features;y<p.length;y+=1){var u=p[y];a._seq=u.properties.link_seq;var m=void 0;if(u.text){var h=scriptDetection.allowsVerticalWritingMode(u.text),x=a.layers[0].getLayoutValue("text-offset",{zoom:a.zoom},u.properties).map(function(e){return 24*e}),d=scriptDetection.allowsLetterSpacing(u.text)?s:0,g=a.layers[0].getLayoutValue("text-anchor",{zoom:a.zoom},u.properties),f=a.layers[0].getLayoutValue("text-justify",{zoom:a.zoom},u.properties);m={},m[WritingMode.horizontal]=shapeText(u.text,e[l],n,i,g,f,d,x,24,WritingMode.horizontal),m[WritingMode.vertical]=h&&c&&shapeText(u.text,e[l],n,i,g,f,d,x,24,WritingMode.vertical)}else m={};var v=void 0;if(u.icon){var A=t[u.icon];A&&(v=shapeIcon(A,a.layers[0].getLayoutValue("icon-offset",{zoom:a.zoom},u.properties)),void 0===a.sdfIcons?a.sdfIcons=A.sdf:a.sdfIcons!==A.sdf&&util.warnOnce("Style sheet warning: Cannot mix SDF and non-SDF icons in one buffer"),A.isNativePixelRatio?0===o["icon-rotate"]&&a.layers[0].isLayoutValueFeatureConstant("icon-rotate")||(a.iconsNeedLinear=!0):a.iconsNeedLinear=!0)}(m[WritingMode.horizontal]||v)&&a.addFeature(u,m,v,a._seq)}},SymtrackingBucket.prototype.addFeature=function(e,t,a,r){var o=this,i=this.layers[0].getLayoutValue("text-size",{zoom:this.zoom+1},e.properties),n=this.layers[0].getLayoutValue("icon-size",{zoom:this.zoom+1},e.properties),s=this.layers[0].getLayoutValue("text-offset",{zoom:this.zoom},e.properties),l=this.layers[0].getLayoutValue("icon-offset",{zoom:this.zoom},e.properties),c=this.layers[0].getLayoutValue("text-size",{zoom:18},e.properties);void 0===c&&(c=i);var y=this.layers[0].layout,p=i/24,u=this.tilePixelRatio*p,m=this.tilePixelRatio*c/24,h=this.tilePixelRatio*n,x=this.tilePixelRatio*y["symbol-spacing"],d=y["symbol-avoid-edges"],g=y["text-padding"]*this.tilePixelRatio,f=y["icon-padding"]*this.tilePixelRatio,v=y["text-max-angle"]/180*Math.PI,A="map"===y["text-rotation-alignment"]&&"line"===y["symbol-placement"],S="map"===y["icon-rotation-alignment"]&&"line"===y["symbol-placement"],b=y["text-allow-overlap"]||y["icon-allow-overlap"]||y["text-ignore-placement"]||y["icon-ignore-placement"],I=y["symbol-placement"],z=x/2,k=function(i,n){var c=!(n.x<0||n.x>EXTENT||n.y<0||n.y>EXTENT);if(!d||c){var y=c||b;o.addSymbolInstance(n,i,t,a,o.layers[0],y,o.collisionBoxArray,e.index,e.sourceLayerIndex,o.index,u,g,A,s,h,f,S,l,{zoom:o.zoom},e.properties,r)}};if("line"===I)for(var B=0,L=clipLine(e.geometry,0,0,EXTENT,EXTENT,!0);B<L.length;B+=1)for(var V=L[B],M=getAnchors(V,x,v,t[WritingMode.vertical]||t[WritingMode.horizontal],a,24,m,o.overscaling,EXTENT,!0),T=0,_=M;T<_.length;T+=1){var P=_[T],w=t[WritingMode.horizontal];w&&o.anchorIsTooClose(w.text,z,P)||k(V,P)}else if("Polygon"===e.type)for(var C=0,E=classifyRings(e.geometry,0);C<E.length;C+=1){var F=E[C],D=findPoleOfInaccessibility(F,16);k(F[0],new Anchor(D.x,D.y,0))}else if("LineString"===e.type)for(var q=0,O=e.geometry;q<O.length;q+=1){var N=O[q];k(N,new Anchor(N[0].x,N[0].y,0))}else if("Point"===e.type)for(var G=0,W=e.geometry;G<W.length;G+=1)for(var R=W[G],U=0,Q=R;U<Q.length;U+=1){var X=Q[U];k([X],new Anchor(X.x,X.y,0))}},SymtrackingBucket.prototype.anchorIsTooClose=function(e,t,a){var r=this.compareText;if(e in r){for(var o=r[e],i=o.length-1;i>=0;i--)if(a.dist(o[i])<t)return!0}else r[e]=[];return r[e].push(a),!1},SymtrackingBucket.prototype.place=function(e,t){var a=this;this.createArrays(),this.placedGlyphArray=new PlacedSymbolArray,this.placedIconArray=new PlacedSymbolArray,this.glyphOffsetArray=new GlyphOffsetArray,this.lineVertexArray=new LineVertexArray;var r=this.layers[0],o=r.layout,i=e.maxScale,n="map"===o["text-rotation-alignment"]&&"line"===o["symbol-placement"],s="map"===o["icon-rotation-alignment"]&&"line"===o["symbol-placement"];if(o["text-allow-overlap"]||o["icon-allow-overlap"]||o["text-ignore-placement"]||o["icon-ignore-placement"]){var l=e.angle,c=Math.sin(l),y=Math.cos(l);this.symbolInstances.sort(function(e,t){return(c*e.anchor.x+y*e.anchor.y|0)-(c*t.anchor.x+y*t.anchor.y|0)||t.featureIndex-e.featureIndex})}for(var p=0,u=a.symbolInstances;p<u.length;p+=1){var m=u[p],h={boxStartIndex:m.textBoxStartIndex,boxEndIndex:m.textBoxEndIndex},x={boxStartIndex:m.iconBoxStartIndex,boxEndIndex:m.iconBoxEndIndex},d=!(m.textBoxStartIndex===m.textBoxEndIndex),g=!(m.iconBoxStartIndex===m.iconBoxEndIndex),f=o["text-optional"]||!d,v=o["icon-optional"]||!g,A=d?e.placeCollisionFeature(h,o["text-allow-overlap"],o["symbol-avoid-edges"]):e.minScale,S=g?e.placeCollisionFeature(x,o["icon-allow-overlap"],o["symbol-avoid-edges"]):e.minScale;if(f||v?!v&&A?A=Math.max(S,A):!f&&S&&(S=Math.max(S,A)):S=A=Math.max(S,A),d||g){for(var b=m.line,I=a.lineVertexArray.length,z=0;z<b.length;z++)a.lineVertexArray.emplaceBack(b[z].x,b[z].y);var k=a.lineVertexArray.length-I;if(d&&(e.insertCollisionFeature(h,A,o["text-ignore-placement"]),A<=i)){var B=getSizeVertexData(r,a.zoom,a.textSizeData.coveringZoomRange,"text-size",m.featureProperties);a.addSymbols(a.arrays.glyph,m.glyphQuads,A,B,o["text-keep-upright"],m.textOffset,n,e.angle,m.featureProperties,m.writingModes,m.anchor,I,k,a.placedGlyphArray,m.seq)}if(g&&(e.insertCollisionFeature(x,S,o["icon-ignore-placement"]),S<=i)){var L=getSizeVertexData(r,a.zoom,a.iconSizeData.coveringZoomRange,"icon-size",m.featureProperties);a.addSymbols(a.arrays.icon,m.iconQuads,S,L,o["icon-keep-upright"],m.iconOffset,s,e.angle,m.featureProperties,null,m.anchor,I,k,a.placedIconArray,m.seq)}}}t&&this.addToDebugBuffers(e)},SymtrackingBucket.prototype.addSymbols=function(e,t,a,r,o,i,n,s,l,c,y,p,u,m,h){for(var x=this,d=e.elementArray,g=e.layoutVertexArray,f=e.dynamicLayoutVertexArray,v=this.zoom,A=Math.max(Math.log(a)/Math.LN2+v,0),S=this.glyphOffsetArray.length,b=(y.angle+s+2*Math.PI)%(2*Math.PI),I=b>1*Math.PI/4&&b<=3*Math.PI/4||b>5*Math.PI/4&&b<=7*Math.PI/4,z=Boolean(c&WritingMode.vertical)&&I,k=0,B=t;k<B.length;k+=1){var L=B[k];if(!n||!o||L.writingMode===WritingMode.vertical===z){var V=L.tl,M=L.tr,T=L.bl,_=L.br,P=L.tex,w=e.prepareSegment(4),C=w.vertexLength,E=L.glyphOffset[1];addVertex(g,y.x,y.y,V.x,E+V.y,P.x,P.y,r,h),addVertex(g,y.x,y.y,M.x,E+M.y,P.x+P.w,P.y,r,h),addVertex(g,y.x,y.y,T.x,E+T.y,P.x,P.y+P.h,r,h),addVertex(g,y.x,y.y,_.x,E+_.y,P.x+P.w,P.y+P.h,r,h),addDynamicAttributes(f,y,0,A),d.emplaceBack(C,C+1,C+2),d.emplaceBack(C+1,C+2,C+3),w.vertexLength+=4,w.primitiveLength+=2,x.glyphOffsetArray.emplaceBack(L.glyphOffset[0])}}m.emplaceBack(y.x,y.y,S,this.glyphOffsetArray.length-S,p,u,y.segment,r?r[0]:0,r?r[1]:0,i[0],i[1],A,z),e.populatePaintArrays(l)},SymtrackingBucket.prototype.addToDebugBuffers=function(e){for(var t=this,a=this.arrays.collisionBox,r=a.layoutVertexArray,o=a.elementArray,i=-e.angle,n=e.yStretch,s=0,l=t.symbolInstances;s<l.length;s+=1){var c=l[s];c.textCollisionFeature={boxStartIndex:c.textBoxStartIndex,boxEndIndex:c.textBoxEndIndex},c.iconCollisionFeature={boxStartIndex:c.iconBoxStartIndex,boxEndIndex:c.iconBoxEndIndex};for(var y=0;y<2;y++){var p=c[0===y?"textCollisionFeature":"iconCollisionFeature"];if(p)for(var u=p.boxStartIndex;u<p.boxEndIndex;u++){var m=t.collisionBoxArray.get(u);if(!(1===e.perspectiveRatio&&m.maxScale<1)){var h=m.anchorPoint,x=new Point(m.x1,m.y1*n)._rotate(i),d=new Point(m.x2,m.y1*n)._rotate(i),g=new Point(m.x1,m.y2*n)._rotate(i),f=new Point(m.x2,m.y2*n)._rotate(i),v=Math.max(0,Math.min(25,t.zoom+Math.log(m.maxScale)/Math.LN2)),A=Math.max(0,Math.min(25,t.zoom+Math.log(m.placementScale)/Math.LN2)),S=a.prepareSegment(4),b=S.vertexLength;addCollisionBoxVertex(r,h,c.anchor,x,v,A),addCollisionBoxVertex(r,h,c.anchor,d,v,A),addCollisionBoxVertex(r,h,c.anchor,f,v,A),addCollisionBoxVertex(r,h,c.anchor,g,v,A),o.emplaceBack(b,b+1),o.emplaceBack(b+1,b+2),o.emplaceBack(b+2,b+3),o.emplaceBack(b+3,b),S.vertexLength+=4,S.primitiveLength+=4}}}}},SymtrackingBucket.prototype.addSymbolInstance=function(e,t,a,r,o,i,n,s,l,c,y,p,u,m,h,x,d,g,f,v,A){var S,b,I=[],z=[];for(var k in a){var B=parseInt(k,10);a[B]&&(z=z.concat(i?getGlyphQuads(e,a[B],o,u,f,v):[]),S=new CollisionFeature(n,t,e,s,l,c,a[B],y,p,u,!1))}var L=S?S.boxStartIndex:this.collisionBoxArray.length,V=S?S.boxEndIndex:this.collisionBoxArray.length;r&&(I=i?getIconQuads(e,r,o,d,a[WritingMode.horizontal],f,v):[],b=new CollisionFeature(n,t,e,s,l,c,r,h,x,d,!0));var M=b?b.boxStartIndex:this.collisionBoxArray.length,T=b?b.boxEndIndex:this.collisionBoxArray.length;V>SymtrackingBucket.MAX_INSTANCES&&util.warnOnce("单个瓦片数据量过大"),T>SymtrackingBucket.MAX_INSTANCES&&util.warnOnce("单个瓦片数据量过大");var _=(a[WritingMode.vertical]?WritingMode.vertical:0)|(a[WritingMode.horizontal]?WritingMode.horizontal:0);this.symbolInstances.push({textBoxStartIndex:L,textBoxEndIndex:V,iconBoxStartIndex:M,iconBoxEndIndex:T,glyphQuads:z,iconQuads:I,textOffset:m,iconOffset:g,anchor:e,line:t,featureIndex:s,featureProperties:v,writingModes:_,seq:A})},SymtrackingBucket.programInterfaces=symtrackingInterfaces,SymtrackingBucket.MAX_INSTANCES=65535,SymtrackingBucket.addDynamicAttributes=addDynamicAttributes,module.exports=SymtrackingBucket;
},{"../../@minemap/point-geometry":50,"../../@minemap/vector-tile":54,"../../shaders/encode_attribute":108,"../../symbol/anchor":185,"../../symbol/clip_line":187,"../../symbol/collision_feature":189,"../../symbol/get_anchors":191,"../../symbol/mergelines":194,"../../symbol/quads":196,"../../symbol/shaping":197,"../../symbol/transform_text":200,"../../util/classify_rings":225,"../../util/find_pole_of_inaccessibility":232,"../../util/script_detection":241,"../../util/struct_array":244,"../../util/token":246,"../../util/util":247,"../../util/verticalize_punctuation":249,"../array_group":59,"../buffer_group":73,"../element_array_type":74,"../extent":75,"../load_geometry":77}],71:[function(_dereq_,module,exports){
"use strict";function addLineVertex(e,t,r,i,a,n,s){e.emplaceBack(t.x<<1|i,t.y<<1|a,Math.round(EXTRUDE_SCALE*r.x)+128,Math.round(EXTRUDE_SCALE*r.y)+128,1+(0===n?0:n<0?-1:1)|(s*LINE_DISTANCE_SCALE&63)<<2,s*LINE_DISTANCE_SCALE>>6,t.z)}var Bucket=_dereq_("../bucket"),createElementArrayType=_dereq_("../element_array_type"),loadGeometry=_dereq_("../load_geometry"),EXTENT=_dereq_("../extent"),vectorTileFeatureTypes=_dereq_("../../@minemap/vector-tile").VectorTileFeature.types,seq=0,EXTRUDE_SCALE=63,COS_HALF_SHARP_CORNER=Math.cos(Math.PI/180*37.5),SHARP_CORNER_OFFSET=15,LINE_DISTANCE_BUFFER_BITS=15,LINE_DISTANCE_SCALE=.5,MAX_LINE_DISTANCE=Math.pow(2,LINE_DISTANCE_BUFFER_BITS-1)/LINE_DISTANCE_SCALE,trackingInterface={layoutAttributes:[{name:"a_pos",components:2,type:"Int16"},{name:"a_data",components:4,type:"Uint8"},{name:"a_seq",components:1,type:"Uint16"}],paintAttributes:[{property:"tracking-color"},{property:"tracking-blur"},{property:"tracking-opacity"},{property:"tracking-gap-width",name:"gapwidth"},{property:"tracking-offset"},{property:"tracking-width"},{property:"tracking-width",name:"floorwidth",useIntegerZoom:!0}],elementArrayType:createElementArrayType()},TrackingBucket=function(e){function t(t){e.call(this,t,trackingInterface)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.addFeature=function(e){var t=this,r=this.layers[0].layout,i=this.layers[0].getLayoutValue("tracking-join",{zoom:this.zoom},e.properties),a=r["tracking-cap"],n=r["tracking-miter-limit"],s=r["tracking-round-limit"];seq=e.properties.link_seq;for(var d=0,o=loadGeometry(e,LINE_DISTANCE_BUFFER_BITS);d<o.length;d+=1){var u=o[d];t.addLine(u,e,i,a,n,s)}},t.prototype.addLine=function(e,t,r,i,a,n){for(var s=this,d=t.properties,o="Polygon"===vectorTileFeatureTypes[t.type],u=e.length;u>=2&&e[u-1].equals(e[u-2]);)u--;for(var c=0;c<u-1&&e[c].equals(e[c+1]);)c++;if(!(u<(o?3:2))){"bevel"===r&&(a=1.05);var p=SHARP_CORNER_OFFSET*(EXTENT/(512*this.overscaling)),l=e[c],h=this.arrays,_=h.prepareSegment(10*u);this.distance=0;var y,m,E,v=i,x=o?"butt":i,C=!0,f=void 0,g=void 0,A=void 0,S=void 0;this.e1=this.e2=this.e3=-1,o&&(y=e[u-2],S=l.sub(y)._unit()._perp());for(var T=c;T<u;T++)if(seq++,!(g=o&&T===u-1?e[c+1]:e[T+1])||!e[T].equals(g)){S&&(A=S),y&&(f=y),y=e[T],S=g?g.sub(y)._unit()._perp():A,A=A||S;var k=A.add(S);0===k.x&&0===k.y||k._unit();var L=k.x*S.x+k.y*S.y,V=0!==L?1/L:1/0,I=L<COS_HALF_SHARP_CORNER&&f&&g;if(I&&T>c){var N=y.dist(f);if(N>2*p){var b=y.sub(y.sub(f)._mult(p/N)._round());s.distance+=b.dist(f),s.addCurrentVertex(b,s.distance,A.mult(1),0,0,!1,_),f=b}}var R=f&&g,F=R?r:g?v:x;if(R&&"round"===F&&(V<n?F="miter":V<=2&&(F="fakeround")),"miter"===F&&V>a&&(F="bevel"),"bevel"===F&&(V>2&&(F="flipbevel"),V<a&&(F="miter")),f&&(s.distance+=y.dist(f)),"miter"===F)k._mult(V),s.addCurrentVertex(y,s.distance,k,0,0,!1,_);else if("flipbevel"===F){if(V>100)k=S.clone().mult(-1);else{var q=A.x*S.y-A.y*S.x>0?-1:1,B=V*A.add(S).mag()/A.sub(S).mag();k._perp()._mult(B*q)}s.addCurrentVertex(y,s.distance,k,0,0,!1,_),s.addCurrentVertex(y,s.distance,k.mult(-1),0,0,!1,_)}else if("bevel"===F||"fakeround"===F){var D=A.x*S.y-A.y*S.x>0,P=-Math.sqrt(V*V-1);if(D?(E=0,m=P):(m=0,E=P),C||s.addCurrentVertex(y,s.distance,A,m,E,!1,_),"fakeround"===F){for(var M=Math.floor(8*(.5-(L-.5))),O=void 0,U=0;U<M;U++)O=S.mult((U+1)/(M+1))._add(A)._unit(),s.addPieSliceVertex(y,s.distance,O,D,_);s.addPieSliceVertex(y,s.distance,k,D,_);for(var X=M-1;X>=0;X--)O=A.mult((X+1)/(M+1))._add(S)._unit(),s.addPieSliceVertex(y,s.distance,O,D,_)}g&&s.addCurrentVertex(y,s.distance,S,-m,-E,!1,_)}else"butt"===F?(C||s.addCurrentVertex(y,s.distance,A,0,0,!1,_),g&&s.addCurrentVertex(y,s.distance,S,0,0,!1,_)):"square"===F?(C||(s.addCurrentVertex(y,s.distance,A,1,1,!1,_),s.e1=s.e2=-1),g&&s.addCurrentVertex(y,s.distance,S,-1,-1,!1,_)):"round"===F&&(C||(s.addCurrentVertex(y,s.distance,A,0,0,!1,_),s.addCurrentVertex(y,s.distance,A,1,1,!0,_),s.e1=s.e2=-1),g&&(s.addCurrentVertex(y,s.distance,S,-1,-1,!0,_),s.addCurrentVertex(y,s.distance,S,0,0,!1,_)));if(I&&T<u-1){var w=y.dist(g);if(w>2*p){var H=y.add(g.sub(y)._mult(p/w)._round());s.distance+=H.dist(y),s.addCurrentVertex(H,s.distance,S.mult(1),0,0,!1,_),y=H}}C=!1}h.populatePaintArrays(d)}},t.prototype.addCurrentVertex=function(e,t,r,i,a,n,s){var d,o=n?1:0,u=this.arrays,c=u.layoutVertexArray,p=u.elementArray;d=r.clone(),i&&d._sub(r.perp()._mult(i)),addLineVertex(c,e,d,o,0,i,t),this.e3=s.vertexLength++,this.e1>=0&&this.e2>=0&&(p.emplaceBack(this.e1,this.e2,this.e3),s.primitiveLength++),this.e1=this.e2,this.e2=this.e3,d=r.mult(-1),a&&d._sub(r.perp()._mult(a)),addLineVertex(c,e,d,o,1,-a,t),this.e3=s.vertexLength++,this.e1>=0&&this.e2>=0&&(p.emplaceBack(this.e1,this.e2,this.e3),s.primitiveLength++),this.e1=this.e2,this.e2=this.e3,t>MAX_LINE_DISTANCE/2&&(this.distance=0,this.addCurrentVertex(e,this.distance,r,i,a,n,s))},t.prototype.addPieSliceVertex=function(e,t,r,i,a){var n=i?1:0;r=r.mult(i?-1:1);var s=this.arrays,d=s.layoutVertexArray,o=s.elementArray;addLineVertex(d,e,r,0,n,0,t),this.e3=a.vertexLength++,this.e1>=0&&this.e2>=0&&(o.emplaceBack(this.e1,this.e2,this.e3),a.primitiveLength++),i?this.e2=this.e3:this.e1=this.e3},t}(Bucket);TrackingBucket.programInterface=trackingInterface,module.exports=TrackingBucket;
},{"../../@minemap/vector-tile":54,"../bucket":60,"../element_array_type":74,"../extent":75,"../load_geometry":77}],72:[function(_dereq_,module,exports){
"use strict";var AttributeType={Int8:"BYTE",Uint8:"UNSIGNED_BYTE",Int16:"SHORT",Uint16:"UNSIGNED_SHORT",Int32:"INT",Uint32:"UNSIGNED_INT",Float32:"FLOAT"},Buffer=function(t,r,e,f){this.arrayBuffer=t.arrayBuffer,this.length=t.length,this.attributes=r.members,this.itemSize=r.bytesPerElement,this.type=e,this.arrayType=r,this.dynamicDraw=f};Buffer.fromStructArray=function(t,r){return new Buffer(t.serialize(),t.constructor.serialize(),r)},Buffer.prototype.bind=function(t){var r=t[this.type];this.buffer?(t.bindBuffer(r,this.buffer),this.dynamicDraw&&this.arrayBuffer&&(t.bufferSubData(r,0,this.arrayBuffer),this.arrayBuffer=null)):(this.gl=t,this.buffer=t.createBuffer(),t.bindBuffer(r,this.buffer),t.bufferData(r,this.arrayBuffer,this.dynamicDraw?t.DYNAMIC_DRAW:t.STATIC_DRAW),this.arrayBuffer=null)},Buffer.prototype.updateData=function(t){this.arrayBuffer=t.arrayBuffer},Buffer.prototype.enableAttributes=function(t,r){for(var e=this,f=0;f<this.attributes.length;f++){var i=e.attributes[f],a=r[i.name];void 0!==a&&t.enableVertexAttribArray(a)}},Buffer.prototype.setVertexAttribPointers=function(t,r,e){for(var f=this,i=0;i<this.attributes.length;i++){var a=f.attributes[i],u=r[a.name];void 0!==u&&t.vertexAttribPointer(u,a.components,t[AttributeType[a.type]],!1,f.arrayType.bytesPerElement,a.offset+(f.arrayType.bytesPerElement*e||0))}},Buffer.prototype.destroy=function(){this.buffer&&this.gl.deleteBuffer(this.buffer)},Buffer.BufferType={VERTEX:"ARRAY_BUFFER",ELEMENT:"ELEMENT_ARRAY_BUFFER"},module.exports=Buffer;
},{}],73:[function(_dereq_,module,exports){
"use strict";var util=_dereq_("../util/util"),Buffer=_dereq_("./buffer"),ProgramConfiguration=_dereq_("./program_configuration"),createVertexArrayType=_dereq_("./vertex_array_type"),VertexArrayObject=_dereq_("../render/vertex_array_object"),BufferGroup=function(e,r,t,a){var f=this,y=createVertexArrayType(e.layoutAttributes);if(this.layoutVertexBuffer=new Buffer(a.layoutVertexArray,y.serialize(),Buffer.BufferType.VERTEX),a.dynamicLayoutVertexArray&&e.dynamicLayoutAttributes){var u=createVertexArrayType(e.dynamicLayoutAttributes);this.dynamicLayoutVertexArray=new u(a.dynamicLayoutVertexArray),this.dynamicLayoutVertexBuffer=new Buffer(a.dynamicLayoutVertexArray,u.serialize(),Buffer.BufferType.VERTEX,!0)}a.elementArray&&e.elementArrayType&&(this.elementBuffer=new Buffer(a.elementArray,e.elementArrayType.serialize(),Buffer.BufferType.ELEMENT)),a.elementArray2&&e.elementArrayType2&&(this.elementBuffer2=new Buffer(a.elementArray2,e.elementArrayType2.serialize(),Buffer.BufferType.ELEMENT)),this.layerData={};for(var i=0,n=r;i<n.length;i+=1){var s=n[i],o=a.paintVertexArrays&&a.paintVertexArrays[s.id],l=ProgramConfiguration.createDynamic(e,s,t),m=o?new Buffer(o.array,o.type,Buffer.BufferType.VERTEX):null;f.layerData[s.id]={programConfiguration:l,paintVertexBuffer:m}}this.segments=a.segments,this.segments2=a.segments2;for(var B=0,p=[f.segments,f.segments2];B<p.length;B+=1)for(var c=p[B],A=0,h=c||[];A<h.length;A+=1){var x=h[A];x.vaos=util.mapObject(f.layerData,function(){return new VertexArrayObject})}};BufferGroup.prototype.destroy=function(){var e=this;this.layoutVertexBuffer.destroy(),this.dynamicLayoutVertexBuffer&&this.dynamicLayoutVertexBuffer.destroy(),this.elementBuffer&&this.elementBuffer.destroy(),this.elementBuffer2&&this.elementBuffer2.destroy();for(var r in e.layerData){var t=e.layerData[r].paintVertexBuffer;t&&t.destroy()}for(var a=0,f=[e.segments,e.segments2];a<f.length;a+=1)for(var y=f[a],u=0,i=y||[];u<i.length;u+=1){var n=i[u];for(var s in n.vaos)n.vaos[s].destroy()}},module.exports=BufferGroup;
},{"../render/vertex_array_object":107,"../util/util":247,"./buffer":72,"./program_configuration":79,"./vertex_array_type":81}],74:[function(_dereq_,module,exports){
"use strict";function createElementArrayType(e){return createStructArrayType({members:[{type:"Uint16",name:"vertices",components:e||3}]})}var createStructArrayType=_dereq_("../util/struct_array");module.exports=createElementArrayType;
},{"../util/struct_array":244}],75:[function(_dereq_,module,exports){
"use strict";module.exports=8192;
},{}],76:[function(_dereq_,module,exports){
"use strict";function translateDistance(e){return Math.sqrt(e[0]*e[0]+e[1]*e[1])}function topDownFeatureComparator(e,t){return t-e}function getLineWidth(e,t){return t>0?t+2*e:e}function translate(e,t,r,i,a){if(!t[0]&&!t[1])return e;t=Point.convert(t),"viewport"===r&&t._rotate(-i);for(var n=[],o=0;o<e.length;o++){for(var s=e[o],u=[],l=0;l<s.length;l++)u.push(s[l].sub(t._mult(a)));n.push(u)}return n}function offsetLine(e,t){for(var r=[],i=new Point(0,0),a=0;a<e.length;a++){for(var n=e[a],o=[],s=0;s<n.length;s++){var u=n[s-1],l=n[s],c=n[s+1],y=0===s?i:l.sub(u)._unit()._perp(),f=s===n.length-1?i:c.sub(l)._unit()._perp(),d=y._add(f)._unit(),h=d.x*f.x+d.y*f.y;d._mult(1/h),o.push(d._mult(t)._add(l))}r.push(o)}return r}var Point=_dereq_("../@minemap/point-geometry"),loadGeometry=_dereq_("./load_geometry"),EXTENT=_dereq_("./extent"),featureFilter=_dereq_("../style-spec/feature_filter"),createStructArrayType=_dereq_("../util/struct_array"),Grid=_dereq_("grid-index"),DictionaryCoder=_dereq_("../util/dictionary_coder"),vt=_dereq_("../@minemap/vector-tile"),Protobuf=_dereq_("pbf"),GeoJSONFeature=_dereq_("../util/vectortile_to_geojson"),arraysIntersect=_dereq_("../util/util").arraysIntersect,intersection=_dereq_("../util/intersection_tests"),multiPolygonIntersectsBufferedMultiPoint=intersection.multiPolygonIntersectsBufferedMultiPoint,multiPolygonIntersectsMultiPolygon=intersection.multiPolygonIntersectsMultiPolygon,multiPolygonIntersectsBufferedMultiLine=intersection.multiPolygonIntersectsBufferedMultiLine,FeatureIndexArray=createStructArrayType({members:[{type:"Uint32",name:"featureIndex"},{type:"Uint16",name:"sourceLayerIndex"},{type:"Uint16",name:"bucketIndex"}]}),FeatureIndex=function(e,t,r,i){this.coord=e,this.overscaling=t,this.x=e.x,this.y=e.y,this.z=e.z-Math.log(t)/Math.LN2,this.grid=r||new Grid(EXTENT,16,0),this.featureIndexArray=i||new FeatureIndexArray};FeatureIndex.deserialize=function(e,t,r){var i=new FeatureIndex(e.coord,e.overscaling,new Grid(e.grid),new FeatureIndexArray(e.featureIndexArray));return i.rawTileData=t,i.bucketLayerIDs=e.bucketLayerIDs,i.paintPropertyStatistics=e.paintPropertyStatistics,i.setCollisionTile(r),i},FeatureIndex.prototype.insert=function(e,t,r,i){var a=this,n=this.featureIndexArray.length;this.featureIndexArray.emplaceBack(t,r,i);for(var o=loadGeometry(e),s=0;s<o.length;s++){for(var u=o[s],l=[1/0,1/0,-1/0,-1/0],c=0;c<u.length;c++){var y=u[c];l[0]=Math.min(l[0],y.x),l[1]=Math.min(l[1],y.y),l[2]=Math.max(l[2],y.x),l[3]=Math.max(l[3],y.y)}a.grid.insert(n,l[0],l[1],l[2],l[3])}},FeatureIndex.prototype.setCollisionTile=function(e){this.collisionTile=e},FeatureIndex.prototype.serialize=function(e){var t=this.grid.toArrayBuffer();return e&&e.push(t),{coord:this.coord,overscaling:this.overscaling,grid:t,featureIndexArray:this.featureIndexArray.serialize(e),bucketLayerIDs:this.bucketLayerIDs,paintPropertyStatistics:this.paintPropertyStatistics}},FeatureIndex.prototype.query=function(e,t){var r=this;this.vtLayers||(this.vtLayers=new vt.VectorTile(new Protobuf(this.rawTileData)).layers,this.sourceLayerCoder=new DictionaryCoder(this.vtLayers?Object.keys(this.vtLayers).sort():["_geojsonTileLayer"]));var i={},a=e.params||{},n=EXTENT/e.tileSize/e.scale,o=featureFilter(a.filter),s=0;for(var u in t)if(r.hasLayer(u)){var l=t[u],c=0,y=l.type;if("line"===y||"sprite"===y||"airline"===y||"tracking"===y||"dynamicLine"===y){var f=getLineWidth(r.getPaintValue(y+"-width",l),r.getPaintValue(y+"-gap-width",l)),d=r.getPaintValue(y+"-offset",l),h=r.getPaintValue(y+"-translate",l);c=f/2+Math.abs(d)+translateDistance(h)}else"fill"===y||"extrusion"===y||"histogram"===y?c=translateDistance(r.getPaintValue(y+"-translate",l)):"circle"===y&&(c=r.getPaintValue(y+"-radius",l)+translateDistance(r.getPaintValue(y+"-translate",l)));s=Math.max(s,c*n)}for(var g=e.queryGeometry.map(function(e){return e.map(function(e){return new Point(e.x,e.y)})}),p=1/0,v=1/0,m=-1/0,x=-1/0,I=0;I<g.length;I++)for(var P=g[I],L=0;L<P.length;L++){var M=P[L];p=Math.min(p,M.x),v=Math.min(v,M.y),m=Math.max(m,M.x),x=Math.max(x,M.y)}var b=this.grid.query(p-s,v-s,m+s,x+s);b.sort(topDownFeatureComparator),this.filterMatching(i,b,this.featureIndexArray,g,o,a.layers,t,e.bearing,n);var F=this.collisionTile.queryRenderedSymbols(g,e.scale);return F.sort(),this.filterMatching(i,F,this.collisionTile.collisionBoxArray,g,o,a.layers,t,e.bearing,n),i},FeatureIndex.prototype.filterMatching=function(e,t,r,i,a,n,o,s,u){for(var l,c=this,y=0;y<t.length;y++){var f=t[y];if(f!==l){l=f;var d=r.get(f),h=c.bucketLayerIDs[d.bucketIndex];if(!n||arraysIntersect(n,h)){var g=c.sourceLayerCoder.decode(d.sourceLayerIndex),p=c.vtLayers[g],v=p.feature(d.featureIndex);if(a(v))for(var m=null,x=0;x<h.length;x++){var I=h[x];if(!(n&&n.indexOf(I)<0)){var P=o[I];if(P){var L=void 0,M=P.type;if("symbol"!==M&&"symtracking"!==M)if(m||(m=loadGeometry(v)),"line"===M||"sprite"===M||"airline"===M||"tracking"===M||"dynamicLine"===M){L=translate(i,c.getPaintValue(M+"-translate",P,v),c.getPaintValue(M+"-translate-anchor",P,v),s,u);var b=u/2*getLineWidth(c.getPaintValue(M+"-width",P,v),c.getPaintValue(M+"-gap-width",P,v)),F=c.getPaintValue(M+"-offset",P,v);if(F&&(m=offsetLine(m,F*u)),!multiPolygonIntersectsBufferedMultiLine(L,m,b))continue}else if("fill"===M||"extrusion"===M||"histogram"===M){if(L=translate(i,c.getPaintValue(M+"-translate",P,v),c.getPaintValue(M+"-translate-anchor",P,v),s,u),!multiPolygonIntersectsMultiPolygon(L,m))continue}else if("circle"===M){L=translate(i,c.getPaintValue(M+"-translate",P,v),c.getPaintValue(M+"-translate-anchor",P,v),s,u);var V=c.getPaintValue(M+"-radius",P,v)*u;if(!multiPolygonIntersectsBufferedMultiPoint(L,m,V))continue}var w=new GeoJSONFeature(v,c.z,c.x,c.y);w.layer=P.serialize();var _=e[I];void 0===_&&(_=e[I]=[]),_.push({featureIndex:f,feature:w})}}}}}}},FeatureIndex.prototype.hasLayer=function(e){for(var t=this,r=0,i=t.bucketLayerIDs;r<i.length;r+=1)for(var a=i[r],n=0,o=a;n<o.length;n+=1){var s=o[n];if(e===s)return!0}return!1},FeatureIndex.prototype.getPaintValue=function(e,t,r){if(t.isPaintValueFeatureConstant(e)||r){var i=r?r.properties:{};return t.getPaintValue(e,{zoom:this.z},i)}return this.paintPropertyStatistics[t.id][e].max},module.exports=FeatureIndex;
},{"../@minemap/point-geometry":50,"../@minemap/vector-tile":54,"../style-spec/feature_filter":134,"../util/dictionary_coder":227,"../util/intersection_tests":237,"../util/struct_array":244,"../util/util":247,"../util/vectortile_to_geojson":248,"./extent":75,"./load_geometry":77,"grid-index":20,"pbf":35}],77:[function(_dereq_,module,exports){
"use strict";function createBounds(e){return{min:-1*Math.pow(2,e-1),max:Math.pow(2,e-1)-1}}var util=_dereq_("../util/util"),EXTENT=_dereq_("./extent"),boundsLookup={15:createBounds(15),16:createBounds(16)};module.exports=function(e,t){for(var r=boundsLookup[t||16],o=EXTENT/e.extent,u=e.loadGeometry(),n=0;n<u.length;n++)for(var a=u[n],i=0;i<a.length;i++){var d=a[i];d.x=Math.round(d.x*o),d.y=Math.round(d.y*o),(d.x<r.min||d.x>r.max||d.y<r.min||d.y>r.max)&&util.warnOnce("Geometry exceeds allowed extent, reduce your vector tile buffer size")}return u};
},{"../util/util":247,"./extent":75}],78:[function(_dereq_,module,exports){
"use strict";var createStructArrayType=_dereq_("../util/struct_array"),PosArray=createStructArrayType({members:[{name:"a_pos",type:"Int16",components:2}]});module.exports=PosArray;
},{"../util/struct_array":244}],79:[function(_dereq_,module,exports){
"use strict";function packColor(t,o){return o?[packUint8ToFloat(t[0],t[1]),packUint8ToFloat(t[2],t[3])]:[packUint8ToFloat(255*t[0],255*t[1]),packUint8ToFloat(255*t[2],255*t[3])]}var createVertexArrayType=_dereq_("./vertex_array_type"),interpolationFactor=_dereq_("../style-spec/function").interpolationFactor,packUint8ToFloat=_dereq_("../shaders/encode_attribute").packUint8ToFloat,ConstantBinder=function(t,o,r,e){this.name=t,this.type=o,this.property=r,this.useIntegerZoom=e};ConstantBinder.prototype.defines=function(){return["#define HAS_UNIFORM_u_"+this.name]},ConstantBinder.prototype.populatePaintArray=function(){},ConstantBinder.prototype.setUniforms=function(t,o,r,e){var n=e.zoom,i=r.getPaintValue(this.property,{zoom:this.useIntegerZoom?Math.floor(n):n});"color"===this.type?t.uniform4fv(o["u_"+this.name],i):t.uniform1f(o["u_"+this.name],i)};var SourceFunctionBinder=function(t,o,r){this.name=t,this.type=o,this.property=r};SourceFunctionBinder.prototype.defines=function(){return[]},SourceFunctionBinder.prototype.populatePaintArray=function(t,o,r,e,n,i){var a=this,s=t.getPaintValue(this.property,void 0,i);if("color"===this.type)for(var p=packColor(s,"color"!==this.name),c=e;c<n;c++){var u=o.get(c);u["a_"+a.name+"0"]=p[0],u["a_"+a.name+"1"]=p[1]}else{for(var m=e;m<n;m++){o.get(m)["a_"+a.name]=s}var f=r[this.property];f.max=Math.max(f.max,s)}},SourceFunctionBinder.prototype.setUniforms=function(t,o){t.uniform1f(o["a_"+this.name+"_t"],0)};var CompositeFunctionBinder=function(t,o,r,e,n){this.name=t,this.type=o,this.property=r,this.useIntegerZoom=e,this.zoom=n};CompositeFunctionBinder.prototype.defines=function(){return[]},CompositeFunctionBinder.prototype.populatePaintArray=function(t,o,r,e,n,i){var a=this,s=t.getPaintValue(this.property,{zoom:this.zoom},i),p=t.getPaintValue(this.property,{zoom:this.zoom+1},i);if("color"===this.type)for(var c=packColor(s),u=packColor(p),m=e;m<n;m++){var f=o.get(m);f["a_"+a.name+"0"]=c[0],f["a_"+a.name+"1"]=c[1],f["a_"+a.name+"2"]=u[0],f["a_"+a.name+"3"]=u[1]}else{for(var y=e;y<n;y++){var h=o.get(y);h["a_"+a.name+"0"]=s,h["a_"+a.name+"1"]=p}var l=r[this.property];l.max=Math.max(l.max,s,p)}},CompositeFunctionBinder.prototype.setUniforms=function(t,o,r,e){var n=e.zoom,i=interpolationFactor(this.useIntegerZoom?Math.floor(n):n,1,this.zoom,this.zoom+1);t.uniform1f(o["a_"+this.name+"_t"],i)};var ProgramConfiguration=function(){this.binders={},this.cacheKey=""};ProgramConfiguration.createDynamic=function(t,o,r){for(var e=new ProgramConfiguration,n=[],i=0,a=t.paintAttributes||[];i<a.length;i+=1){var s=a[i],p=s.property,c=s.useIntegerZoom||!1,u=s.name||p.replace(o.type+"-","").replace(/-/g,"_"),m=o._paintSpecifications[p].type;o.isPaintValueFeatureConstant(p)?(e.binders[u]=new ConstantBinder(u,m,p,c),e.cacheKey+="/u_"+u):o.isPaintValueZoomConstant(p)?(e.binders[u]=new SourceFunctionBinder(u,m,p),e.cacheKey+="/a_"+u,n.push({name:"a_"+u,type:"Float32",components:"color"===m?2:1})):(e.binders[u]=new CompositeFunctionBinder(u,m,p,c,r),e.cacheKey+="/z_"+u,n.push({name:"a_"+u,type:"Float32",components:"color"===m?4:2}))}return e.PaintVertexArray=createVertexArrayType(n),e.interface=t,e},ProgramConfiguration.createBasicFill=function(){var t=new ProgramConfiguration;return t.binders.color=new ConstantBinder("color","color","fill-color",!1),t.cacheKey+="/u_color",t.binders.opacity=new ConstantBinder("opacity","number","fill-opacity",!1),t.cacheKey+="/u_opacity",t},ProgramConfiguration.prototype.createPaintPropertyStatistics=function(){var t=this,o={};for(var r in t.binders)o[t.binders[r].property]={max:-1/0};return o},ProgramConfiguration.prototype.populatePaintArray=function(t,o,r,e,n){var i=this,a=o.length;o.resize(e);for(var s in i.binders)i.binders[s].populatePaintArray(t,o,r,a,e,n)},ProgramConfiguration.prototype.defines=function(){var t=this,o=[];for(var r in t.binders)o.push.apply(o,t.binders[r].defines());return o},ProgramConfiguration.prototype.setUniforms=function(t,o,r,e){var n=this;for(var i in n.binders)n.binders[i].setUniforms(t,o,r,e)},module.exports=ProgramConfiguration;
},{"../shaders/encode_attribute":108,"../style-spec/function":136,"./vertex_array_type":81}],80:[function(_dereq_,module,exports){
"use strict";var createStructArrayType=_dereq_("../util/struct_array"),RasterBoundsArray=createStructArrayType({members:[{name:"a_pos",type:"Int16",components:2},{name:"a_texture_pos",type:"Int16",components:2}]});module.exports=RasterBoundsArray;
},{"../util/struct_array":244}],81:[function(_dereq_,module,exports){
"use strict";function createVertexArrayType(r){return createStructArrayType({members:r,alignment:4})}var createStructArrayType=_dereq_("../util/struct_array");module.exports=createVertexArrayType;
},{"../util/struct_array":244}],82:[function(_dereq_,module,exports){
"use strict";var Coordinate=function(o,t,n){this.column=o,this.row=t,this.zoom=n};Coordinate.prototype.clone=function(){return new Coordinate(this.column,this.row,this.zoom)},Coordinate.prototype.zoomTo=function(o){return this.clone()._zoomTo(o)},Coordinate.prototype.sub=function(o){return this.clone()._sub(o)},Coordinate.prototype._zoomTo=function(o){var t=Math.pow(2,o-this.zoom);return this.column*=t,this.row*=t,this.zoom=o,this},Coordinate.prototype._sub=function(o){return o=o.zoomTo(this.zoom),this.column-=o.column,this.row-=o.row,this},module.exports=Coordinate;
},{}],83:[function(_dereq_,module,exports){
"use strict";var wrap=_dereq_("../util/util").wrap,LngLat=function(t,n){if(isNaN(t)||isNaN(n))throw new Error("Invalid LngLat object: ("+t+", "+n+")");if(this.lng=+t,this.lat=+n,this.lat>90||this.lat<-90)throw new Error("Invalid LngLat latitude value: must be between -90 and 90")};LngLat.prototype.wrap=function(){return new LngLat(wrap(this.lng,-180,180),this.lat)},LngLat.prototype.wrapToBestWorld=function(t){var n=new LngLat(this.lng,this.lat);return Math.abs(this.lng-t.lng)>180&&(t.lng<0?n.lng-=360:n.lng+=360),n},LngLat.prototype.toArray=function(){return[this.lng,this.lat]},LngLat.prototype.toString=function(){return"LngLat("+this.lng+", "+this.lat+")"},LngLat.prototype.toBounds=function(t){var n=360*t/40075017,a=n/Math.cos(Math.PI/180*this.lat);return new(_dereq_("./lng_lat_bounds"))(new LngLat(this.lng-a,this.lat-n),new LngLat(this.lng+a,this.lat+n))},LngLat.convert=function(t){if(t instanceof LngLat)return t;if(Array.isArray(t)&&2===t.length)return new LngLat(Number(t[0]),Number(t[1]));if(!Array.isArray(t)&&"object"==typeof t&&null!==t)return new LngLat(Number(t.lng),Number(t.lat));throw new Error("`LngLatLike` argument must be specified as a LngLat instance, an object {lng: <lng>, lat: <lat>}, or an array of [<lng>, <lat>]")},module.exports=LngLat;
},{"../util/util":247,"./lng_lat_bounds":84}],84:[function(_dereq_,module,exports){
"use strict";var LngLat=_dereq_("./lng_lat"),LngLatBounds=function(t,n){t&&(n?this.setSouthWest(t).setNorthEast(n):4===t.length?this.setSouthWest([t[0],t[1]]).setNorthEast([t[2],t[3]]):this.setSouthWest(t[0]).setNorthEast(t[1]))};LngLatBounds.prototype.setNorthEast=function(t){return this._ne=t instanceof LngLat?new LngLat(t.lng,t.lat):LngLat.convert(t),this},LngLatBounds.prototype.setSouthWest=function(t){return this._sw=t instanceof LngLat?new LngLat(t.lng,t.lat):LngLat.convert(t),this},LngLatBounds.prototype.extend=function(t){var n,e,s=this._sw,o=this._ne;if(t instanceof LngLat)n=t,e=t;else{if(!(t instanceof LngLatBounds))return Array.isArray(t)?t.every(Array.isArray)?this.extend(LngLatBounds.convert(t)):this.extend(LngLat.convert(t)):this;if(n=t._sw,e=t._ne,!n||!e)return this}return s||o?(s.lng=Math.min(n.lng,s.lng),s.lat=Math.min(n.lat,s.lat),o.lng=Math.max(e.lng,o.lng),o.lat=Math.max(e.lat,o.lat)):(this._sw=new LngLat(n.lng,n.lat),this._ne=new LngLat(e.lng,e.lat)),this},LngLatBounds.prototype.getCenter=function(){return new LngLat((this._sw.lng+this._ne.lng)/2,(this._sw.lat+this._ne.lat)/2)},LngLatBounds.prototype.getSouthWest=function(){return this._sw},LngLatBounds.prototype.getNorthEast=function(){return this._ne},LngLatBounds.prototype.getNorthWest=function(){return new LngLat(this.getWest(),this.getNorth())},LngLatBounds.prototype.getSouthEast=function(){return new LngLat(this.getEast(),this.getSouth())},LngLatBounds.prototype.getWest=function(){return this._sw.lng},LngLatBounds.prototype.getSouth=function(){return this._sw.lat},LngLatBounds.prototype.getEast=function(){return this._ne.lng},LngLatBounds.prototype.getNorth=function(){return this._ne.lat},LngLatBounds.prototype.toArray=function(){return[this._sw.toArray(),this._ne.toArray()]},LngLatBounds.prototype.toString=function(){return"LngLatBounds("+this._sw.toString()+", "+this._ne.toString()+")"},LngLatBounds.convert=function(t){return!t||t instanceof LngLatBounds?t:new LngLatBounds(t)},module.exports=LngLatBounds;
},{"./lng_lat":83}],85:[function(_dereq_,module,exports){
"use strict";var LngLat=_dereq_("./lng_lat"),Point=_dereq_("../@minemap/point-geometry"),Coordinate=_dereq_("./coordinate"),util=_dereq_("../util/util"),interp=_dereq_("../style-spec/util/interpolate"),TileCoord=_dereq_("../source/tile_coord"),EXTENT=_dereq_("../data/extent"),glmatrix=_dereq_("../@minemap/gl-matrix"),vec4=glmatrix.vec4,mat4=glmatrix.mat4,mat2=glmatrix.mat2,Transform=function(t,i,o){this.tileSize=512,this._renderWorldCopies=void 0===o||o,this._minZoom=t||0,this._maxZoom=i||22,this.latRange=[-85.05113,85.05113],this.width=0,this.height=0,this._center=new LngLat(0,0),this.zoom=0,this.angle=0,this._fov=.6435011087932844,this._pitch=0,this._unmodified=!0},prototypeAccessors={minZoom:{},maxZoom:{},renderWorldCopies:{},worldSize:{},centerPoint:{},size:{},bearing:{},pitch:{},fov:{},zoom:{},center:{},unmodified:{},x:{},y:{},point:{}};prototypeAccessors.minZoom.get=function(){return this._minZoom},prototypeAccessors.minZoom.set=function(t){this._minZoom!==t&&(this._minZoom=t,this.zoom=Math.max(this.zoom,t))},prototypeAccessors.maxZoom.get=function(){return this._maxZoom},prototypeAccessors.maxZoom.set=function(t){this._maxZoom!==t&&(this._maxZoom=t,this.zoom=Math.min(this.zoom,t))},prototypeAccessors.renderWorldCopies.get=function(){return this._renderWorldCopies},prototypeAccessors.worldSize.get=function(){return this.tileSize*this.scale},prototypeAccessors.centerPoint.get=function(){return this.size._div(2)},prototypeAccessors.size.get=function(){return new Point(this.width,this.height)},prototypeAccessors.bearing.get=function(){return-this.angle/Math.PI*180},prototypeAccessors.bearing.set=function(t){var i=-util.wrap(t,-180,180)*Math.PI/180;this.angle!==i&&(this._unmodified=!1,this.angle=i,this._calcMatrices(),this.rotationMatrix=mat2.create(),mat2.rotate(this.rotationMatrix,this.rotationMatrix,this.angle))},prototypeAccessors.pitch.get=function(){return this._pitch/Math.PI*180},prototypeAccessors.pitch.set=function(t){var i=util.clamp(t,0,60)/180*Math.PI;this._pitch!==i&&(this._unmodified=!1,this._pitch=i,this._calcMatrices())},prototypeAccessors.fov.get=function(){return this._fov/Math.PI*180},prototypeAccessors.fov.set=function(t){t=Math.max(.01,Math.min(60,t)),this._fov!==t&&(this._unmodified=!1,this._fov=t/180*Math.PI,this._calcMatrices())},prototypeAccessors.zoom.get=function(){return this._zoom},prototypeAccessors.zoom.set=function(t){var i=Math.min(Math.max(t,this.minZoom),this.maxZoom);this._zoom!==i&&(this._unmodified=!1,this._zoom=i,this.scale=this.zoomScale(i),this.tileZoom=Math.floor(i),this.zoomFraction=i-this.tileZoom,this._constrain(),this._calcMatrices())},prototypeAccessors.center.get=function(){return this._center},prototypeAccessors.center.set=function(t){t.lat===this._center.lat&&t.lng===this._center.lng||(this._unmodified=!1,this._center=t,this._constrain(),this._calcMatrices())},Transform.prototype.coveringZoomLevel=function(t){return(t.roundZoom?Math.round:Math.floor)(this.zoom+this.scaleZoom(this.tileSize/t.tileSize))},Transform.prototype.getVisibleWrappedCoordinates=function(t){for(var i=this.pointCoordinate(new Point(0,0),0),o=this.pointCoordinate(new Point(this.width,0),0),e=Math.floor(i.column),r=Math.floor(o.column),n=[t],s=e;s<=r;s++)0!==s&&n.push(new TileCoord(t.z,t.x,t.y,s));return n},Transform.prototype.coveringTiles=function(t){var i=this.coveringZoomLevel(t),o=i;if(i<t.minzoom)return[];i>t.maxzoom&&(i=t.maxzoom);var e=this.pointCoordinate(this.centerPoint,i),r=new Point(e.column-.5,e.row-.5),n=[this.pointCoordinate(new Point(0,0),i),this.pointCoordinate(new Point(this.width,0),i),this.pointCoordinate(new Point(this.width,this.height),i),this.pointCoordinate(new Point(0,this.height),i)];return TileCoord.cover(i,n,t.reparseOverscaled?o:i,this._renderWorldCopies).sort(function(t,i){return r.dist(t)-r.dist(i)})},Transform.prototype.resize=function(t,i){this.width=t,this.height=i,this.pixelsToGLUnits=[2/t,-2/i],this._constrain(),this._calcMatrices()},prototypeAccessors.unmodified.get=function(){return this._unmodified},Transform.prototype.zoomScale=function(t){return Math.pow(2,t)},Transform.prototype.scaleZoom=function(t){return Math.log(t)/Math.LN2},Transform.prototype.project=function(t){return new Point(this.lngX(t.lng),this.latY(t.lat))},Transform.prototype.unproject=function(t){return new LngLat(this.xLng(t.x),this.yLat(t.y))},prototypeAccessors.x.get=function(){return this.lngX(this.center.lng)},prototypeAccessors.y.get=function(){return this.latY(this.center.lat)},prototypeAccessors.point.get=function(){return new Point(this.x,this.y)},Transform.prototype.lngX=function(t){return(180+t)*this.worldSize/360},Transform.prototype.latY=function(t){return(180-180/Math.PI*Math.log(Math.tan(Math.PI/4+t*Math.PI/360)))*this.worldSize/360},Transform.prototype.xLng=function(t){return 360*t/this.worldSize-180},Transform.prototype.yLat=function(t){var i=180-360*t/this.worldSize;return 360/Math.PI*Math.atan(Math.exp(i*Math.PI/180))-90},Transform.prototype.setLocationAtPoint=function(t,i){var o=this.pointCoordinate(i)._sub(this.pointCoordinate(this.centerPoint));this.center=this.coordinateLocation(this.locationCoordinate(t)._sub(o)),this._renderWorldCopies&&(this.center=this.center.wrap())},Transform.prototype.locationPoint=function(t){return this.coordinatePoint(this.locationCoordinate(t))},Transform.prototype.pointLocation=function(t){return this.coordinateLocation(this.pointCoordinate(t))},Transform.prototype.locationCoordinate=function(t){return new Coordinate(this.lngX(t.lng)/this.tileSize,this.latY(t.lat)/this.tileSize,this.zoom).zoomTo(this.tileZoom)},Transform.prototype.coordinateLocation=function(t){var i=t.zoomTo(this.zoom);return new LngLat(this.xLng(i.column*this.tileSize),this.yLat(i.row*this.tileSize))},Transform.prototype.pointCoordinate=function(t,i){void 0===i&&(i=this.tileZoom);var o=[t.x,t.y,0,1],e=[t.x,t.y,1,1];vec4.transformMat4(o,o,this.pixelMatrixInverse),vec4.transformMat4(e,e,this.pixelMatrixInverse);var r=o[3],n=e[3],s=o[0]/r,a=e[0]/n,h=o[1]/r,c=e[1]/n,m=o[2]/r,p=e[2]/n,l=m===p?0:(0-m)/(p-m);return new Coordinate(interp(s,a,l)/this.tileSize,interp(h,c,l)/this.tileSize,this.zoom)._zoomTo(i)},Transform.prototype.coordinatePoint=function(t){var i=t.zoomTo(this.zoom),o=[i.column*this.tileSize,i.row*this.tileSize,0,1];return vec4.transformMat4(o,o,this.pixelMatrix),new Point(o[0]/o[3],o[1]/o[3])},Transform.prototype.calculatePosMatrix=function(t,i){var o=t.toCoordinate(i),e=this.worldSize/this.zoomScale(o.zoom),r=mat4.identity(new Float64Array(16));return mat4.translate(r,r,[o.column*e,o.row*e,0]),mat4.scale(r,r,[e/EXTENT,e/EXTENT,1]),mat4.multiply(r,this.projMatrix,r),new Float32Array(r)},Transform.prototype.cameraToTileDistance=function(t){var i=this.calculatePosMatrix(t.coord,t.sourceMaxZoom),o=[t.tileSize/2,t.tileSize/2,0,1];return vec4.transformMat4(o,o,i),o[3]},Transform.prototype._constrain=function(){if(this.center&&this.width&&this.height&&!this._constraining){this._constraining=!0;var t,i,o,e,r=-90,n=90,s=-180,a=180,h=this.size,c=this._unmodified;if(this.latRange){var m=this.latRange;r=this.latY(m[1]),n=this.latY(m[0]),t=n-r<h.y?h.y/(n-r):0}if(this.lngRange){var p=this.lngRange;s=this.lngX(p[0]),a=this.lngX(p[1]),i=a-s<h.x?h.x/(a-s):0}var l=Math.max(i||0,t||0);if(l)return this.center=this.unproject(new Point(i?(a+s)/2:this.x,t?(n+r)/2:this.y)),this.zoom+=this.scaleZoom(l),this._unmodified=c,void(this._constraining=!1);if(this.latRange){var u=this.y,f=h.y/2;u-f<r&&(e=r+f),u+f>n&&(e=n-f)}if(this.lngRange){var d=this.x,g=h.x/2;d-g<s&&(o=s+g),d+g>a&&(o=a-g)}void 0===o&&void 0===e||(this.center=this.unproject(new Point(void 0!==o?o:this.x,void 0!==e?e:this.y))),this._unmodified=c,this._constraining=!1}},Transform.prototype._calcMatrices=function(){if(this.height){this.cameraToCenterDistance=.5/Math.tan(this._fov/2)*this.height;var t=this._fov/2,i=Math.PI/2+this._pitch,o=Math.sin(t)*this.cameraToCenterDistance/Math.sin(Math.PI-i-t),e=Math.cos(Math.PI/2-this._pitch)*o+this.cameraToCenterDistance,r=1.01*e,n=new Float64Array(16);mat4.perspective(n,this._fov,this.width/this.height,1,r),mat4.scale(n,n,[1,-1,1]),mat4.translate(n,n,[0,0,-this.cameraToCenterDistance]),mat4.rotateX(n,n,this._pitch),mat4.rotateZ(n,n,this.angle),mat4.translate(n,n,[-this.x,-this.y,0]);var s=this.worldSize/(2*Math.PI*6378137*Math.abs(Math.cos(this.center.lat*(Math.PI/180))));if(mat4.scale(n,n,[1,1,s,1]),this.projMatrix=n,n=mat4.create(),mat4.scale(n,n,[this.width/2,-this.height/2,1]),mat4.translate(n,n,[1,-1,0]),this.pixelMatrix=mat4.multiply(new Float64Array(16),n,this.projMatrix),!(n=mat4.invert(new Float64Array(16),this.pixelMatrix)))throw new Error("failed to invert matrix");this.pixelMatrixInverse=n}},Object.defineProperties(Transform.prototype,prototypeAccessors),module.exports=Transform;
},{"../@minemap/gl-matrix":49,"../@minemap/point-geometry":50,"../data/extent":75,"../source/tile_coord":125,"../style-spec/util/interpolate":142,"../util/util":247,"./coordinate":82,"./lng_lat":83}],86:[function(_dereq_,module,exports){
"use strict";var supported=_dereq_("minemap-supported"),browser=_dereq_("./util/browser"),version=_dereq_("../package.json").version,Map=_dereq_("./ui/map"),Navigation=_dereq_("./ui/control/navigation_control"),Geolocate=_dereq_("./ui/control/geolocate_control"),Attribution=_dereq_("./ui/control/attribution_control"),LogoControl=_dereq_("./ui/control/logo_control"),Scale=_dereq_("./ui/control/scale_control"),Fullscreen=_dereq_("./ui/control/fullscreen_control"),Popup=_dereq_("./ui/popup"),Marker=_dereq_("./ui/marker"),Style=_dereq_("./style/style"),LngLat=_dereq_("./geo/lng_lat"),LngLatBounds=_dereq_("./geo/lng_lat_bounds"),Point=_dereq_("./@minemap/point-geometry"),Evented=_dereq_("./util/evented"),config=_dereq_("./util/config"),service=_dereq_("./util/service"),IndoorMap=_dereq_("./util/indoor/indoormap"),util={getJSON:_dereq_("./util/ajax").getJSON,getArrayBuffer:_dereq_("./util/ajax").getArrayBuffer};module.exports={version:version,supported:supported,workerCount:Math.max(Math.floor(browser.hardwareConcurrency/2),1),Map:Map,Navigation:Navigation,Geolocate:Geolocate,Attribution:Attribution,LogoControl:LogoControl,Scale:Scale,Fullscreen:Fullscreen,Popup:Popup,Marker:Marker,Style:Style,LngLat:LngLat,LngLatBounds:LngLatBounds,Point:Point,Evented:Evented,config:config,util:util,service:service,IndoorMap:IndoorMap,get accessToken(){return config.ACCESS_TOKEN},set accessToken(e){config.ACCESS_TOKEN=e},get solution(){return config.SOLU},set solution(e){config.SOLU=e},get dataVersion(){return config.DATA_VERSION},set dataVersion(e){config.DATA_VERSION=e},get TRW(){return config.TRW},set TRW(e){config.TRW=e},get spriteUrl(){return config.spriteUrl},set spriteUrl(e){config.spriteUrl=e},get fontsUrl(){return config.fontsUrl},set fontsUrl(e){config.fontsUrl=e},get serviceUrl(){return config.serviceUrl},set serviceUrl(e){config.serviceUrl=e},get domainUrl(){return config.DOMAIN},set domainUrl(e){config.DOMAIN=e,config.API_URL=config.DOMAIN+config.API_BASE,config.DYN_URL=config.DOMAIN+config.DYN_BASE,config.MERGE_URL=config.DOMAIN+config.MERGE_BASE,config.OTHER_URL=config.DOMAIN+config.OTHER_BASE,config.SRC_URL=config.DOMAIN+config.SRC_BASE,config.DRIVING_ROUTE_URL=config.DOMAIN+config.DRIVING_ROUTE_BASE}};
},{"../package.json":48,"./@minemap/point-geometry":50,"./geo/lng_lat":83,"./geo/lng_lat_bounds":84,"./style/style":168,"./ui/control/attribution_control":203,"./ui/control/fullscreen_control":204,"./ui/control/geolocate_control":205,"./ui/control/logo_control":206,"./ui/control/navigation_control":207,"./ui/control/scale_control":208,"./ui/map":217,"./ui/marker":218,"./ui/popup":219,"./util/ajax":221,"./util/browser":222,"./util/config":226,"./util/evented":231,"./util/indoor/indoormap":236,"./util/service":242,"minemap-supported":34}],87:[function(_dereq_,module,exports){
"use strict";function drawLineTile(e,r,t,i,a,n,T,u,o,f){var E=r.gl;(u||o)&&E.uniform2f(e.u_gl_units_to_pixels,1/r.transform.pixelsToGLUnits[0],1/r.transform.pixelsToGLUnits[1]),r.enableTileClippingMask(n);var s=r.translatePosMatrix(n.posMatrix,t,a.paint["airline-translate"],a.paint["airline-translate-anchor"]);E.uniformMatrix4fv(e.u_matrix,!1,s),E.uniform1f(e.u_ratio,1/pixelsToTileUnits(t,1,r.transform.zoom)),E.uniform1f(e.u_start,f-segmentGroup),E.uniform1f(e.u_segments,segmentGroup),E.uniform1f(e.u_discard,discardLine);for(var m=0,l=i.segments;m<l.length;m+=1){var R=l[m];R.vaos[a.id].bind(E,e,i.layoutVertexBuffer,i.elementBuffer,T.paintVertexBuffer,R.vertexOffset),E.drawElements(E.TRIANGLES,3*R.primitiveLength,E.UNSIGNED_SHORT,3*R.primitiveOffset*2)}}function renderToTexture(e,r){e.activeTexture(e.TEXTURE1);var t=r.viewportTexture;t?e.bindTexture(e.TEXTURE_2D,t):(t=e.createTexture(),e.bindTexture(e.TEXTURE_2D,t),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_S,e.CLAMP_TO_EDGE),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_T,e.CLAMP_TO_EDGE),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,e.LINEAR),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,e.LINEAR),e.texImage2D(e.TEXTURE_2D,0,e.RGBA,r.width,r.height,0,e.RGBA,e.UNSIGNED_BYTE,null),r.viewportTexture=t);var i=r.viewportFbo;if(i)e.bindFramebuffer(e.FRAMEBUFFER,i);else{i=e.createFramebuffer(),e.bindFramebuffer(e.FRAMEBUFFER,i);var a=e.createRenderbuffer();e.bindRenderbuffer(e.RENDERBUFFER,a),e.renderbufferStorage(e.RENDERBUFFER,e.DEPTH_COMPONENT16,r.width,r.height),e.framebufferRenderbuffer(e.FRAMEBUFFER,e.DEPTH_ATTACHMENT,e.RENDERBUFFER,a),r.viewportFbo=i}return e.framebufferTexture2D(e.FRAMEBUFFER,e.COLOR_ATTACHMENT0,e.TEXTURE_2D,t,0),t}function renderTextureToMap(e,r,t,i){var a=r.useProgram("extrusionTexture");e.activeTexture(e.TEXTURE0),e.bindTexture(e.TEXTURE_2D,i),e.uniform1f(a.u_opacity,t.paint["airline-opacity"]),e.uniform1i(a.u_image,1);var n=mat4.create();mat4.ortho(n,0,r.width,r.height,0,0,1),e.uniformMatrix4fv(a.u_matrix,!1,n),e.disable(e.DEPTH_TEST),e.uniform2f(a.u_world,e.drawingBufferWidth,e.drawingBufferHeight);var T=new PosArray;T.emplaceBack(0,0),T.emplaceBack(1,0),T.emplaceBack(0,1),T.emplaceBack(1,1);var u=Buffer.fromStructArray(T,Buffer.BufferType.VERTEX);(new VertexArrayObject).bind(e,a,u),e.drawArrays(e.TRIANGLE_STRIP,0,4),e.enable(e.DEPTH_TEST)}var browser=_dereq_("../util/browser"),pixelsToTileUnits=_dereq_("../source/pixels_to_tile_units"),glMatrix=_dereq_("../@minemap/gl-matrix"),Buffer=_dereq_("../data/buffer"),VertexArrayObject=_dereq_("./vertex_array_object"),PosArray=_dereq_("../data/pos_array"),mat4=glMatrix.mat4,segmentGroup=20,discardLine=0;module.exports=function(e,r,t,i){var a=this;if(!e.isOpaquePass){var n=e.gl;n.disable(n.STENCIL_TEST),n.enable(n.DEPTH_TEST),e.depthMask(!0);var T=renderToTexture(n,e);if(n.clearColor(0,0,0,0),n.clear(n.COLOR_BUFFER_BIT|n.DEPTH_BUFFER_BIT),!(t.paint["airline-width"]<=0)){segmentGroup=t.paint["airline-seg-group"]||20,discardLine="none"===t.paint["airline-type"]?0:1,"real-time"===t.paint["airline-type"]&&(this.count||(this.start=(new Date).getTime(),this.count=1),this.end=(new Date).getTime(),this.end-this.start>=1e3/t.paint["airline-speed"]&&(this.count+=1,this.start=this.end));for(var u,o=!0,f=0,E=i;f<E.length;f+=1){var s=E[f],m=r.getTile(s),l=m.getBucket(t);if(l){var R=l.buffers.layerData[t.id],_=e.currentProgram,d=e.useProgram("airline",R.programConfiguration),p=o||d!==_,x=u!==m.coord.z;p&&R.programConfiguration.setUniforms(e.gl,d,t,{zoom:e.transform.zoom}),drawLineTile(d,e,m,l.buffers,t,s,R,p,x,a.count),u=m.coord.z,o=!1}}n.bindFramebuffer(n.FRAMEBUFFER,null),renderTextureToMap(n,e,t,T)}}};
},{"../@minemap/gl-matrix":49,"../data/buffer":72,"../data/pos_array":78,"../source/pixels_to_tile_units":116,"../util/browser":222,"./vertex_array_object":107}],88:[function(_dereq_,module,exports){
"use strict";function drawBackground(r,t,e){var a=r.gl,i=r.transform,n=i.tileSize,o=e.paint["background-color"],l=e.paint["background-pattern"],u=e.paint["background-opacity"],f=!l&&1===o[3]&&1===u;if(r.isOpaquePass===f){a.disable(a.STENCIL_TEST),r.setDepthSublayer(0);var s;if(l){if(pattern.isPatternMissing(l,r))return;s=r.useProgram("fillPattern",r.basicFillProgramConfiguration),pattern.prepare(l,r,s),r.tileExtentPatternVAO.bind(a,s,r.tileExtentBuffer)}else s=r.useProgram("fill",r.basicFillProgramConfiguration),a.uniform4fv(s.u_color,o),r.tileExtentVAO.bind(a,s,r.tileExtentBuffer);a.uniform1f(s.u_opacity,u);for(var c=i.coveringTiles({tileSize:n}),g=0,p=c;g<p.length;g+=1){var d=p[g];l&&pattern.setTile({coord:d,tileSize:n},r,s),a.uniformMatrix4fv(s.u_matrix,!1,r.transform.calculatePosMatrix(d)),a.drawArrays(a.TRIANGLE_STRIP,0,r.tileExtentBuffer.length)}}}var pattern=_dereq_("./pattern");module.exports=drawBackground;
},{"./pattern":106}],89:[function(_dereq_,module,exports){
"use strict";function drawCircles(e,r,i,t){if(!e.isOpaquePass){var a=e.gl;e.setDepthSublayer(0),e.depthMask(!1),a.disable(a.STENCIL_TEST);for(var s=0;s<t.length;s++){var o=t[s],n=r.getTile(o),f=n.getBucket(i);if(f){var l=f.buffers,u=l.layerData[i.id],m=u.programConfiguration,c=e.useProgram("circle",m);if(m.setUniforms(a,c,i,{zoom:e.transform.zoom}),a.uniform1f(c.u_camera_to_center_distance,e.transform.cameraToCenterDistance),a.uniform1i(c.u_scale_with_map,"map"===i.paint["circle-pitch-scale"]),"map"===i.paint["circle-pitch-alignment"]){a.uniform1i(c.u_pitch_with_map,!0);var p=pixelsToTileUnits(n,1,e.transform.zoom);a.uniform2f(c.u_extrude_scale,p,p)}else a.uniform1i(c.u_pitch_with_map,!1),a.uniform2fv(c.u_extrude_scale,e.transform.pixelsToGLUnits);a.uniform1f(c.u_devicepixelratio,browser.devicePixelRatio),a.uniformMatrix4fv(c.u_matrix,!1,e.translatePosMatrix(o.posMatrix,n,i.paint["circle-translate"],i.paint["circle-translate-anchor"]));for(var _=0,v=l.segments;_<v.length;_+=1){var x=v[_];x.vaos[i.id].bind(a,c,l.layoutVertexBuffer,l.elementBuffer,u.paintVertexBuffer,x.vertexOffset),a.drawElements(a.TRIANGLES,3*x.primitiveLength,a.UNSIGNED_SHORT,3*x.primitiveOffset*2)}}}}}var browser=_dereq_("../util/browser"),pixelsToTileUnits=_dereq_("../source/pixels_to_tile_units");module.exports=drawCircles;
},{"../source/pixels_to_tile_units":116,"../util/browser":222}],90:[function(_dereq_,module,exports){
"use strict";function drawCollisionDebug(e,r,i,o){var t=e.gl;t.enable(t.STENCIL_TEST);var a=e.useProgram("collisionBox");t.activeTexture(t.TEXTURE1),e.frameHistory.bind(t),t.uniform1i(a.u_fadetexture,1);for(var n=0;n<o.length;n++){var f=o[n],l=r.getTile(f),m=l.getBucket(i);if(m){var u=m.buffers.collisionBox;if(u){t.uniformMatrix4fv(a.u_matrix,!1,f.posMatrix),e.enableTileClippingMask(f),e.lineWidth(1),t.uniform1f(a.u_scale,Math.pow(2,e.transform.zoom-l.coord.z)),t.uniform1f(a.u_zoom,10*e.transform.zoom);var s=Math.max(0,Math.min(25,l.coord.z+Math.log(l.collisionTile.maxScale)/Math.LN2));t.uniform1f(a.u_maxzoom,10*s),t.uniform1f(a.u_collision_y_stretch,l.collisionTile.yStretch),t.uniform1f(a.u_pitch,e.transform.pitch/360*2*Math.PI),t.uniform1f(a.u_camera_to_center_distance,e.transform.cameraToCenterDistance);for(var c=0,_=u.segments;c<_.length;c+=1){var h=_[c];h.vaos[i.id].bind(t,a,u.layoutVertexBuffer,u.elementBuffer,null,h.vertexOffset),t.drawElements(t.LINES,2*h.primitiveLength,t.UNSIGNED_SHORT,2*h.primitiveOffset*2)}}}}}module.exports=drawCollisionDebug;
},{}],91:[function(_dereq_,module,exports){
"use strict";function drawDebug(r,e,a){for(var t=0;t<a.length;t++)drawDebugTile(r,e,a[t])}function drawDebugTile(r,e,a){var t=r.gl;t.disable(t.STENCIL_TEST),r.lineWidth(1*browser.devicePixelRatio);var i=a.posMatrix,u=r.useProgram("debug");t.uniformMatrix4fv(u.u_matrix,!1,i),t.uniform4f(u.u_color,1,0,0,1),r.debugVAO.bind(t,u,r.debugBuffer),t.drawArrays(t.LINE_STRIP,0,r.debugBuffer.length);for(var o=createTextVerticies(a.toString(),50,200,5),f=new PosArray,n=0;n<o.length;n+=2)f.emplaceBack(o[n],o[n+1]);var l=Buffer.fromStructArray(f,Buffer.BufferType.VERTEX);(new VertexArrayObject).bind(t,u,l),t.uniform4f(u.u_color,1,1,1,1);for(var m=e.getTile(a).tileSize,s=EXTENT/(Math.pow(2,r.transform.zoom-a.z)*m),g=[[-1,-1],[-1,1],[1,-1],[1,1]],d=0;d<g.length;d++){var x=g[d];t.uniformMatrix4fv(u.u_matrix,!1,mat4.translate([],i,[s*x[0],s*x[1],0])),t.drawArrays(t.LINES,0,l.length)}t.uniform4f(u.u_color,0,0,0,1),t.uniformMatrix4fv(u.u_matrix,!1,i),t.drawArrays(t.LINES,0,l.length)}function createTextVerticies(r,e,a,t){t=t||1;var i,u,o,f,n,l,m,s,g=[];for(i=0,u=r.length;i<u;i++)if(n=simplexFont[r[i]]){for(s=null,o=0,f=n[1].length;o<f;o+=2)-1===n[1][o]&&-1===n[1][o+1]?s=null:(l=e+n[1][o]*t,m=a-n[1][o+1]*t,s&&g.push(s.x,s.y,l,m),s={x:l,y:m});e+=n[0]*t}return g}var browser=_dereq_("../util/browser"),mat4=_dereq_("../@minemap/gl-matrix").mat4,EXTENT=_dereq_("../data/extent"),Buffer=_dereq_("../data/buffer"),VertexArrayObject=_dereq_("./vertex_array_object"),PosArray=_dereq_("../data/pos_array");module.exports=drawDebug;var simplexFont={" ":[16,[]],"!":[10,[5,21,5,7,-1,-1,5,2,4,1,5,0,6,1,5,2]],'"':[16,[4,21,4,14,-1,-1,12,21,12,14]],"#":[21,[11,25,4,-7,-1,-1,17,25,10,-7,-1,-1,4,12,18,12,-1,-1,3,6,17,6]],$:[20,[8,25,8,-4,-1,-1,12,25,12,-4,-1,-1,17,18,15,20,12,21,8,21,5,20,3,18,3,16,4,14,5,13,7,12,13,10,15,9,16,8,17,6,17,3,15,1,12,0,8,0,5,1,3,3]],"%":[24,[21,21,3,0,-1,-1,8,21,10,19,10,17,9,15,7,14,5,14,3,16,3,18,4,20,6,21,8,21,10,20,13,19,16,19,19,20,21,21,-1,-1,17,7,15,6,14,4,14,2,16,0,18,0,20,1,21,3,21,5,19,7,17,7]],"&":[26,[23,12,23,13,22,14,21,14,20,13,19,11,17,6,15,3,13,1,11,0,7,0,5,1,4,2,3,4,3,6,4,8,5,9,12,13,13,14,14,16,14,18,13,20,11,21,9,20,8,18,8,16,9,13,11,10,16,3,18,1,20,0,22,0,23,1,23,2]],"'":[10,[5,19,4,20,5,21,6,20,6,18,5,16,4,15]],"(":[14,[11,25,9,23,7,20,5,16,4,11,4,7,5,2,7,-2,9,-5,11,-7]],")":[14,[3,25,5,23,7,20,9,16,10,11,10,7,9,2,7,-2,5,-5,3,-7]],"*":[16,[8,21,8,9,-1,-1,3,18,13,12,-1,-1,13,18,3,12]],"+":[26,[13,18,13,0,-1,-1,4,9,22,9]],",":[10,[6,1,5,0,4,1,5,2,6,1,6,-1,5,-3,4,-4]],"-":[26,[4,9,22,9]],".":[10,[5,2,4,1,5,0,6,1,5,2]],"/":[22,[20,25,2,-7]],0:[20,[9,21,6,20,4,17,3,12,3,9,4,4,6,1,9,0,11,0,14,1,16,4,17,9,17,12,16,17,14,20,11,21,9,21]],1:[20,[6,17,8,18,11,21,11,0]],2:[20,[4,16,4,17,5,19,6,20,8,21,12,21,14,20,15,19,16,17,16,15,15,13,13,10,3,0,17,0]],3:[20,[5,21,16,21,10,13,13,13,15,12,16,11,17,8,17,6,16,3,14,1,11,0,8,0,5,1,4,2,3,4]],4:[20,[13,21,3,7,18,7,-1,-1,13,21,13,0]],5:[20,[15,21,5,21,4,12,5,13,8,14,11,14,14,13,16,11,17,8,17,6,16,3,14,1,11,0,8,0,5,1,4,2,3,4]],6:[20,[16,18,15,20,12,21,10,21,7,20,5,17,4,12,4,7,5,3,7,1,10,0,11,0,14,1,16,3,17,6,17,7,16,10,14,12,11,13,10,13,7,12,5,10,4,7]],7:[20,[17,21,7,0,-1,-1,3,21,17,21]],8:[20,[8,21,5,20,4,18,4,16,5,14,7,13,11,12,14,11,16,9,17,7,17,4,16,2,15,1,12,0,8,0,5,1,4,2,3,4,3,7,4,9,6,11,9,12,13,13,15,14,16,16,16,18,15,20,12,21,8,21]],9:[20,[16,14,15,11,13,9,10,8,9,8,6,9,4,11,3,14,3,15,4,18,6,20,9,21,10,21,13,20,15,18,16,14,16,9,15,4,13,1,10,0,8,0,5,1,4,3]],":":[10,[5,14,4,13,5,12,6,13,5,14,-1,-1,5,2,4,1,5,0,6,1,5,2]],";":[10,[5,14,4,13,5,12,6,13,5,14,-1,-1,6,1,5,0,4,1,5,2,6,1,6,-1,5,-3,4,-4]],"<":[24,[20,18,4,9,20,0]],"=":[26,[4,12,22,12,-1,-1,4,6,22,6]],">":[24,[4,18,20,9,4,0]],"?":[18,[3,16,3,17,4,19,5,20,7,21,11,21,13,20,14,19,15,17,15,15,14,13,13,12,9,10,9,7,-1,-1,9,2,8,1,9,0,10,1,9,2]],"@":[27,[18,13,17,15,15,16,12,16,10,15,9,14,8,11,8,8,9,6,11,5,14,5,16,6,17,8,-1,-1,12,16,10,14,9,11,9,8,10,6,11,5,-1,-1,18,16,17,8,17,6,19,5,21,5,23,7,24,10,24,12,23,15,22,17,20,19,18,20,15,21,12,21,9,20,7,19,5,17,4,15,3,12,3,9,4,6,5,4,7,2,9,1,12,0,15,0,18,1,20,2,21,3,-1,-1,19,16,18,8,18,6,19,5]],A:[18,[9,21,1,0,-1,-1,9,21,17,0,-1,-1,4,7,14,7]],B:[21,[4,21,4,0,-1,-1,4,21,13,21,16,20,17,19,18,17,18,15,17,13,16,12,13,11,-1,-1,4,11,13,11,16,10,17,9,18,7,18,4,17,2,16,1,13,0,4,0]],C:[21,[18,16,17,18,15,20,13,21,9,21,7,20,5,18,4,16,3,13,3,8,4,5,5,3,7,1,9,0,13,0,15,1,17,3,18,5]],D:[21,[4,21,4,0,-1,-1,4,21,11,21,14,20,16,18,17,16,18,13,18,8,17,5,16,3,14,1,11,0,4,0]],E:[19,[4,21,4,0,-1,-1,4,21,17,21,-1,-1,4,11,12,11,-1,-1,4,0,17,0]],F:[18,[4,21,4,0,-1,-1,4,21,17,21,-1,-1,4,11,12,11]],G:[21,[18,16,17,18,15,20,13,21,9,21,7,20,5,18,4,16,3,13,3,8,4,5,5,3,7,1,9,0,13,0,15,1,17,3,18,5,18,8,-1,-1,13,8,18,8]],H:[22,[4,21,4,0,-1,-1,18,21,18,0,-1,-1,4,11,18,11]],I:[8,[4,21,4,0]],J:[16,[12,21,12,5,11,2,10,1,8,0,6,0,4,1,3,2,2,5,2,7]],K:[21,[4,21,4,0,-1,-1,18,21,4,7,-1,-1,9,12,18,0]],L:[17,[4,21,4,0,-1,-1,4,0,16,0]],M:[24,[4,21,4,0,-1,-1,4,21,12,0,-1,-1,20,21,12,0,-1,-1,20,21,20,0]],N:[22,[4,21,4,0,-1,-1,4,21,18,0,-1,-1,18,21,18,0]],O:[22,[9,21,7,20,5,18,4,16,3,13,3,8,4,5,5,3,7,1,9,0,13,0,15,1,17,3,18,5,19,8,19,13,18,16,17,18,15,20,13,21,9,21]],P:[21,[4,21,4,0,-1,-1,4,21,13,21,16,20,17,19,18,17,18,14,17,12,16,11,13,10,4,10]],Q:[22,[9,21,7,20,5,18,4,16,3,13,3,8,4,5,5,3,7,1,9,0,13,0,15,1,17,3,18,5,19,8,19,13,18,16,17,18,15,20,13,21,9,21,-1,-1,12,4,18,-2]],R:[21,[4,21,4,0,-1,-1,4,21,13,21,16,20,17,19,18,17,18,15,17,13,16,12,13,11,4,11,-1,-1,11,11,18,0]],S:[20,[17,18,15,20,12,21,8,21,5,20,3,18,3,16,4,14,5,13,7,12,13,10,15,9,16,8,17,6,17,3,15,1,12,0,8,0,5,1,3,3]],T:[16,[8,21,8,0,-1,-1,1,21,15,21]],U:[22,[4,21,4,6,5,3,7,1,10,0,12,0,15,1,17,3,18,6,18,21]],V:[18,[1,21,9,0,-1,-1,17,21,9,0]],W:[24,[2,21,7,0,-1,-1,12,21,7,0,-1,-1,12,21,17,0,-1,-1,22,21,17,0]],X:[20,[3,21,17,0,-1,-1,17,21,3,0]],Y:[18,[1,21,9,11,9,0,-1,-1,17,21,9,11]],Z:[20,[17,21,3,0,-1,-1,3,21,17,21,-1,-1,3,0,17,0]],"[":[14,[4,25,4,-7,-1,-1,5,25,5,-7,-1,-1,4,25,11,25,-1,-1,4,-7,11,-7]],"\\":[14,[0,21,14,-3]],"]":[14,[9,25,9,-7,-1,-1,10,25,10,-7,-1,-1,3,25,10,25,-1,-1,3,-7,10,-7]],"^":[16,[6,15,8,18,10,15,-1,-1,3,12,8,17,13,12,-1,-1,8,17,8,0]],_:[16,[0,-2,16,-2]],"`":[10,[6,21,5,20,4,18,4,16,5,15,6,16,5,17]],a:[19,[15,14,15,0,-1,-1,15,11,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],b:[19,[4,21,4,0,-1,-1,4,11,6,13,8,14,11,14,13,13,15,11,16,8,16,6,15,3,13,1,11,0,8,0,6,1,4,3]],c:[18,[15,11,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],d:[19,[15,21,15,0,-1,-1,15,11,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],e:[18,[3,8,15,8,15,10,14,12,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],f:[12,[10,21,8,21,6,20,5,17,5,0,-1,-1,2,14,9,14]],g:[19,[15,14,15,-2,14,-5,13,-6,11,-7,8,-7,6,-6,-1,-1,15,11,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],h:[19,[4,21,4,0,-1,-1,4,10,7,13,9,14,12,14,14,13,15,10,15,0]],i:[8,[3,21,4,20,5,21,4,22,3,21,-1,-1,4,14,4,0]],j:[10,[5,21,6,20,7,21,6,22,5,21,-1,-1,6,14,6,-3,5,-6,3,-7,1,-7]],k:[17,[4,21,4,0,-1,-1,14,14,4,4,-1,-1,8,8,15,0]],l:[8,[4,21,4,0]],m:[30,[4,14,4,0,-1,-1,4,10,7,13,9,14,12,14,14,13,15,10,15,0,-1,-1,15,10,18,13,20,14,23,14,25,13,26,10,26,0]],n:[19,[4,14,4,0,-1,-1,4,10,7,13,9,14,12,14,14,13,15,10,15,0]],o:[19,[8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3,16,6,16,8,15,11,13,13,11,14,8,14]],p:[19,[4,14,4,-7,-1,-1,4,11,6,13,8,14,11,14,13,13,15,11,16,8,16,6,15,3,13,1,11,0,8,0,6,1,4,3]],q:[19,[15,14,15,-7,-1,-1,15,11,13,13,11,14,8,14,6,13,4,11,3,8,3,6,4,3,6,1,8,0,11,0,13,1,15,3]],r:[13,[4,14,4,0,-1,-1,4,8,5,11,7,13,9,14,12,14]],s:[17,[14,11,13,13,10,14,7,14,4,13,3,11,4,9,6,8,11,7,13,6,14,4,14,3,13,1,10,0,7,0,4,1,3,3]],t:[12,[5,21,5,4,6,1,8,0,10,0,-1,-1,2,14,9,14]],u:[19,[4,14,4,4,5,1,7,0,10,0,12,1,15,4,-1,-1,15,14,15,0]],v:[16,[2,14,8,0,-1,-1,14,14,8,0]],w:[22,[3,14,7,0,-1,-1,11,14,7,0,-1,-1,11,14,15,0,-1,-1,19,14,15,0]],x:[17,[3,14,14,0,-1,-1,14,14,3,0]],y:[16,[2,14,8,0,-1,-1,14,14,8,0,6,-4,4,-6,2,-7,1,-7]],z:[17,[14,14,3,0,-1,-1,3,14,14,14,-1,-1,3,0,14,0]],"{":[14,[9,25,7,24,6,23,5,21,5,19,6,17,7,16,8,14,8,12,6,10,-1,-1,7,24,6,22,6,20,7,18,8,17,9,15,9,13,8,11,4,9,8,7,9,5,9,3,8,1,7,0,6,-2,6,-4,7,-6,-1,-1,6,8,8,6,8,4,7,2,6,1,5,-1,5,-3,6,-5,7,-6,9,-7]],"|":[8,[4,25,4,-7]],"}":[14,[5,25,7,24,8,23,9,21,9,19,8,17,7,16,6,14,6,12,8,10,-1,-1,7,24,8,22,8,20,7,18,6,17,5,15,5,13,6,11,10,9,6,7,5,5,5,3,6,1,7,0,8,-2,8,-4,7,-6,-1,-1,8,8,6,6,6,4,7,2,8,1,9,-1,9,-3,8,-5,7,-6,5,-7]],"~":[24,[3,6,3,8,4,11,6,12,8,12,10,11,14,8,16,7,18,7,20,8,21,10,-1,-1,3,8,4,10,6,11,8,11,10,10,14,7,16,6,18,6,20,7,21,10,21,12]]};
},{"../@minemap/gl-matrix":49,"../data/buffer":72,"../data/extent":75,"../data/pos_array":78,"../util/browser":222,"./vertex_array_object":107}],92:[function(_dereq_,module,exports){
"use strict";function drawLineTile(i,t,e,r,n,a,o,s,f,u){var l,m,p,_,d=t.gl,g=n.paint["dynamicLine-dasharray"],c=n.paint["dynamicLine-pattern"];if(s||f){var h=1/pixelsToTileUnits(e,1,t.transform.tileZoom);if(g){l=t.lineAtlas.getDash(g.from,"round"===n.layout["dynamicLine-cap"]),m=t.lineAtlas.getDash(g.to,"round"===n.layout["dynamicLine-cap"]);var T=l.width*g.fromScale,v=m.width*g.toScale;d.uniform2f(i.u_patternscale_a,h/T,-l.height/2),d.uniform2f(i.u_patternscale_b,h/v,-m.height/2),d.uniform1f(i.u_sdfgamma,t.lineAtlas.width/(256*Math.min(T,v)*browser.devicePixelRatio)/2)}else if(c){if(p=t.spriteAtlas.getPattern(c.from),_=t.spriteAtlas.getPattern(c.to),!p||!_)return;d.uniform2f(i.u_pattern_size_a,p.displaySize[0]*c.fromScale/h,_.displaySize[1]),d.uniform2f(i.u_pattern_size_b,_.displaySize[0]*c.toScale/h,_.displaySize[1]),d.uniform2fv(i.u_texsize,t.spriteAtlas.getPixelSize())}d.uniform2f(i.u_gl_units_to_pixels,1/t.transform.pixelsToGLUnits[0],1/t.transform.pixelsToGLUnits[1])}s&&(g?(d.uniform1i(i.u_image,0),d.activeTexture(d.TEXTURE0),t.lineAtlas.bind(d),d.uniform1f(i.u_tex_y_a,l.y),d.uniform1f(i.u_tex_y_b,m.y),d.uniform1f(i.u_mix,g.t)):c&&(d.uniform1i(i.u_image,0),d.activeTexture(d.TEXTURE0),t.spriteAtlas.bind(d,!0),d.uniform2fv(i.u_pattern_tl_a,p.tl),d.uniform2fv(i.u_pattern_br_a,p.br),d.uniform2fv(i.u_pattern_tl_b,_.tl),d.uniform2fv(i.u_pattern_br_b,_.br),d.uniform1f(i.u_fade,c.t))),t.enableTileClippingMask(a);var y=t.translatePosMatrix(a.posMatrix,e,n.paint["dynamicLine-translate"],n.paint["dynamicLine-translate-anchor"]);d.uniformMatrix4fv(i.u_matrix,!1,y),d.uniform1f(i.u_ratio,1/pixelsToTileUnits(e,1,t.transform.zoom)),d.uniform1f(i.u_count,u),d.uniform1f(i.u_segments,segmentGroup);for(var x=0,b=r.segments;x<b.length;x+=1){var S=b[x];S.vaos[n.id].bind(d,i,r.layoutVertexBuffer,r.elementBuffer,o.paintVertexBuffer,S.vertexOffset),d.drawElements(d.TRIANGLES,3*S.primitiveLength,d.UNSIGNED_SHORT,3*S.primitiveOffset*2)}}var browser=_dereq_("../util/browser"),pixelsToTileUnits=_dereq_("../source/pixels_to_tile_units"),config=_dereq_("../util/config"),segmentGroup=20;module.exports=function(i,t,e,r){if(!i.isOpaquePass){i.setDepthSublayer(0),i.depthMask(!1);var n=i.gl;if(n.enable(n.STENCIL_TEST),!(e.paint["dynamicLine-width"]<=0)){segmentGroup=e.paint["dynamicLine-seg-group"]||20,e.histEnd=(new Date).getTime(),e.first||(e.first=!0,e.histStart=0,e.histCount=0),e.histEnd-e.histStart>=1e3/e.paint["dynamicLine-speed"]&&(e.histCount++,config.TRW&&config.TRW.setProgress(this.histCount),e.histStart=e.histEnd);for(var a,o=!0,s=0,f=r;s<f.length;s+=1){var u=f[s],l=t.getTile(u),m=l.getBucket(e);if(m){var p=m.buffers.layerData[e.id],_=i.currentProgram,d=i.useProgram("dynamicLine",p.programConfiguration),g=o||d!==_,c=a!==l.coord.z;g&&p.programConfiguration.setUniforms(i.gl,d,e,{zoom:i.transform.zoom}),drawLineTile(d,i,l,m.buffers,e,u,p,g,c,e.histCount),a=l.coord.z,o=!1}}}}};
},{"../source/pixels_to_tile_units":116,"../util/browser":222,"../util/config":226}],93:[function(_dereq_,module,exports){
"use strict";function draw(e,r,t,a){if(!e.isOpaquePass&&0!==t.paint["extrusion-opacity"]){var i=e.gl;i.disable(i.STENCIL_TEST),i.enable(i.DEPTH_TEST),e.depthMask(!0);var n=renderToTexture(i,e);i.clearColor(0,0,0,0),i.clear(i.COLOR_BUFFER_BIT|i.DEPTH_BUFFER_BIT);for(var u=0;u<a.length;u++)drawExtrusion(e,r,t,a[u]);i.bindFramebuffer(i.FRAMEBUFFER,null),renderTextureToMap(i,e,t,n)}}function renderToTexture(e,r){e.activeTexture(e.TEXTURE1);var t=r.viewportTexture;t?e.bindTexture(e.TEXTURE_2D,t):(t=e.createTexture(),e.bindTexture(e.TEXTURE_2D,t),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_S,e.CLAMP_TO_EDGE),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_T,e.CLAMP_TO_EDGE),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,e.LINEAR),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,e.LINEAR),e.texImage2D(e.TEXTURE_2D,0,e.RGBA,r.width,r.height,0,e.RGBA,e.UNSIGNED_BYTE,null),r.viewportTexture=t);var a=r.viewportFbo;if(a)e.bindFramebuffer(e.FRAMEBUFFER,a);else{a=e.createFramebuffer(),e.bindFramebuffer(e.FRAMEBUFFER,a);var i=e.createRenderbuffer();e.bindRenderbuffer(e.RENDERBUFFER,i),e.renderbufferStorage(e.RENDERBUFFER,e.DEPTH_COMPONENT16,r.width,r.height),e.framebufferRenderbuffer(e.FRAMEBUFFER,e.DEPTH_ATTACHMENT,e.RENDERBUFFER,i),r.viewportFbo=a}return e.framebufferTexture2D(e.FRAMEBUFFER,e.COLOR_ATTACHMENT0,e.TEXTURE_2D,t,0),t}function renderTextureToMap(e,r,t,a){var i=r.useProgram("extrusionTexture");e.activeTexture(e.TEXTURE0),e.bindTexture(e.TEXTURE_2D,a),e.uniform1f(i.u_opacity,t.paint["extrusion-opacity"]),e.uniform1i(i.u_image,1);var n=mat4.create();mat4.ortho(n,0,r.width,r.height,0,0,1),e.uniformMatrix4fv(i.u_matrix,!1,n),e.disable(e.DEPTH_TEST),e.uniform2f(i.u_world,e.drawingBufferWidth,e.drawingBufferHeight);var u=new PosArray;u.emplaceBack(0,0),u.emplaceBack(1,0),u.emplaceBack(0,1),u.emplaceBack(1,1);var T=Buffer.fromStructArray(u,Buffer.BufferType.VERTEX);(new VertexArrayObject).bind(e,i,T),e.drawArrays(e.TRIANGLE_STRIP,0,4),e.enable(e.DEPTH_TEST)}function drawExtrusion(e,r,t,a){var i=r.getTile(a),n=i.getBucket(t);if(n){var u=n.buffers,T=e.gl,f=t.paint["extrusion-pattern"],o=u.layerData[t.id],E=o.programConfiguration,l=e.useProgram(f?"extrusionPattern":"extrusion",E);if(E.setUniforms(T,l,t,{zoom:e.transform.zoom}),f){if(pattern.isPatternMissing(f,e))return;pattern.prepare(f,e,l),pattern.setTile(i,e,l),T.uniform1f(l.u_height_factor,-Math.pow(2,a.z)/i.tileSize/8)}e.gl.uniformMatrix4fv(l.u_matrix,!1,e.translatePosMatrix(a.posMatrix,i,t.paint["extrusion-translate"],t.paint["extrusion-translate-anchor"])),setLight(l,e);for(var m=0,s=u.segments;m<s.length;m+=1){var R=s[m];R.vaos[t.id].bind(T,l,u.layoutVertexBuffer,u.elementBuffer,o.paintVertexBuffer,R.vertexOffset),T.drawElements(T.TRIANGLES,3*R.primitiveLength,T.UNSIGNED_SHORT,3*R.primitiveOffset*2)}}}function setLight(e,r){var t=r.gl,a=r.style.light,i=a.calculated.position,n=[i.x,i.y,i.z],u=mat3.create();"viewport"===a.calculated.anchor&&mat3.fromRotation(u,-r.transform.angle),vec3.transformMat3(n,n,u),t.uniform3fv(e.u_lightpos,n),t.uniform1f(e.u_lightintensity,a.calculated.intensity),t.uniform3fv(e.u_lightcolor,a.calculated.color.slice(0,3))}var glMatrix=_dereq_("../@minemap/gl-matrix"),Buffer=_dereq_("../data/buffer"),VertexArrayObject=_dereq_("./vertex_array_object"),PosArray=_dereq_("../data/pos_array"),pattern=_dereq_("./pattern"),mat3=glMatrix.mat3,mat4=glMatrix.mat4,vec3=glMatrix.vec3;module.exports=draw;
},{"../@minemap/gl-matrix":49,"../data/buffer":72,"../data/pos_array":78,"./pattern":106,"./vertex_array_object":107}],94:[function(_dereq_,module,exports){
"use strict";function drawFill(r,t,e,a){var i=r.gl;i.enable(i.STENCIL_TEST);var l=!e.paint["fill-pattern"]&&e.isPaintValueFeatureConstant("fill-color")&&e.isPaintValueFeatureConstant("fill-opacity")&&1===e.paint["fill-color"][3]&&1===e.paint["fill-opacity"];drawWater="water"===e.paint["fill-water"],r.isOpaquePass===l&&(r.setDepthSublayer(1),drawFillTiles(r,t,e,a,drawFillTile)),!r.isOpaquePass&&e.paint["fill-antialias"]&&(r.lineWidth(2),r.depthMask(!1),r.setDepthSublayer(e.getPaintProperty("fill-outline-color")?2:0),drawFillTiles(r,t,e,a,drawStrokeTile))}function drawFillTiles(r,t,e,a,i){if(!pattern.isPatternMissing(e.paint["fill-pattern"],r))for(var l=!0,n=0,o=a;n<o.length;n+=1){var f=o[n],s=t.getTile(f),p=s.getBucket(e);p&&(r.enableTileClippingMask(f),i(r,t,e,s,f,p.buffers,l),l=!1)}}function drawFillTile(r,t,e,a,i,l,n){for(var o=r.gl,f=l.layerData[e.id],s=setFillProgram("fill",e.paint["fill-pattern"],r,f,e,a,i,n),p=0,u=l.segments;p<u.length;p+=1){var g=u[p];g.vaos[e.id].bind(o,s,l.layoutVertexBuffer,l.elementBuffer,f.paintVertexBuffer,g.vertexOffset),o.drawElements(o.TRIANGLES,3*g.primitiveLength,o.UNSIGNED_SHORT,3*g.primitiveOffset*2)}}function drawStrokeTile(r,t,e,a,i,l,n){var o=r.gl,f=l.layerData[e.id],s=e.paint["fill-pattern"]&&!e.getPaintProperty("fill-outline-color"),p=setFillProgram("fillOutline",s,r,f,e,a,i,n);o.uniform2f(p.u_world,o.drawingBufferWidth,o.drawingBufferHeight);for(var u=0,g=l.segments2;u<g.length;u+=1){var m=g[u];m.vaos[e.id].bind(o,p,l.layoutVertexBuffer,l.elementBuffer2,f.paintVertexBuffer,m.vertexOffset),o.drawElements(o.LINES,2*m.primitiveLength,o.UNSIGNED_SHORT,2*m.primitiveOffset*2)}}function setFillProgram(r,t,e,a,i,l,n,o){var f,s=e.currentProgram;return drawWater?(f=e.useProgram("fillWater",a.programConfiguration),(o||f!==s)&&a.programConfiguration.setUniforms(e.gl,f,i,{zoom:e.transform.zoom}),e.gl.uniform1f(f.u_time,performance.now()/1e3)):t?(f=e.useProgram(r+"Pattern",a.programConfiguration),(o||f!==s)&&(a.programConfiguration.setUniforms(e.gl,f,i,{zoom:e.transform.zoom}),pattern.prepare(i.paint["fill-pattern"],e,f)),pattern.setTile(l,e,f)):(f=e.useProgram(r,a.programConfiguration),(o||f!==s)&&a.programConfiguration.setUniforms(e.gl,f,i,{zoom:e.transform.zoom})),e.gl.uniformMatrix4fv(f.u_matrix,!1,e.translatePosMatrix(n.posMatrix,l,i.paint["fill-translate"],i.paint["fill-translate-anchor"])),f}var pattern=_dereq_("./pattern"),drawWater=!1;module.exports=drawFill;
},{"./pattern":106}],95:[function(_dereq_,module,exports){
"use strict";function draw(r,e,t,a){if(!r.isOpaquePass&&0!==t.paint["histogram-opacity"]){var i=r.gl;if(i.disable(i.STENCIL_TEST),i.enable(i.DEPTH_TEST),r.depthMask(!0),t.hasOwnProperty("_hasRendered")||(t._hasRendered=!0),t.paint["histogram-dynamic"])if(t.hasOwnProperty("_transform")&&t.hasOwnProperty("_count")||(t._transform=Date.now(),t._count=0),config.TRW&&config.TRW.hasOwnProperty("stayStatic")&&!config.TRW.stayStatic){var o=Date.now()-t._transform;t._count+=o/t.paint["histogram-time"]*500,t._count>=500*t.paint["histogram-count"]&&(t._count=0),t._transform=Date.now()}else t._transform=Date.now();var n=renderToTexture(i,r);i.clearColor(0,0,0,0),i.clear(i.COLOR_BUFFER_BIT|i.DEPTH_BUFFER_BIT);for(var u=0;u<a.length;u++)drawExtrusion(r,e,t,a[u]);i.bindFramebuffer(i.FRAMEBUFFER,null),renderTextureToMap(i,r,t,n)}}function renderToTexture(r,e){r.activeTexture(r.TEXTURE1);var t=e.viewportTexture;t?r.bindTexture(r.TEXTURE_2D,t):(t=r.createTexture(),r.bindTexture(r.TEXTURE_2D,t),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_S,r.CLAMP_TO_EDGE),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_T,r.CLAMP_TO_EDGE),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MIN_FILTER,r.LINEAR),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MAG_FILTER,r.LINEAR),r.texImage2D(r.TEXTURE_2D,0,r.RGBA,e.width,e.height,0,r.RGBA,r.UNSIGNED_BYTE,null),e.viewportTexture=t);var a=e.viewportFbo;if(a)r.bindFramebuffer(r.FRAMEBUFFER,a);else{a=r.createFramebuffer(),r.bindFramebuffer(r.FRAMEBUFFER,a);var i=r.createRenderbuffer();r.bindRenderbuffer(r.RENDERBUFFER,i),r.renderbufferStorage(r.RENDERBUFFER,r.DEPTH_COMPONENT16,e.width,e.height),r.framebufferRenderbuffer(r.FRAMEBUFFER,r.DEPTH_ATTACHMENT,r.RENDERBUFFER,i),e.viewportFbo=a}return r.framebufferTexture2D(r.FRAMEBUFFER,r.COLOR_ATTACHMENT0,r.TEXTURE_2D,t,0),t}function renderTextureToMap(r,e,t,a){var i=e.useProgram("extrusionTexture");r.activeTexture(r.TEXTURE0),r.bindTexture(r.TEXTURE_2D,a),r.uniform1f(i.u_opacity,t.paint["histogram-opacity"]),r.uniform1i(i.u_image,1);var o=mat4.create();mat4.ortho(o,0,e.width,e.height,0,0,1),r.uniformMatrix4fv(i.u_matrix,!1,o),r.disable(r.DEPTH_TEST),r.uniform2f(i.u_world,r.drawingBufferWidth,r.drawingBufferHeight);var n=new PosArray;n.emplaceBack(0,0),n.emplaceBack(1,0),n.emplaceBack(0,1),n.emplaceBack(1,1);var u=Buffer.fromStructArray(n,Buffer.BufferType.VERTEX);(new VertexArrayObject).bind(r,i,u),r.drawArrays(r.TRIANGLE_STRIP,0,4),r.enable(r.DEPTH_TEST)}function drawExtrusion(r,e,t,a){var i=e.getTile(a),o=i.getBucket(t);if(o){var n=t.paint["histogram-dynamic"],u=t.layout["histogram-color-render"],f=o.buffers,m=r.gl,T=f.layerData[t.id],s=T.programConfiguration,E=null;if(E=n?r.useProgram("histogramDynamic",s):r.useProgram(u?"histogramColor":"histogram",s),s.setUniforms(m,E,t,{zoom:r.transform.zoom}),u){for(var c=t.paint["histogram-colors"],_=t.paint["histogram-max-height"],l=[],g=0;g<c.length;g++){var R=colorParser.parseCSSColor(c[g]);R[0]/=255,R[1]/=255,R[2]/=255,l.push(R)}m.uniform1f(E.u_max_height,3*_),m.uniform4fv(E.u_color_a,l[0]),m.uniform4fv(E.u_color_b,l[1]),m.uniform4fv(E.u_color_c,l[2]),m.uniform4fv(E.u_color_d,l[3]),m.uniform4fv(E.u_color_e,l[4])}n&&m.uniform1f(E.u_dyn_count,t._count),r.gl.uniformMatrix4fv(E.u_matrix,!1,r.translatePosMatrix(a.posMatrix,i,t.paint["histogram-translate"],t.paint["histogram-translate-anchor"])),m.uniform1f(E.u_is_max_length,t.layout["histogram-max-height-render"]),setLight(E,r);for(var h=0,d=f.segments;h<d.length;h+=1){var x=d[h];x.vaos[t.id].bind(m,E,f.layoutVertexBuffer,f.elementBuffer,T.paintVertexBuffer,x.vertexOffset),m.drawElements(m.TRIANGLES,3*x.primitiveLength,m.UNSIGNED_SHORT,3*x.primitiveOffset*2)}}}function setLight(r,e){var t=e.gl,a=e.style.light,i=a.calculated.position,o=[i.x,i.y,i.z],n=mat3.create();"viewport"===a.calculated.anchor&&mat3.fromRotation(n,-e.transform.angle),vec3.transformMat3(o,o,n),t.uniform3fv(r.u_lightpos,o),t.uniform1f(r.u_lightintensity,a.calculated.intensity),t.uniform3fv(r.u_lightcolor,a.calculated.color.slice(0,3))}var glMatrix=_dereq_("../@minemap/gl-matrix"),Buffer=_dereq_("../data/buffer"),VertexArrayObject=_dereq_("./vertex_array_object"),PosArray=_dereq_("../data/pos_array"),colorParser=_dereq_("csscolorparser"),config=_dereq_("../util/config"),mat3=glMatrix.mat3,mat4=glMatrix.mat4,vec3=glMatrix.vec3;module.exports=draw;
},{"../@minemap/gl-matrix":49,"../data/buffer":72,"../data/pos_array":78,"../util/config":226,"./vertex_array_object":107,"csscolorparser":7}],96:[function(_dereq_,module,exports){
"use strict";function drawLineTile(e,i,t,r,a,n,o,l,f){var s,u,m,p,_=i.gl,d=a.paint["line-dasharray"],g=a.paint["line-pattern"];if(l||f){var v=1/pixelsToTileUnits(t,1,i.transform.tileZoom);if(d){s=i.lineAtlas.getDash(d.from,"round"===a.layout["line-cap"]),u=i.lineAtlas.getDash(d.to,"round"===a.layout["line-cap"]);var x=s.width*d.fromScale,T=u.width*d.toScale;_.uniform2f(e.u_patternscale_a,v/x,-s.height/2),_.uniform2f(e.u_patternscale_b,v/T,-u.height/2),_.uniform1f(e.u_sdfgamma,i.lineAtlas.width/(256*Math.min(x,T)*browser.devicePixelRatio)/2)}else if(g){if(m=i.spriteAtlas.getPattern(g.from),p=i.spriteAtlas.getPattern(g.to),!m||!p)return;_.uniform2f(e.u_pattern_size_a,m.displaySize[0]*g.fromScale/v,p.displaySize[1]),_.uniform2f(e.u_pattern_size_b,p.displaySize[0]*g.toScale/v,p.displaySize[1]),_.uniform2fv(e.u_texsize,i.spriteAtlas.getPixelSize())}_.uniform2f(e.u_gl_units_to_pixels,1/i.transform.pixelsToGLUnits[0],1/i.transform.pixelsToGLUnits[1])}l&&(d?(_.uniform1i(e.u_image,0),_.activeTexture(_.TEXTURE0),i.lineAtlas.bind(_),_.uniform1f(e.u_tex_y_a,s.y),_.uniform1f(e.u_tex_y_b,u.y),_.uniform1f(e.u_mix,d.t)):g&&(_.uniform1i(e.u_image,0),_.activeTexture(_.TEXTURE0),i.spriteAtlas.bind(_,!0),_.uniform2fv(e.u_pattern_tl_a,m.tl),_.uniform2fv(e.u_pattern_br_a,m.br),_.uniform2fv(e.u_pattern_tl_b,p.tl),_.uniform2fv(e.u_pattern_br_b,p.br),_.uniform1f(e.u_fade,g.t))),i.enableTileClippingMask(n);var b=i.translatePosMatrix(n.posMatrix,t,a.paint["line-translate"],a.paint["line-translate-anchor"]);_.uniformMatrix4fv(e.u_matrix,!1,b),_.uniform1f(e.u_ratio,1/pixelsToTileUnits(t,1,i.transform.zoom));for(var c=0,h=r.segments;c<h.length;c+=1){var S=h[c];S.vaos[a.id].bind(_,e,r.layoutVertexBuffer,r.elementBuffer,o.paintVertexBuffer,S.vertexOffset),_.drawElements(_.TRIANGLES,3*S.primitiveLength,_.UNSIGNED_SHORT,3*S.primitiveOffset*2)}}var browser=_dereq_("../util/browser"),pixelsToTileUnits=_dereq_("../source/pixels_to_tile_units");module.exports=function(e,i,t,r){if(!e.isOpaquePass){e.setDepthSublayer(0),e.depthMask(!1);var a=e.gl;if(a.enable(a.STENCIL_TEST),!(t.paint["line-width"]<=0))for(var n,o=t.paint["line-dasharray"]?"lineSDF":t.paint["line-pattern"]?"linePattern":"line",l=!0,f=0,s=r;f<s.length;f+=1){var u=s[f],m=i.getTile(u),p=m.getBucket(t);if(p){var _=p.buffers.layerData[t.id],d=e.currentProgram,g=e.useProgram(o,_.programConfiguration),v=l||g!==d,x=n!==m.coord.z;v&&_.programConfiguration.setUniforms(e.gl,g,t,{zoom:e.transform.zoom}),drawLineTile(g,e,m,p.buffers,t,u,_,v,x),n=m.coord.z,l=!1}}}};
},{"../source/pixels_to_tile_units":116,"../util/browser":222}],97:[function(_dereq_,module,exports){
"use strict";function drawRaster(r,t,e,a){if(!r.isOpaquePass){var i=r.gl;i.enable(i.DEPTH_TEST),r.depthMask(!0),i.depthFunc(i.LESS);for(var o=a.length&&a[0].z,n=0;n<a.length;n++){var u=a[n];r.setDepthSublayer(u.z-o),drawRasterTile(r,t,e,u)}i.depthFunc(i.LEQUAL)}}function drawRasterTile(r,t,e,a){var i=r.gl;i.disable(i.STENCIL_TEST);var o=t.getTile(a),n=r.transform.calculatePosMatrix(a,t.getSource().maxzoom);o.registerFadeDuration(r.style.animationLoop,e.paint["raster-fade-duration"]);var u=r.useProgram("raster");i.uniformMatrix4fv(u.u_matrix,!1,n),i.uniform1f(u.u_brightness_low,e.paint["raster-brightness-min"]),i.uniform1f(u.u_brightness_high,e.paint["raster-brightness-max"]),i.uniform1f(u.u_saturation_factor,saturationFactor(e.paint["raster-saturation"])),i.uniform1f(u.u_contrast_factor,contrastFactor(e.paint["raster-contrast"])),i.uniform3fv(u.u_spin_weights,spinWeights(e.paint["raster-hue-rotate"]));var s,c,f=o.sourceCache&&o.sourceCache.findLoadedParent(a,0,{}),d=getFadeValues(o,f,e,r.transform);i.activeTexture(i.TEXTURE0),i.bindTexture(i.TEXTURE_2D,o.texture),i.activeTexture(i.TEXTURE1),f?(i.bindTexture(i.TEXTURE_2D,f.texture),s=Math.pow(2,f.coord.z-o.coord.z),c=[o.coord.x*s%1,o.coord.y*s%1]):i.bindTexture(i.TEXTURE_2D,o.texture),i.uniform2fv(u.u_tl_parent,c||[0,0]),i.uniform1f(u.u_scale_parent,s||1),i.uniform1f(u.u_buffer_scale,1),i.uniform1f(u.u_fade_t,d.mix),i.uniform1f(u.u_opacity,d.opacity*e.paint["raster-opacity"]),i.uniform1i(u.u_image0,0),i.uniform1i(u.u_image1,1);var m=o.boundsBuffer||r.rasterBoundsBuffer;(o.boundsVAO||r.rasterBoundsVAO).bind(i,u,m),i.drawArrays(i.TRIANGLE_STRIP,0,m.length)}function spinWeights(r){r*=Math.PI/180;var t=Math.sin(r),e=Math.cos(r);return[(2*e+1)/3,(-Math.sqrt(3)*t-e+1)/3,(Math.sqrt(3)*t-e+1)/3]}function contrastFactor(r){return r>0?1/(1-r):1+r}function saturationFactor(r){return r>0?1-1/(1.001-r):-r}function getFadeValues(r,t,e,a){var i=e.paint["raster-fade-duration"];if(r.sourceCache&&i>0){var o=Date.now(),n=(o-r.timeAdded)/i,u=t?(o-t.timeAdded)/i:-1,s=r.sourceCache.getSource(),c=a.coveringZoomLevel({tileSize:s.tileSize,roundZoom:s.roundZoom}),f=!t||Math.abs(t.coord.z-c)>Math.abs(r.coord.z-c),d=f&&r.refreshedUponExpiration?1:util.clamp(f?n:1-u,0,1);return r.refreshedUponExpiration&&n>=1&&(r.refreshedUponExpiration=!1),t?{opacity:1,mix:1-d}:{opacity:d,mix:0}}return{opacity:1,mix:0}}var util=_dereq_("../util/util");module.exports=drawRaster;
},{"../util/util":247}],98:[function(_dereq_,module,exports){
"use strict";function drawSpriteTile(e,t,r,i,a,s,n,u,l){var p,o,f,d,m=t.gl,_=a.paint["sprite-dasharray"],c=a.paint["sprite-pattern"];if(u||l){var g=1/pixelsToTileUnits(r,1,t.transform.tileZoom);if(_){p=t.lineAtlas.getDash(_.from,"round"===a.layout["sprite-cap"]),o=t.lineAtlas.getDash(_.to,"round"===a.layout["sprite-cap"]);var b=p.width*_.fromScale,x=o.width*_.toScale;m.uniform2f(e.u_patternscale_a,g/b,-p.height/2),m.uniform2f(e.u_patternscale_b,g/x,-o.height/2),m.uniform1f(e.u_sdfgamma,t.lineAtlas.width/(256*Math.min(b,x)*browser.devicePixelRatio)/2)}else if(c){if(f=t.spriteAtlas.getPattern(c.from),d=t.spriteAtlas.getPattern(c.to),!f||!d)return;m.uniform2f(e.u_pattern_size_a,f.displaySize[0]*c.fromScale/g,d.displaySize[1]),m.uniform2f(e.u_pattern_size_b,d.displaySize[0]*c.toScale/g,d.displaySize[1]),m.uniform2fv(e.u_texsize,t.spriteAtlas.getPixelSize())}m.uniform2f(e.u_gl_units_to_pixels,1/t.transform.pixelsToGLUnits[0],1/t.transform.pixelsToGLUnits[1])}u&&(_?(m.uniform1i(e.u_image,0),m.activeTexture(m.TEXTURE0),t.lineAtlas.bind(m),m.uniform1f(e.u_tex_y_a,p.y),m.uniform1f(e.u_tex_y_b,o.y),m.uniform1f(e.u_mix,_.t)):c&&(m.uniform1i(e.u_image,0),m.activeTexture(m.TEXTURE0),t.spriteAtlas.bind(m,!0),m.uniform2fv(e.u_pattern_tl_a,f.tl),m.uniform2fv(e.u_pattern_br_a,f.br),m.uniform2fv(e.u_pattern_tl_b,d.tl),m.uniform2fv(e.u_pattern_br_b,d.br),m.uniform1f(e.u_fade,c.t))),t.enableTileClippingMask(s),m.uniform4f(e.u_speed_mat,curEleObj.getCalculatedSpeed(1),curEleObj.getCalculatedSpeed(2),curEleObj.getCalculatedSpeed(3),curEleObj.getCalculatedSpeed(4));var v=t.translatePosMatrix(s.posMatrix,r,a.paint["sprite-translate"],a.paint["sprite-translate-anchor"]);m.uniformMatrix4fv(e.u_matrix,!1,v),m.uniform1f(e.u_ratio,1/pixelsToTileUnits(r,1,t.transform.zoom));for(var E=0,S=i.segments;E<S.length;E+=1){var T=S[E];T.vaos[a.id].bind(m,e,i.layoutVertexBuffer,i.elementBuffer,n.paintVertexBuffer,T.vertexOffset),m.drawElements(m.TRIANGLES,3*T.primitiveLength,m.UNSIGNED_SHORT,3*T.primitiveOffset*2)}}var browser=_dereq_("../util/browser"),pixelsToTileUnits=_dereq_("../source/pixels_to_tile_units"),curEleObj={speed1:0,speed2:0,speed3:0,speed4:0,speedExt1:2,speedExt2:4,speedExt3:5,speedExt4:6,getCalculatedSpeed:function(e){return parseInt(this["speed"+e]/e/this["speedExt"+e])}};module.exports=function(e,t,r,i){if(!e.isOpaquePass){e.setDepthSublayer(0),e.depthMask(!1);var a=e.gl;if(a.enable(a.STENCIL_TEST),!(r.paint["sprite-width"]<=0)){var s=parseInt(r.paint["sprite-speed-factor"]);curEleObj["speed"+s]++,curEleObj.speed1%=20,curEleObj.speed2%=80,curEleObj.speed3%=150,curEleObj.speed4%=240;for(var n,u=r.paint["sprite-dasharray"]?"spriteSDF":r.paint["sprite-pattern"]?"spritePattern":"sprite",l=!0,p=0,o=i;p<o.length;p+=1){var f=o[p],d=t.getTile(f),m=d.getBucket(r);if(m){var _=m.buffers.layerData[r.id],c=e.currentProgram,g=e.useProgram(u,_.programConfiguration),b=l||g!==c,x=n!==d.coord.z;b&&_.programConfiguration.setUniforms(e.gl,g,r,{zoom:e.transform.zoom}),drawSpriteTile(g,e,d,m.buffers,r,f,_,b,x),n=d.coord.z,l=!1}}}}};
},{"../source/pixels_to_tile_units":116,"../util/browser":222}],99:[function(_dereq_,module,exports){
"use strict";function drawSymbols(t,e,i,a){if(!t.isOpaquePass){var o=!(i.layout["text-allow-overlap"]||i.layout["icon-allow-overlap"]||i.layout["text-ignore-placement"]||i.layout["icon-ignore-placement"]),r=t.gl;o?r.disable(r.STENCIL_TEST):r.enable(r.STENCIL_TEST),t.setDepthSublayer(0),t.depthMask(!1),drawLayerSymbols(t,e,i,a,!1,i.paint["icon-translate"],i.paint["icon-translate-anchor"],i.layout["icon-rotation-alignment"],i.layout["icon-pitch-alignment"],i.layout["icon-keep-upright"]),drawLayerSymbols(t,e,i,a,!0,i.paint["text-translate"],i.paint["text-translate-anchor"],i.layout["text-rotation-alignment"],i.layout["text-pitch-alignment"],i.layout["text-keep-upright"]),e.map.showCollisionBoxes&&drawCollisionDebug(t,e,i,a)}}function drawLayerSymbols(t,e,i,a,o,r,n,l,s,u){if(o||!t.style.sprite||t.style.sprite.loaded()){var m=t.gl,f="map"===l,c="map"===s,_=f&&"line"===i.layout["symbol-placement"],y=f&&!c&&!_,p=c;p?m.enable(m.DEPTH_TEST):m.disable(m.DEPTH_TEST);for(var b,d,x=0,g=a;x<g.length;x+=1){var S=g[x],T=e.getTile(S),h=T.getBucket(i);if(h){var v=o?h.buffers.glyph:h.buffers.icon;if(v&&v.segments.length){var z=v.layerData[i.id],w=z.programConfiguration,E=o||h.sdfIcons,M=o?h.textSizeData:h.iconSizeData;b&&h.fontstack===d||(b=t.useProgram(E?"symbolSDF":"symbolIcon",w),w.setUniforms(m,b,i,{zoom:t.transform.zoom}),setSymbolDrawState(b,t,i,S.z,o,E,y,c,h.fontstack,h.iconsNeedLinear,M)),t.enableTileClippingMask(S),m.uniformMatrix4fv(b.u_matrix,!1,t.translatePosMatrix(S.posMatrix,T,r,n));var D=pixelsToTileUnits(T,1,t.transform.zoom),C=symbolProjection.getLabelPlaneMatrix(S.posMatrix,c,f,t.transform,D),L=symbolProjection.getGlCoordMatrix(S.posMatrix,c,f,t.transform,D);m.uniformMatrix4fv(b.u_gl_coord_matrix,!1,t.translatePosMatrix(L,T,r,n,!0)),_?(m.uniformMatrix4fv(b.u_label_plane_matrix,!1,identityMat4),symbolProjection.updateLineLabels(h,S.posMatrix,t,o,C,L,c,u,D,i)):m.uniformMatrix4fv(b.u_label_plane_matrix,!1,C),m.uniform1f(b.u_collision_y_stretch,T.collisionTile.yStretch),drawTileSymbols(b,w,t,i,T,v,o,E,c),d=h.fontstack}}}p||m.enable(m.DEPTH_TEST)}}function setSymbolDrawState(t,e,i,a,o,r,n,l,s,u,m){var f=e.gl,c=e.transform;if(f.uniform1i(t.u_pitch_with_map,l),f.activeTexture(f.TEXTURE0),f.uniform1i(t.u_texture,0),f.uniform1f(t.u_is_text,o?1:0),o){var _=s&&e.glyphSource.getGlyphAtlas(s);if(!_)return;_.updateTexture(f),f.uniform2f(t.u_texsize,_.width,_.height)}else{var y=e.options.rotating||e.options.zooming,p=!i.isLayoutValueFeatureConstant("icon-size")||!i.isLayoutValueZoomConstant("icon-size")||1!==i.getLayoutValue("icon-size",{zoom:c.zoom}),b=p||u,d=l||c.pitch;e.spriteAtlas.bind(f,r||y||b||d),f.uniform2fv(t.u_texsize,e.spriteAtlas.getPixelSize())}f.activeTexture(f.TEXTURE1),e.frameHistory.bind(f),f.uniform1i(t.u_fadetexture,1),f.uniform1f(t.u_pitch,c.pitch/360*2*Math.PI),f.uniform1i(t.u_is_size_zoom_constant,m.isZoomConstant?1:0),f.uniform1i(t.u_is_size_feature_constant,m.isFeatureConstant?1:0),f.uniform1f(t.u_camera_to_center_distance,c.cameraToCenterDistance);var x=symbolSize.evaluateSizeForZoom(m,c,i,o);void 0!==x.uSizeT&&f.uniform1f(t.u_size_t,x.uSizeT),void 0!==x.uSize&&f.uniform1f(t.u_size,x.uSize),f.uniform1f(t.u_aspect_ratio,c.width/c.height),f.uniform1i(t.u_rotate_symbol,n)}function drawTileSymbols(t,e,i,a,o,r,n,l,s){var u=i.gl,m=i.transform;if(l){var f=(n?"text":"icon")+"-halo-width",c=!a.isPaintValueFeatureConstant(f)||a.paint[f],_=s?Math.cos(m._pitch)*m.cameraToCenterDistance:1;u.uniform1f(t.u_gamma_scale,_),c&&(u.uniform1f(t.u_is_halo,1),drawSymbolElements(r,a,u,t)),u.uniform1f(t.u_is_halo,0)}drawSymbolElements(r,a,u,t)}function drawSymbolElements(t,e,i,a){for(var o=t.layerData[e.id],r=o&&o.paintVertexBuffer,n=0,l=t.segments;n<l.length;n+=1){var s=l[n];s.vaos[e.id].bind(i,a,t.layoutVertexBuffer,t.elementBuffer,r,s.vertexOffset,t.dynamicLayoutVertexBuffer),i.drawElements(i.TRIANGLES,3*s.primitiveLength,i.UNSIGNED_SHORT,3*s.primitiveOffset*2)}}var drawCollisionDebug=_dereq_("./draw_collision_debug"),pixelsToTileUnits=_dereq_("../source/pixels_to_tile_units"),symbolProjection=_dereq_("../symbol/projection"),symbolSize=_dereq_("../symbol/symbol_size"),mat4=_dereq_("../@minemap/gl-matrix").mat4,identityMat4=mat4.identity(new Float32Array(16));module.exports=drawSymbols;
},{"../@minemap/gl-matrix":49,"../source/pixels_to_tile_units":116,"../symbol/projection":195,"../symbol/symbol_size":199,"./draw_collision_debug":90}],100:[function(_dereq_,module,exports){
"use strict";function drawSymbols(t,e,i,a){if(!t.isOpaquePass){i.start||(i.start=(new Date).getTime(),i.count=0),i.end=(new Date).getTime();var o=i.layout["symtracking-fps"],r=i.layout["symtracking-time-segment"];if(offset=i.paint["symtracking-delay"],i.end-i.start>=1e3/o){i.count+=1;var n=config.TRW&&config.TRW.hasOwnProperty("replaceOffset")?config.TRW.replaceOffset:o*(r+offset);i.count%=n;var s=config.TRW&&config.TRW.hasOwnProperty("requestOffset")?config.TRW.requestOffset:r*o;i.count===s&&config.TRW&&config.TRW.request(),0===i.count&&(config.TRW&&config.TRW.replace(),i.count=offset),config.TRW&&(config.TRW.currentSeq=i.count),i.start=i.end}var l=(i.layout["text-allow-overlap"]||i.layout["icon-allow-overlap"]||i.layout["text-ignore-placement"]||i.layout["icon-ignore-placement"],t.gl);l.disable(l.STENCIL_TEST),t.setDepthSublayer(0),t.depthMask(!1),drawLayerSymbols(t,e,i,a,!1,i.paint["icon-translate"],i.paint["icon-translate-anchor"],i.layout["icon-rotation-alignment"],i.layout["icon-pitch-alignment"],i.layout["icon-keep-upright"],i.count),drawLayerSymbols(t,e,i,a,!0,i.paint["text-translate"],i.paint["text-translate-anchor"],i.layout["text-rotation-alignment"],i.layout["text-pitch-alignment"],i.layout["text-keep-upright"],i.count),e.map.showCollisionBoxes&&drawCollisionDebug(t,e,i,a)}}function drawLayerSymbols(t,e,i,a,o,r,n,s,l,u,f){if(o||!t.style.sprite||t.style.sprite.loaded()){var m=t.gl,c="map"===s,y="map"===l,p=c&&"line"===i.layout["symbol-placement"],g=c&&!y&&!p,_=y;_?m.enable(m.DEPTH_TEST):m.disable(m.DEPTH_TEST);for(var d,T,x=0,b=a;x<b.length;x+=1){var h=b[x],v=e.getTile(h);if(v){var S=v.getBucket(i);if(S){var w=o?S.buffers.glyph:S.buffers.icon;if(w&&w.segments.length){var z=w.layerData[i.id],D=z.programConfiguration,E=o||S.sdfIcons,M=o?S.textSizeData:S.iconSizeData;d&&S.fontstack===T||(d=t.useProgram(E?"symtrackingSDF":"symtrackingIcon",D),D.setUniforms(m,d,i,{zoom:t.transform.zoom}),setSymbolDrawState(d,t,i,h.z,o,E,g,y,S.fontstack,S.iconsNeedLinear,M,f)),t.enableTileClippingMask(h),m.uniformMatrix4fv(d.u_matrix,!1,t.translatePosMatrix(h.posMatrix,v,r,n));var P=pixelsToTileUnits(v,1,t.transform.zoom),R=symbolProjection.getLabelPlaneMatrix(h.posMatrix,y,c,t.transform,P),C=symbolProjection.getGlCoordMatrix(h.posMatrix,y,c,t.transform,P);m.uniformMatrix4fv(d.u_gl_coord_matrix,!1,t.translatePosMatrix(C,v,r,n,!0)),p?(m.uniformMatrix4fv(d.u_label_plane_matrix,!1,identityMat4),symbolProjection.updateLineLabels(S,h.posMatrix,t,o,R,C,y,u,P,i)):m.uniformMatrix4fv(d.u_label_plane_matrix,!1,R),m.uniform1f(d.u_collision_y_stretch,v.collisionTile.yStretch),drawTileSymbols(d,D,t,i,v,w,o,E,y),T=S.fontstack}}}}_||m.enable(m.DEPTH_TEST)}}function setSymbolDrawState(t,e,i,a,o,r,n,s,l,u,f,m){var c=e.gl,y=e.transform;if(c.uniform1i(t.u_pitch_with_map,s),c.activeTexture(c.TEXTURE0),c.uniform1i(t.u_texture,0),c.uniform1f(t.u_is_text,o?1:0),o){var p=l&&e.glyphSource.getGlyphAtlas(l);if(!p)return;p.updateTexture(c),c.uniform2f(t.u_texsize,p.width,p.height)}else{var g=e.options.rotating||e.options.zooming,_=!i.isLayoutValueFeatureConstant("icon-size")||!i.isLayoutValueZoomConstant("icon-size")||1!==i.getLayoutValue("icon-size",{zoom:y.zoom}),d=_||u,T=s||y.pitch;e.spriteAtlas.bind(c,r||g||d||T),c.uniform2fv(t.u_texsize,e.spriteAtlas.getPixelSize()),c.uniform1f(t.u_seq,m)}c.activeTexture(c.TEXTURE1),e.frameHistory.bind(c),c.uniform1i(t.u_fadetexture,1),c.uniform1f(t.u_pitch,y.pitch/360*2*Math.PI),c.uniform1i(t.u_is_size_zoom_constant,f.isZoomConstant?1:0),c.uniform1i(t.u_is_size_feature_constant,f.isFeatureConstant?1:0),c.uniform1f(t.u_camera_to_center_distance,y.cameraToCenterDistance);var x=symbolSize.evaluateSizeForZoom(f,y,i,o);void 0!==x.uSizeT&&c.uniform1f(t.u_size_t,x.uSizeT),void 0!==x.uSize&&c.uniform1f(t.u_size,x.uSize),c.uniform1f(t.u_aspect_ratio,y.width/y.height),c.uniform1i(t.u_rotate_symbol,n)}function drawTileSymbols(t,e,i,a,o,r,n,s,l){var u=i.gl,f=i.transform;if(s){var m=(n?"text":"icon")+"-halo-width",c=!a.isPaintValueFeatureConstant(m)||a.paint[m],y=l?Math.cos(f._pitch)*f.cameraToCenterDistance:1;u.uniform1f(t.u_gamma_scale,y),c&&(u.uniform1f(t.u_is_halo,1),drawSymbolElements(r,a,u,t)),u.uniform1f(t.u_is_halo,0)}drawSymbolElements(r,a,u,t)}function drawSymbolElements(t,e,i,a){for(var o=t.layerData[e.id],r=o&&o.paintVertexBuffer,n=0,s=t.segments;n<s.length;n+=1){var l=s[n];l.vaos[e.id].bind(i,a,t.layoutVertexBuffer,t.elementBuffer,r,l.vertexOffset,t.dynamicLayoutVertexBuffer),i.drawElements(i.TRIANGLES,3*l.primitiveLength,i.UNSIGNED_SHORT,3*l.primitiveOffset*2)}}var drawCollisionDebug=_dereq_("./draw_collision_debug"),pixelsToTileUnits=_dereq_("../source/pixels_to_tile_units"),symbolProjection=_dereq_("../symbol/projection"),symbolSize=_dereq_("../symbol/symbol_size"),mat4=_dereq_("../@minemap/gl-matrix").mat4,identityMat4=mat4.identity(new Float32Array(16)),config=_dereq_("../util/config");module.exports=drawSymbols;var offset=10;
},{"../@minemap/gl-matrix":49,"../source/pixels_to_tile_units":116,"../symbol/projection":195,"../symbol/symbol_size":199,"../util/config":226,"./draw_collision_debug":90}],101:[function(_dereq_,module,exports){
"use strict";function drawTrackingTile(t,e,r,i,s,n,o,a,u,f,g,p){var c=e.gl;(a||u)&&c.uniform2f(t.u_gl_units_to_pixels,1/e.transform.pixelsToGLUnits[0],1/e.transform.pixelsToGLUnits[1]),e.enableTileClippingMask(n);var l=e.translatePosMatrix(n.posMatrix,r,s.paint["tracking-translate"],s.paint["tracking-translate-anchor"]);c.uniformMatrix4fv(t.u_matrix,!1,l),c.uniform1f(t.u_ratio,1/pixelsToTileUnits(r,1,e.transform.zoom)),c.uniform1f(t.u_start,f-segmentGroup),c.uniform1f(t.u_end,f),c.uniform1f(t.u_segments,segmentGroup),c.uniform1f(t.u_reverse,g),c.uniform1f(t.u_reserve,p);for(var h=0,v=i.segments;h<v.length;h+=1){var m=v[h];m.vaos[s.id].bind(c,t,i.layoutVertexBuffer,i.elementBuffer,o.paintVertexBuffer,m.vertexOffset),c.drawElements(c.TRIANGLES,3*m.primitiveLength,c.UNSIGNED_SHORT,3*m.primitiveOffset*2)}}var browser=_dereq_("../util/browser"),pixelsToTileUnits=_dereq_("../source/pixels_to_tile_units"),config=_dereq_("../util/config"),offset=20,segmentGroup=20;module.exports=function(t,e,r,i){if(!t.isOpaquePass){t.setDepthSublayer(0),t.depthMask(!1);var s=t.gl;if(s.enable(s.STENCIL_TEST),!(r.paint["tracking-width"]<=0)){if(segmentGroup=r.paint["tracking-seg-group"],offset=r.paint["tracking-delay"],"history"===r.paint["tracking-type"])r.histEnd=Date.now(),r.first||(r.first=!0,r.histStart=0,r.histCount=0,r.isReverse=!1,r.isReserve=!1),r.histEnd-r.histStart>=1e3/r.paint["tracking-speed"]&&("loop"===r.layout["tracking-display-mode"]?(r.histCount++,r.histCount%=r.paint["tracking-seg-count"],r.histCount=0===r.histCount?1:r.histCount):"reverse"===r.layout["tracking-display-mode"]?(r.histCount>=r.paint["tracking-seg-count"]+r.paint["tracking-seg-group"]?r.isReverse=!0:r.histCount<=1&&(r.isReverse=!1),r.histCount=r.isReverse?r.histCount-1:r.histCount+1):"loop-reserve"===r.layout["tracking-display-mode"]?(r.isReserve=!0,r.histCount++,r.histCount%=r.paint["tracking-seg-count"],r.histCount=0===r.histCount?1:r.histCount):"reverse-reserve"===r.layout["tracking-display-mode"]&&(r.isReserve=!0,r.histCount>=r.paint["tracking-seg-count"]+r.paint["tracking-seg-group"]?r.isReverse=!0:r.histCount<=1&&(r.isReverse=!1),r.histCount=r.isReverse?r.histCount-1:r.histCount+1),config.TRW&&config.TRW.setProgress(r.histCount),r.histStart=r.histEnd);else if("history-manual"===r.paint["tracking-type"])r.first||(r.first=!0,r.count=0,r.isReverse=!1,r.isReserve=!1);else if(r.count||(r.start=Date.now(),r.count=1),r.end=Date.now(),r.end-r.start>=1e3/r.paint["tracking-speed"]){var n=config.TRW||r.paint["tracking-trw"];r.count+=1;var o=n&&n.hasOwnProperty("replaceOffset")?n.replaceOffset:120+offset;r.count%=o;var a=n&&n.hasOwnProperty("requestOffset")?n.requestOffset:90+offset;r.count===a&&n&&n.request(),0===r.count&&(n&&n.replace(),r.count=offset),n&&(n.currentSeq=r.count),r.start=r.end}for(var u,f=r.paint["tracking-dasharray"]?"lineSDF":r.paint["tracking-pattern"]?"linePattern":"tracking",g=!0,p=0,c=i;p<c.length;p+=1){var l=c[p],h=e.getTile(l);if(h){if(Object.getPrototypeOf(h).hasOwnProperty("getBucket")){var v=h.getBucket(r);if(v){var m=v.buffers.layerData[r.id],d=t.currentProgram,k=t.useProgram(f,m.programConfiguration),C=g||k!==d,y=u!==h.coord.z;C&&m.programConfiguration.setUniforms(t.gl,k,r,{zoom:t.transform.zoom}),drawTrackingTile(k,t,h,v.buffers,r,l,m,C,y,"history"===r.paint["tracking-type"]?r.histCount:r.count,r.isReverse,r.isReserve),u=h.coord.z,g=!1}}}}}}};
},{"../source/pixels_to_tile_units":116,"../util/browser":222,"../util/config":226}],102:[function(_dereq_,module,exports){
"use strict";var FrameHistory=function(){this.changeTimes=new Float64Array(256),this.changeOpacities=new Uint8Array(256),this.opacities=new Uint8ClampedArray(256),this.array=new Uint8Array(this.opacities.buffer),this.previousZoom=0,this.firstFrame=!0};FrameHistory.prototype.record=function(e,t,i){var r=this;this.firstFrame&&(e=0,this.firstFrame=!1),t=Math.floor(10*t);var a;if(t<this.previousZoom)for(a=t+1;a<=this.previousZoom;a++)r.changeTimes[a]=e,r.changeOpacities[a]=r.opacities[a];else for(a=t;a>this.previousZoom;a--)r.changeTimes[a]=e,r.changeOpacities[a]=r.opacities[a];for(a=0;a<256;a++){var s=e-r.changeTimes[a],o=255*(i?s/i:1);r.opacities[a]=a<=t?r.changeOpacities[a]+o:r.changeOpacities[a]-o}this.changed=!0,this.previousZoom=t},FrameHistory.prototype.isVisible=function(e){return 0!==this.opacities[Math.floor(10*e)]},FrameHistory.prototype.bind=function(e){this.texture?(e.bindTexture(e.TEXTURE_2D,this.texture),this.changed&&(e.texSubImage2D(e.TEXTURE_2D,0,0,0,256,1,e.ALPHA,e.UNSIGNED_BYTE,this.array),this.changed=!1)):(this.texture=e.createTexture(),e.bindTexture(e.TEXTURE_2D,this.texture),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_S,e.CLAMP_TO_EDGE),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_T,e.CLAMP_TO_EDGE),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,e.NEAREST),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,e.NEAREST),e.texImage2D(e.TEXTURE_2D,0,e.ALPHA,256,1,0,e.ALPHA,e.UNSIGNED_BYTE,this.array))},module.exports=FrameHistory;
},{}],103:[function(_dereq_,module,exports){
"use strict";var util=_dereq_("../util/util"),LineAtlas=function(t,i){this.width=t,this.height=i,this.nextRow=0,this.bytes=4,this.data=new Uint8Array(this.width*this.height*this.bytes),this.positions={}};LineAtlas.prototype.setSprite=function(t){this.sprite=t},LineAtlas.prototype.getDash=function(t,i){var e=t.join(",")+i;return this.positions[e]||(this.positions[e]=this.addDash(t,i)),this.positions[e]},LineAtlas.prototype.addDash=function(t,i){var e=this,h=i?7:0,s=2*h+1;if(this.nextRow+s>this.height)return util.warnOnce("LineAtlas out of space"),null;for(var a=0,r=0;r<t.length;r++)a+=t[r];for(var n=this.width/a,o=n/2,E=t.length%2==1,T=-h;T<=h;T++)for(var R=e.nextRow+h+T,u=e.width*R,d=E?-t[t.length-1]:0,l=t[0],x=1,A=0;A<this.width;A++){for(;l<A/n;)d=l,l+=t[x],E&&x===t.length-1&&(l+=t[0]),x++;var _=Math.abs(A-d*n),p=Math.abs(A-l*n),g=Math.min(_,p),w=x%2==1,D=void 0;if(i){var U=h?T/h*(o+1):0;if(w){var f=o-Math.abs(U);D=Math.sqrt(g*g+f*f)}else D=o-Math.sqrt(g*g+U*U)}else D=(w?1:-1)*g;e.data[3+4*(u+A)]=Math.max(0,Math.min(255,D+128))}var X={y:(this.nextRow+h+.5)/this.height,height:2*h/this.height,width:a};return this.nextRow+=s,this.dirty=!0,X},LineAtlas.prototype.bind=function(t){this.texture?(t.bindTexture(t.TEXTURE_2D,this.texture),this.dirty&&(this.dirty=!1,t.texSubImage2D(t.TEXTURE_2D,0,0,0,this.width,this.height,t.RGBA,t.UNSIGNED_BYTE,this.data))):(this.texture=t.createTexture(),t.bindTexture(t.TEXTURE_2D,this.texture),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,t.REPEAT),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,t.REPEAT),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,t.LINEAR),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,t.LINEAR),t.texImage2D(t.TEXTURE_2D,0,t.RGBA,this.width,this.height,0,t.RGBA,t.UNSIGNED_BYTE,this.data))},module.exports=LineAtlas;
},{"../util/util":247}],104:[function(_dereq_,module,exports){
"use strict";var browser=_dereq_("../util/browser"),mat4=_dereq_("../@minemap/gl-matrix").mat4,FrameHistory=_dereq_("./frame_history"),SourceCache=_dereq_("../source/source_cache"),EXTENT=_dereq_("../data/extent"),pixelsToTileUnits=_dereq_("../source/pixels_to_tile_units"),util=_dereq_("../util/util"),Buffer=_dereq_("../data/buffer"),VertexArrayObject=_dereq_("./vertex_array_object"),RasterBoundsArray=_dereq_("../data/raster_bounds_array"),PosArray=_dereq_("../data/pos_array"),ProgramConfiguration=_dereq_("../data/program_configuration"),shaders=_dereq_("../shaders"),draw={symbol:_dereq_("./draw_symbol"),circle:_dereq_("./draw_circle"),line:_dereq_("./draw_line"),fill:_dereq_("./draw_fill"),extrusion:_dereq_("./draw_extrusion"),raster:_dereq_("./draw_raster"),background:_dereq_("./draw_background"),debug:_dereq_("./draw_debug"),sprite:_dereq_("./draw_sprite"),histogram:_dereq_("./draw_histogram"),airline:_dereq_("./draw_airline"),tracking:_dereq_("./draw_tracking"),symtracking:_dereq_("./draw_symtracking"),dynamicLine:_dereq_("./draw_dynamic_line")},Painter=function(e,r){this.gl=e,this.transform=r,this._tileTextures={},this.frameHistory=new FrameHistory,this.setup(),this.numSublayers=SourceCache.maxUnderzooming+SourceCache.maxOverzooming+1,this.depthEpsilon=1/Math.pow(2,16),this.lineWidthRange=e.getParameter(e.ALIASED_LINE_WIDTH_RANGE),this.basicFillProgramConfiguration=ProgramConfiguration.createBasicFill(),this.emptyProgramConfiguration=new ProgramConfiguration};Painter.prototype.resize=function(e,r){var t=this.gl;this.width=e*browser.devicePixelRatio,this.height=r*browser.devicePixelRatio,t.viewport(0,0,this.width,this.height),this.viewportTexture&&(this.gl.deleteTexture(this.viewportTexture),this.viewportTexture=null),this.viewportFbo&&(this.gl.deleteFramebuffer(this.viewportFbo),this.viewportFbo=null)},Painter.prototype.setup=function(){var e=this.gl;e.enable(e.BLEND),e.blendFunc(e.ONE,e.ONE_MINUS_SRC_ALPHA),e.enable(e.STENCIL_TEST),e.enable(e.DEPTH_TEST),e.depthFunc(e.LEQUAL),this._depthMask=!1,e.depthMask(!1);var r=new PosArray;r.emplaceBack(0,0),r.emplaceBack(EXTENT,0),r.emplaceBack(0,EXTENT),r.emplaceBack(EXTENT,EXTENT),this.tileExtentBuffer=Buffer.fromStructArray(r,Buffer.BufferType.VERTEX),this.tileExtentVAO=new VertexArrayObject,this.tileExtentPatternVAO=new VertexArrayObject;var t=new PosArray;t.emplaceBack(0,0),t.emplaceBack(EXTENT,0),t.emplaceBack(EXTENT,EXTENT),t.emplaceBack(0,EXTENT),t.emplaceBack(0,0),this.debugBuffer=Buffer.fromStructArray(t,Buffer.BufferType.VERTEX),this.debugVAO=new VertexArrayObject;var i=new RasterBoundsArray;i.emplaceBack(0,0,0,0),i.emplaceBack(EXTENT,0,EXTENT,0),i.emplaceBack(0,EXTENT,0,EXTENT),i.emplaceBack(EXTENT,EXTENT,EXTENT,EXTENT),this.rasterBoundsBuffer=Buffer.fromStructArray(i,Buffer.BufferType.VERTEX),this.rasterBoundsVAO=new VertexArrayObject,this.extTextureFilterAnisotropic=e.getExtension("EXT_texture_filter_anisotropic")||e.getExtension("MOZ_EXT_texture_filter_anisotropic")||e.getExtension("WEBKIT_EXT_texture_filter_anisotropic"),this.extTextureFilterAnisotropic&&(this.extTextureFilterAnisotropicMax=e.getParameter(this.extTextureFilterAnisotropic.MAX_TEXTURE_MAX_ANISOTROPY_EXT))},Painter.prototype.clearColor=function(){var e=this.gl;e.clearColor(0,0,0,0),e.clear(e.COLOR_BUFFER_BIT)},Painter.prototype.clearStencil=function(){var e=this.gl;e.clearStencil(0),e.stencilMask(255),e.clear(e.STENCIL_BUFFER_BIT)},Painter.prototype.clearDepth=function(){var e=this.gl;e.clearDepth(1),this.depthMask(!0),e.clear(e.DEPTH_BUFFER_BIT)},Painter.prototype._renderTileClippingMasks=function(e){var r=this,t=this.gl;t.colorMask(!1,!1,!1,!1),this.depthMask(!1),t.disable(t.DEPTH_TEST),t.enable(t.STENCIL_TEST),t.stencilMask(255),t.stencilOp(t.KEEP,t.KEEP,t.REPLACE);var i=1;this._tileClippingMaskIDs={};for(var a=0,s=e;a<s.length;a+=1){var o=s[a],n=r._tileClippingMaskIDs[o.id]=i++;t.stencilFunc(t.ALWAYS,n,255);var l=r.useProgram("fill",r.basicFillProgramConfiguration);t.uniformMatrix4fv(l.u_matrix,!1,o.posMatrix),r.tileExtentVAO.bind(t,l,r.tileExtentBuffer),t.drawArrays(t.TRIANGLE_STRIP,0,r.tileExtentBuffer.length)}t.stencilMask(0),t.colorMask(!0,!0,!0,!0),this.depthMask(!0),t.enable(t.DEPTH_TEST)},Painter.prototype.enableTileClippingMask=function(e){var r=this.gl;r.stencilFunc(r.EQUAL,this._tileClippingMaskIDs[e.id],255)},Painter.prototype.prepareBuffers=function(){},Painter.prototype.render=function(e,r){if(this.style=e,this.options=r,this.lineAtlas=e.lineAtlas,this.spriteAtlas=e.spriteAtlas,this.spriteAtlas.setSprite(e.sprite),this.glyphSource=e.glyphSource,this.frameHistory.record(Date.now(),this.transform.zoom,e.getTransition().duration),this.prepareBuffers(),this.clearColor(),this.clearDepth(),this.showOverdrawInspector(r.showOverdrawInspector),this.depthRange=(e._order.length+2)*this.numSublayers*this.depthEpsilon,this.isOpaquePass=!0,this.renderPass(),this.isOpaquePass=!1,this.renderPass(),this.options.showTileBoundaries){var t=this.style.sourceCaches[Object.keys(this.style.sourceCaches)[0]];t&&draw.debug(this,t,t.getVisibleCoordinates())}},Painter.prototype.renderPass=function(){var e,r=this,t=this.style._order,i=[];this.currentLayer=this.isOpaquePass?t.length-1:0,this.isOpaquePass?this._showOverdrawInspector||this.gl.disable(this.gl.BLEND):this.gl.enable(this.gl.BLEND);for(var a=0;a<t.length;a++){var s=r.style._layers[t[r.currentLayer]];s.source!==(e&&e.id)&&(e=r.style.sourceCaches[s.source],i=[],e&&(e.prepare&&e.prepare(),r.clearStencil(),i=e.getVisibleCoordinates(),e.getSource().isTileClipped&&r._renderTileClippingMasks(i)),r.isOpaquePass||i.reverse()),r.renderLayer(r,e,s,i),r.currentLayer+=r.isOpaquePass?-1:1}},Painter.prototype.depthMask=function(e){e!==this._depthMask&&(this._depthMask=e,this.gl.depthMask(e))},Painter.prototype.renderLayer=function(e,r,t,i){t.isHidden(this.transform.zoom)||("background"===t.type||i.length)&&(this.id=t.id,draw[t.type](e,r,t,i))},Painter.prototype.setDepthSublayer=function(e){var r=1-((1+this.currentLayer)*this.numSublayers+e)*this.depthEpsilon,t=r-1+this.depthRange;this.gl.depthRange(t,r)},Painter.prototype.translatePosMatrix=function(e,r,t,i,a){if(!t[0]&&!t[1])return e;var s=a?"map"===i?this.transform.angle:0:"viewport"===i?-this.transform.angle:0;if(s){var o=Math.sin(s),n=Math.cos(s);t=[t[0]*n-t[1]*o,t[0]*o+t[1]*n]}var l=[a?t[0]:pixelsToTileUnits(r,t[0],this.transform.zoom),a?t[1]:pixelsToTileUnits(r,t[1],this.transform.zoom),0],h=new Float32Array(16);return mat4.translate(h,e,l),h},Painter.prototype.saveTileTexture=function(e){var r=this._tileTextures[e.size];r?r.push(e):this._tileTextures[e.size]=[e]},Painter.prototype.getTileTexture=function(e){var r=this._tileTextures[e];return r&&r.length>0?r.pop():null},Painter.prototype.lineWidth=function(e){this.gl.lineWidth(util.clamp(e,this.lineWidthRange[0],this.lineWidthRange[1]))},Painter.prototype.showOverdrawInspector=function(e){if(e||this._showOverdrawInspector){this._showOverdrawInspector=e;var r=this.gl;if(e){r.blendFunc(r.CONSTANT_COLOR,r.ONE);r.blendColor(1/8,1/8,1/8,0),r.clearColor(0,0,0,1),r.clear(r.COLOR_BUFFER_BIT)}else r.blendFunc(r.ONE,r.ONE_MINUS_SRC_ALPHA)}},Painter.prototype.createProgram=function(e,r){var t=this.gl,i=t.createProgram(),a=r.defines().concat("#define DEVICE_PIXEL_RATIO "+browser.devicePixelRatio.toFixed(1));this._showOverdrawInspector&&a.push("#define OVERDRAW_INSPECTOR;");var s=a.concat(shaders.prelude.fragmentSource,shaders[e].fragmentSource).join("\n"),o=a.concat(shaders.prelude.vertexSource,shaders[e].vertexSource).join("\n"),n=t.createShader(t.FRAGMENT_SHADER);t.shaderSource(n,s),t.compileShader(n),t.attachShader(i,n);var l=t.createShader(t.VERTEX_SHADER);t.shaderSource(l,o),t.compileShader(l),t.attachShader(i,l);for(var h=r.interface?r.interface.layoutAttributes:[],c=0;c<h.length;c++)t.bindAttribLocation(i,c,h[c].name);t.linkProgram(i);for(var u=t.getProgramParameter(i,t.ACTIVE_ATTRIBUTES),p={program:i,numAttributes:u},d=0;d<u;d++){var g=t.getActiveAttrib(i,d);g&&(p[g.name]=t.getAttribLocation(i,g.name))}for(var T=t.getProgramParameter(i,t.ACTIVE_UNIFORMS),f=0;f<T;f++){var E=t.getActiveUniform(i,f);E&&(p[E.name]=t.getUniformLocation(i,E.name))}return p},Painter.prototype._createProgramCached=function(e,r){this.cache=this.cache||{};var t=""+e+(r.cacheKey||"")+(this._showOverdrawInspector?"/overdraw":"");return this.cache[t]||(this.cache[t]=this.createProgram(e,r)),this.cache[t]},Painter.prototype.useProgram=function(e,r){var t=this.gl,i=this._createProgramCached(e,r||this.emptyProgramConfiguration);return this.currentProgram!==i&&(t.useProgram(i.program),this.currentProgram=i),i},module.exports=Painter;
},{"../@minemap/gl-matrix":49,"../data/buffer":72,"../data/extent":75,"../data/pos_array":78,"../data/program_configuration":79,"../data/raster_bounds_array":80,"../shaders":109,"../source/pixels_to_tile_units":116,"../source/source_cache":122,"../util/browser":222,"../util/util":247,"./draw_airline":87,"./draw_background":88,"./draw_circle":89,"./draw_debug":91,"./draw_dynamic_line":92,"./draw_extrusion":93,"./draw_fill":94,"./draw_histogram":95,"./draw_line":96,"./draw_raster":97,"./draw_sprite":98,"./draw_symbol":99,"./draw_symtracking":100,"./draw_tracking":101,"./frame_history":102,"./vertex_array_object":107}],105:[function(_dereq_,module,exports){
"use strict";var browser=_dereq_("../util/browser"),mat4=_dereq_("../@minemap/gl-matrix").mat4,FrameHistory=_dereq_("./frame_history"),SourceCache=_dereq_("../source/source_cache"),EXTENT=_dereq_("../data/extent"),pixelsToTileUnits=_dereq_("../source/pixels_to_tile_units"),util=_dereq_("../util/util"),Buffer=_dereq_("../data/buffer"),VertexArrayObject=_dereq_("./vertex_array_object"),RasterBoundsArray=_dereq_("../data/raster_bounds_array"),PosArray=_dereq_("../data/pos_array"),ProgramConfiguration=_dereq_("../data/program_configuration"),shaders=_dereq_("../shaders"),draw={symbol:_dereq_("./draw_symbol"),circle:_dereq_("./draw_circle"),line:_dereq_("./draw_line"),fill:_dereq_("./draw_fill"),extrusion:_dereq_("./draw_extrusion"),raster:_dereq_("./draw_raster"),background:_dereq_("./draw_background"),debug:_dereq_("./draw_debug"),sprite:_dereq_("./draw_sprite"),histogram:_dereq_("./draw_histogram"),airline:_dereq_("./draw_airline"),tracking:_dereq_("./draw_tracking"),symtracking:_dereq_("./draw_symtracking"),dynamicLine:_dereq_("./draw_dynamic_line")},Painter=function(e,r){this.gl=e,this.transform=r,this._tileTextures={},this.frameHistory=new FrameHistory,this.setup(),this.numSublayers=SourceCache.maxUnderzooming+SourceCache.maxOverzooming+1,this.depthEpsilon=1/Math.pow(2,16),this.lineWidthRange=e.getParameter(e.ALIASED_LINE_WIDTH_RANGE),this.basicFillProgramConfiguration=ProgramConfiguration.createBasicFill(),this.emptyProgramConfiguration=new ProgramConfiguration};Painter.prototype.resize=function(e,r){var t=this.gl;this.width=e*browser.devicePixelRatio,this.height=r*browser.devicePixelRatio,t.viewport(0,0,this.width,this.height),this.viewportTexture&&(this.gl.deleteTexture(this.viewportTexture),this.viewportTexture=null),this.viewportFbo&&(this.gl.deleteFramebuffer(this.viewportFbo),this.viewportFbo=null)},Painter.prototype.setup=function(){var e=this.gl;e.enable(e.BLEND),e.blendFunc(e.ONE,e.ONE_MINUS_SRC_ALPHA),e.enable(e.STENCIL_TEST),e.enable(e.DEPTH_TEST),e.depthFunc(e.LEQUAL),this._depthMask=!1,e.depthMask(!1);var r=new PosArray;r.emplaceBack(0,0),r.emplaceBack(EXTENT,0),r.emplaceBack(0,EXTENT),r.emplaceBack(EXTENT,EXTENT),this.tileExtentBuffer=Buffer.fromStructArray(r,Buffer.BufferType.VERTEX),this.tileExtentVAO=new VertexArrayObject,this.tileExtentPatternVAO=new VertexArrayObject;var t=new PosArray;t.emplaceBack(0,0),t.emplaceBack(EXTENT,0),t.emplaceBack(EXTENT,EXTENT),t.emplaceBack(0,EXTENT),t.emplaceBack(0,0),this.debugBuffer=Buffer.fromStructArray(t,Buffer.BufferType.VERTEX),this.debugVAO=new VertexArrayObject;var i=new RasterBoundsArray;i.emplaceBack(0,0,0,0),i.emplaceBack(EXTENT,0,EXTENT,0),i.emplaceBack(0,EXTENT,0,EXTENT),i.emplaceBack(EXTENT,EXTENT,EXTENT,EXTENT),this.rasterBoundsBuffer=Buffer.fromStructArray(i,Buffer.BufferType.VERTEX),this.rasterBoundsVAO=new VertexArrayObject;var a=new PosArray;a.emplaceBack(0,0),a.emplaceBack(1,0),a.emplaceBack(0,1),a.emplaceBack(1,1),this.viewportBuffer=Buffer.fromStructArray(a,Buffer.BufferType.VERTEX),this.viewportVAO=new VertexArrayObject,this.extTextureFilterAnisotropic=e.getExtension("EXT_texture_filter_anisotropic")||e.getExtension("MOZ_EXT_texture_filter_anisotropic")||e.getExtension("WEBKIT_EXT_texture_filter_anisotropic"),this.extTextureFilterAnisotropic&&(this.extTextureFilterAnisotropicMax=e.getParameter(this.extTextureFilterAnisotropic.MAX_TEXTURE_MAX_ANISOTROPY_EXT)),this.extTextureHalfFloat=e.getExtension("OES_texture_half_float"),this.extTextureHalfFloat&&e.getExtension("OES_texture_half_float_linear")},Painter.prototype.clearColor=function(){var e=this.gl;e.clearColor(0,0,0,0),e.clear(e.COLOR_BUFFER_BIT)},Painter.prototype.clearStencil=function(){var e=this.gl;e.colorMask(!1,!1,!1,!1),this.depthMask(!1),e.disable(e.DEPTH_TEST),e.enable(e.STENCIL_TEST),e.stencilMask(255),e.stencilOp(e.ZERO,e.ZERO,e.ZERO),e.stencilFunc(e.ALWAYS,0,255);var r=mat4.create();mat4.ortho(r,0,this.width,this.height,0,0,1),mat4.scale(r,r,[e.drawingBufferWidth,e.drawingBufferHeight,0]);var t=this.useProgram("fill",this.basicFillProgramConfiguration);e.uniformMatrix4fv(t.u_matrix,!1,r),this.viewportVAO.bind(e,t,this.viewportBuffer),e.drawArrays(e.TRIANGLE_STRIP,0,4),e.stencilMask(0),e.colorMask(!0,!0,!0,!0),this.depthMask(!0),e.enable(e.DEPTH_TEST)},Painter.prototype.clearDepth=function(){var e=this.gl;e.clearDepth(1),this.depthMask(!0),e.clear(e.DEPTH_BUFFER_BIT)},Painter.prototype._renderTileClippingMasks=function(e){var r=this,t=this.gl;t.colorMask(!1,!1,!1,!1),this.depthMask(!1),t.disable(t.DEPTH_TEST),t.enable(t.STENCIL_TEST),t.stencilMask(255),t.stencilOp(t.KEEP,t.KEEP,t.REPLACE);var i=1;this._tileClippingMaskIDs={};for(var a=0,s=e;a<s.length;a+=1){var o=s[a],n=r._tileClippingMaskIDs[o.id]=i++;t.stencilFunc(t.ALWAYS,n,255);var l=r.useProgram("fill",r.emptyProgramConfiguration);t.uniformMatrix4fv(l.u_matrix,!1,o.posMatrix),r.tileExtentVAO.bind(t,l,r.tileExtentBuffer),t.drawArrays(t.TRIANGLE_STRIP,0,r.tileExtentBuffer.length)}t.stencilMask(0),t.colorMask(!0,!0,!0,!0),this.depthMask(!0),t.enable(t.DEPTH_TEST)},Painter.prototype.enableTileClippingMask=function(e){var r=this.gl;r.stencilFunc(r.EQUAL,this._tileClippingMaskIDs[e.id],255)},Painter.prototype.prepareBuffers=function(){},Painter.prototype.render=function(e,r){if(this.style=e,this.options=r,this.lineAtlas=e.lineAtlas,this.spriteAtlas=e.spriteAtlas,this.spriteAtlas.setSprite(e.sprite),this.glyphSource=e.glyphSource,this.frameHistory.record(Date.now(),this.transform.zoom,e.getTransition().duration),this.prepareBuffers(),this.clearColor(),this.clearDepth(),this.showOverdrawInspector(r.showOverdrawInspector),this.depthRange=(e._order.length+2)*this.numSublayers*this.depthEpsilon,this.isOpaquePass=!0,this.renderPass(),this.isOpaquePass=!1,this.renderPass(),this.options.showTileBoundaries){var t=this.style.sourceCaches[Object.keys(this.style.sourceCaches)[0]];t&&draw.debug(this,t,t.getVisibleCoordinates())}},Painter.prototype.renderPass=function(){var e,r=this,t=this.style._order,i=[];this.currentLayer=this.isOpaquePass?t.length-1:0,this.isOpaquePass?this._showOverdrawInspector||this.gl.disable(this.gl.BLEND):this.gl.enable(this.gl.BLEND);for(var a=0;a<t.length;a++){var s=r.style._layers[t[r.currentLayer]];s.source!==(e&&e.id)&&(e=r.style.sourceCaches[s.source],i=[],e&&(e.prepare&&e.prepare(),r.clearStencil(),i=e.getVisibleCoordinates(),e.getSource().isTileClipped&&r._renderTileClippingMasks(i)),r.isOpaquePass||i.reverse()),r.renderLayer(r,e,s,i),r.currentLayer+=r.isOpaquePass?-1:1}},Painter.prototype.depthMask=function(e){e!==this._depthMask&&(this._depthMask=e,this.gl.depthMask(e))},Painter.prototype.renderLayer=function(e,r,t,i){t.isHidden(this.transform.zoom)||("background"===t.type||i.length)&&(this.id=t.id,draw[t.type](e,r,t,i))},Painter.prototype.setDepthSublayer=function(e){var r=1-((1+this.currentLayer)*this.numSublayers+e)*this.depthEpsilon,t=r-1+this.depthRange;this.gl.depthRange(t,r)},Painter.prototype.translatePosMatrix=function(e,r,t,i,a){if(!t[0]&&!t[1])return e;var s=a?"map"===i?this.transform.angle:0:"viewport"===i?-this.transform.angle:0;if(s){var o=Math.sin(s),n=Math.cos(s);t=[t[0]*n-t[1]*o,t[0]*o+t[1]*n]}var l=[a?t[0]:pixelsToTileUnits(r,t[0],this.transform.zoom),a?t[1]:pixelsToTileUnits(r,t[1],this.transform.zoom),0],h=new Float32Array(16);return mat4.translate(h,e,l),h},Painter.prototype.saveTileTexture=function(e){var r=this._tileTextures[e.size];r?r.push(e):this._tileTextures[e.size]=[e]},Painter.prototype.getTileTexture=function(e){var r=this._tileTextures[e];return r&&r.length>0?r.pop():null},Painter.prototype.lineWidth=function(e){this.gl.lineWidth(util.clamp(e,this.lineWidthRange[0],this.lineWidthRange[1]))},Painter.prototype.showOverdrawInspector=function(e){if(e||this._showOverdrawInspector){this._showOverdrawInspector=e;var r=this.gl;if(e){r.blendFunc(r.CONSTANT_COLOR,r.ONE);r.blendColor(1/8,1/8,1/8,0),r.clearColor(0,0,0,1),r.clear(r.COLOR_BUFFER_BIT)}else r.blendFunc(r.ONE,r.ONE_MINUS_SRC_ALPHA)}},Painter.prototype.createProgram=function(e,r){var t=this.gl,i=t.createProgram(),a=r.defines().concat("#define DEVICE_PIXEL_RATIO "+browser.devicePixelRatio.toFixed(1));this._showOverdrawInspector&&a.push("#define OVERDRAW_INSPECTOR;");var s=a.concat(shaders.prelude.fragmentSource,shaders[e].fragmentSource).join("\n"),o=a.concat(shaders.prelude.vertexSource,shaders[e].vertexSource).join("\n"),n=t.createShader(t.FRAGMENT_SHADER);t.shaderSource(n,s),t.compileShader(n),t.attachShader(i,n);var l=t.createShader(t.VERTEX_SHADER);t.shaderSource(l,o),t.compileShader(l),t.attachShader(i,l);for(var h=r.interface?r.interface.layoutAttributes:[],c=0;c<h.length;c++)t.bindAttribLocation(i,c,h[c].name);t.linkProgram(i);for(var u=t.getProgramParameter(i,t.ACTIVE_ATTRIBUTES),p={program:i,numAttributes:u},d=0;d<u;d++){var f=t.getActiveAttrib(i,d);f&&(p[f.name]=t.getAttribLocation(i,f.name))}for(var T=t.getProgramParameter(i,t.ACTIVE_UNIFORMS),E=0;E<T;E++){var g=t.getActiveUniform(i,E);g&&(p[g.name]=t.getUniformLocation(i,g.name))}return p},Painter.prototype._createProgramCached=function(e,r){this.cache=this.cache||{};var t=""+e+(r.cacheKey||"")+(this._showOverdrawInspector?"/overdraw":"");return this.cache[t]||(this.cache[t]=this.createProgram(e,r)),this.cache[t]},Painter.prototype.useProgram=function(e,r){var t=this.gl,i=this._createProgramCached(e,r||this.emptyProgramConfiguration);return this.currentProgram!==i&&(t.useProgram(i.program),this.currentProgram=i),i},module.exports=Painter;
},{"../@minemap/gl-matrix":49,"../data/buffer":72,"../data/extent":75,"../data/pos_array":78,"../data/program_configuration":79,"../data/raster_bounds_array":80,"../shaders":109,"../source/pixels_to_tile_units":116,"../source/source_cache":122,"../util/browser":222,"../util/util":247,"./draw_airline":87,"./draw_background":88,"./draw_circle":89,"./draw_debug":91,"./draw_dynamic_line":92,"./draw_extrusion":93,"./draw_fill":94,"./draw_histogram":95,"./draw_line":96,"./draw_raster":97,"./draw_sprite":98,"./draw_symbol":99,"./draw_symtracking":100,"./draw_tracking":101,"./frame_history":102,"./vertex_array_object":107}],106:[function(_dereq_,module,exports){
"use strict";var pixelsToTileUnits=_dereq_("../source/pixels_to_tile_units");exports.isPatternMissing=function(t,r){if(!t)return!1;var e=r.spriteAtlas.getPattern(t.from),i=r.spriteAtlas.getPattern(t.to);return!e||!i},exports.prepare=function(t,r,e){var i=r.gl,o=r.spriteAtlas.getPattern(t.from),n=r.spriteAtlas.getPattern(t.to);i.uniform1i(e.u_image,0),i.uniform2fv(e.u_pattern_tl_a,o.tl),i.uniform2fv(e.u_pattern_br_a,o.br),i.uniform2fv(e.u_pattern_tl_b,n.tl),i.uniform2fv(e.u_pattern_br_b,n.br),i.uniform2fv(e.u_texsize,r.spriteAtlas.getPixelSize()),i.uniform1f(e.u_mix,t.t),i.uniform2fv(e.u_pattern_size_a,o.displaySize),i.uniform2fv(e.u_pattern_size_b,n.displaySize),i.uniform1f(e.u_scale_a,t.fromScale),i.uniform1f(e.u_scale_b,t.toScale),i.activeTexture(i.TEXTURE0),r.spriteAtlas.bind(i,!0)},exports.setTile=function(t,r,e){var i=r.gl;i.uniform1f(e.u_tile_units_to_pixels,1/pixelsToTileUnits(t,1,r.transform.tileZoom));var o=Math.pow(2,t.coord.z),n=t.tileSize*Math.pow(2,r.transform.tileZoom)/o,u=n*(t.coord.x+t.coord.w*o),a=n*t.coord.y;i.uniform2f(e.u_pixel_coord_upper,u>>16,a>>16),i.uniform2f(e.u_pixel_coord_lower,65535&u,65535&a)};
},{"../source/pixels_to_tile_units":116}],107:[function(_dereq_,module,exports){
"use strict";var VertexArrayObject=function(){this.boundProgram=null,this.boundVertexBuffer=null,this.boundVertexBuffer2=null,this.boundElementBuffer=null,this.boundVertexOffset=null,this.vao=null};VertexArrayObject.prototype.bind=function(e,t,r,i,n,s,b){void 0===e.extVertexArrayObject&&(e.extVertexArrayObject=e.getExtension("OES_vertex_array_object"));var u=!this.vao||this.boundProgram!==t||this.boundVertexBuffer!==r||this.boundVertexBuffer2!==n||this.boundElementBuffer!==i||this.boundVertexOffset!==s||this.boundDynamicVertexBuffer!==b;!e.extVertexArrayObject||u?(this.freshBind(e,t,r,i,n,s,b),this.gl=e):(e.extVertexArrayObject.bindVertexArrayOES(this.vao),b&&b.bind(e))},VertexArrayObject.prototype.freshBind=function(e,t,r,i,n,s,b){var u,o=t.numAttributes;if(e.extVertexArrayObject)this.vao&&this.destroy(),this.vao=e.extVertexArrayObject.createVertexArrayOES(),e.extVertexArrayObject.bindVertexArrayOES(this.vao),u=0,this.boundProgram=t,this.boundVertexBuffer=r,this.boundVertexBuffer2=n,this.boundElementBuffer=i,this.boundVertexOffset=s,this.boundDynamicVertexBuffer=b;else{u=e.currentNumAttributes||0;for(var a=o;a<u;a++)e.disableVertexAttribArray(a)}r.enableAttributes(e,t),n&&n.enableAttributes(e,t),b&&b.enableAttributes(e,t),r.bind(e),r.setVertexAttribPointers(e,t,s),n&&(n.bind(e),n.setVertexAttribPointers(e,t,s)),b&&(b.bind(e),b.setVertexAttribPointers(e,t,s)),i&&i.bind(e),e.currentNumAttributes=o},VertexArrayObject.prototype.destroy=function(){this.vao&&(this.gl.extVertexArrayObject.deleteVertexArrayOES(this.vao),this.vao=null)},module.exports=VertexArrayObject;
},{}],108:[function(_dereq_,module,exports){
"use strict";var util=_dereq_("../util/util");exports.packUint8ToFloat=function(t,l){return t=util.clamp(Math.floor(t),0,255),l=util.clamp(Math.floor(l),0,255),256*t+l};
},{"../util/util":247}],109:[function(_dereq_,module,exports){
"use strict";module.exports={prelude:{fragmentSource:"#ifdef GL_ES\r\nprecision mediump float;\r\n#else\r\n\r\n#if !defined(lowp)\r\n#define lowp\r\n#endif\r\n\r\n#if !defined(mediump)\r\n#define mediump\r\n#endif\r\n\r\n#if !defined(highp)\r\n#define highp\r\n#endif\r\n\r\n#endif\r\n",vertexSource:"#ifdef GL_ES\r\nprecision highp float;\r\n#else\r\n\r\n#if !defined(lowp)\r\n#define lowp\r\n#endif\r\n\r\n#if !defined(mediump)\r\n#define mediump\r\n#endif\r\n\r\n#if !defined(highp)\r\n#define highp\r\n#endif\r\n\r\n#endif\r\n\r\n// Unpack a pair of values that have been packed into a single float.\r\n// The packed values are assumed to be 8-bit unsigned integers, and are\r\n// packed like so:\r\n// packedValue = floor(input[0]) * 256 + input[1],\r\nvec2 unpack_float(const float packedValue) {\r\n int packedIntValue = int(packedValue);\r\n int v0 = packedIntValue / 256;\r\n return vec2(v0, packedIntValue - v0 * 256);\r\n}\r\n\r\n\r\n// To minimize the number of attributes needed, we encode a 4-component\r\n// color into a pair of floats (i.e. a vec2) as follows:\r\n// [ floor(color.r * 255) * 256 + color.g * 255,\r\n// floor(color.b * 255) * 256 + color.g * 255 ]\r\nvec4 decode_color(const vec2 encodedColor) {\r\n return vec4(\r\n unpack_float(encodedColor[0]) / 255.0,\r\n unpack_float(encodedColor[1]) / 255.0\r\n );\r\n}\r\n\r\n// Unpack a pair of paint values and interpolate between them.\r\nfloat unpack_mix_vec2(const vec2 packedValue, const float t) {\r\n return mix(packedValue[0], packedValue[1], t);\r\n}\r\n\r\n// Unpack a pair of paint values and interpolate between them.\r\nvec4 unpack_mix_vec4(const vec4 packedColors, const float t) {\r\n vec4 minColor = decode_color(vec2(packedColors[0], packedColors[1]));\r\n vec4 maxColor = decode_color(vec2(packedColors[2], packedColors[3]));\r\n return mix(minColor, maxColor, t);\r\n}\r\n\r\n// The offset depends on how many pixels are between the world origin and the edge of the tile:\r\n// vec2 offset = mod(pixel_coord, size)\r\n//\r\n// At high zoom levels there are a ton of pixels between the world origin and the edge of the tile.\r\n// The glsl spec only guarantees 16 bits of precision for highp floats. We need more than that.\r\n//\r\n// The pixel_coord is passed in as two 16 bit values:\r\n// pixel_coord_upper = floor(pixel_coord / 2^16)\r\n// pixel_coord_lower = mod(pixel_coord, 2^16)\r\n//\r\n// The offset is calculated in a series of steps that should preserve this precision:\r\nvec2 get_pattern_pos(const vec2 pixel_coord_upper, const vec2 pixel_coord_lower,\r\n const vec2 pattern_size, const float tile_units_to_pixels, const vec2 pos) {\r\n\r\n vec2 offset = mod(mod(mod(pixel_coord_upper, pattern_size) * 256.0, pattern_size) * 256.0 + pixel_coord_lower, pattern_size);\r\n return (tile_units_to_pixels * pos + offset) / pattern_size;\r\n}\r\n"},circle:{fragmentSource:"#pragma minemap: define highp vec4 color\r\n#pragma minemap: define mediump float radius\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n#pragma minemap: define highp vec4 stroke_color\r\n#pragma minemap: define mediump float stroke_width\r\n#pragma minemap: define lowp float stroke_opacity\r\n\r\nvarying vec3 v_data;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize mediump float radius\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n #pragma minemap: initialize highp vec4 stroke_color\r\n #pragma minemap: initialize mediump float stroke_width\r\n #pragma minemap: initialize lowp float stroke_opacity\r\n\r\n vec2 extrude = v_data.xy;\r\n float extrude_length = length(extrude);\r\n\r\n lowp float antialiasblur = v_data.z;\r\n float antialiased_blur = -max(blur, antialiasblur);\r\n\r\n float opacity_t = smoothstep(0.0, antialiased_blur, extrude_length - 1.0);\r\n\r\n float color_t = stroke_width < 0.01 ? 0.0 : smoothstep(\r\n antialiased_blur,\r\n 0.0,\r\n extrude_length - radius / (radius + stroke_width)\r\n );\r\n\r\n gl_FragColor = opacity_t * mix(color * opacity, stroke_color * stroke_opacity, color_t);\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"uniform mat4 u_matrix;\r\nuniform bool u_scale_with_map;\r\nuniform bool u_pitch_with_map;\r\nuniform vec2 u_extrude_scale;\r\nuniform highp float u_camera_to_center_distance;\r\n\r\nattribute vec2 a_pos;\r\n\r\n#pragma minemap: define highp vec4 color\r\n#pragma minemap: define mediump float radius\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n#pragma minemap: define highp vec4 stroke_color\r\n#pragma minemap: define mediump float stroke_width\r\n#pragma minemap: define lowp float stroke_opacity\r\n\r\nvarying vec3 v_data;\r\n\r\nvoid main(void) {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize mediump float radius\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n #pragma minemap: initialize highp vec4 stroke_color\r\n #pragma minemap: initialize mediump float stroke_width\r\n #pragma minemap: initialize lowp float stroke_opacity\r\n\r\n // unencode the extrusion vector that we snuck into the a_pos vector\r\n vec2 extrude = vec2(mod(a_pos, 2.0) * 2.0 - 1.0);\r\n\r\n // multiply a_pos by 0.5, since we had it * 2 in order to sneak\r\n // in extrusion data\r\n vec2 circle_center = floor(a_pos * 0.5);\r\n if (u_pitch_with_map) {\r\n vec2 corner_position = circle_center;\r\n if (u_scale_with_map) {\r\n corner_position += extrude * (radius + stroke_width) * u_extrude_scale;\r\n } else {\r\n // Pitching the circle with the map effectively scales it with the map\r\n // To counteract the effect for pitch-scale: viewport, we rescale the\r\n // whole circle based on the pitch scaling effect at its central point\r\n vec4 projected_center = u_matrix * vec4(circle_center, 0, 1);\r\n corner_position += extrude * (radius + stroke_width) * u_extrude_scale * (projected_center.w / u_camera_to_center_distance);\r\n }\r\n\r\n gl_Position = u_matrix * vec4(corner_position, 0, 1);\r\n } else {\r\n gl_Position = u_matrix * vec4(circle_center, 0, 1);\r\n\r\n if (u_scale_with_map) {\r\n gl_Position.xy += extrude * (radius + stroke_width) * u_extrude_scale * u_camera_to_center_distance;\r\n } else {\r\n gl_Position.xy += extrude * (radius + stroke_width) * u_extrude_scale * gl_Position.w;\r\n }\r\n }\r\n\r\n // This is a minimum blur distance that serves as a faux-antialiasing for\r\n // the circle. since blur is a ratio of the circle's size and the intent is\r\n // to keep the blur at roughly 1px, the two are inversely related.\r\n lowp float antialiasblur = 1.0 / DEVICE_PIXEL_RATIO / (radius + stroke_width);\r\n\r\n v_data = vec3(extrude.x, extrude.y, antialiasblur);\r\n}\r\n"},collisionBox:{fragmentSource:"uniform float u_zoom;\r\n// u_maxzoom is derived from the maximum scale considered by the CollisionTile\r\n// Labels with placement zoom greater than this value will not be placed,\r\n// regardless of perspective effects.\r\nuniform float u_maxzoom;\r\nuniform sampler2D u_fadetexture;\r\n\r\n// v_max_zoom is a collision-box-specific value that controls when line-following\r\n// collision boxes are used.\r\nvarying float v_max_zoom;\r\nvarying float v_placement_zoom;\r\nvarying float v_perspective_zoom_adjust;\r\nvarying vec2 v_fade_tex;\r\n\r\nvoid main() {\r\n\r\n float alpha = 0.5;\r\n\r\n // Green = no collisions, label is showing\r\n gl_FragColor = vec4(0.0, 1.0, 0.0, 1.0) * alpha;\r\n\r\n // Red = collision, label hidden\r\n if (texture2D(u_fadetexture, v_fade_tex).a < 1.0) {\r\n gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0) * alpha;\r\n }\r\n\r\n // Faded black = this collision box is not used at this zoom (for curved labels)\r\n if (u_zoom >= v_max_zoom + v_perspective_zoom_adjust) {\r\n gl_FragColor = vec4(0.0, 0.0, 0.0, 1.0) * alpha * 0.25;\r\n }\r\n\r\n // Faded blue = the placement scale for this label is beyond the CollisionTile\r\n // max scale, so it's impossible for this label to show without collision detection\r\n // being run again (the label's glyphs haven't even been added to the symbol bucket)\r\n if (v_placement_zoom >= u_maxzoom) {\r\n gl_FragColor = vec4(0.0, 0.0, 1.0, 1.0) * alpha * 0.2;\r\n }\r\n}\r\n",vertexSource:"attribute vec2 a_pos;\r\nattribute vec2 a_anchor_pos;\r\nattribute vec2 a_extrude;\r\nattribute vec2 a_data;\r\n\r\nuniform mat4 u_matrix;\r\nuniform float u_scale;\r\nuniform float u_pitch;\r\nuniform float u_collision_y_stretch;\r\nuniform float u_camera_to_center_distance;\r\n\r\nvarying float v_max_zoom;\r\nvarying float v_placement_zoom;\r\nvarying float v_perspective_zoom_adjust;\r\nvarying vec2 v_fade_tex;\r\n\r\nvoid main() {\r\n vec4 projectedPoint = u_matrix * vec4(a_anchor_pos, 0, 1);\r\n highp float camera_to_anchor_distance = projectedPoint.w;\r\n highp float collision_perspective_ratio = 1.0 + 0.5 * ((camera_to_anchor_distance / u_camera_to_center_distance) - 1.0);\r\n\r\n highp float incidence_stretch = camera_to_anchor_distance / (u_camera_to_center_distance * cos(u_pitch));\r\n highp float collision_adjustment = max(1.0, incidence_stretch / u_collision_y_stretch);\r\n\r\n gl_Position = u_matrix * vec4(a_pos + a_extrude * collision_perspective_ratio * collision_adjustment / u_scale, 0.0, 1.0);\r\n\r\n v_max_zoom = a_data.x;\r\n v_placement_zoom = a_data.y;\r\n\r\n v_perspective_zoom_adjust = floor(log2(collision_perspective_ratio * collision_adjustment) * 10.0);\r\n v_fade_tex = vec2((v_placement_zoom + v_perspective_zoom_adjust) / 255.0, 0.0);\r\n}\r\n"},debug:{fragmentSource:"uniform highp vec4 u_color;\r\n\r\nvoid main() {\r\n gl_FragColor = u_color;\r\n}\r\n",vertexSource:"attribute vec2 a_pos;\r\n\r\nuniform mat4 u_matrix;\r\n\r\nvoid main() {\r\n // We are using Int16 for texture position coordinates to give us enough precision for\r\n // fractional coordinates. We use 8192 to scale the texture coordinates in the buffer\r\n // as an arbitrarily high number to preserve adequate precision when rendering.\r\n // This is also the same value as the EXTENT we are using for our tile buffer pos coordinates,\r\n // so math for modifying either is consistent.\r\n gl_Position = u_matrix * vec4(a_pos, step(8192.0, a_pos.x), 1);\r\n}\r\n"},fill:{fragmentSource:"#pragma minemap: define highp vec4 color\r\n#pragma minemap: define lowp float opacity\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n gl_FragColor = color * opacity;\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"attribute vec2 a_pos;\r\n\r\nuniform mat4 u_matrix;\r\n\r\n#pragma minemap: define highp vec4 color\r\n#pragma minemap: define lowp float opacity\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n gl_Position = u_matrix * vec4(a_pos, 0, 1);\r\n}\r\n"},fillOutline:{fragmentSource:"#pragma minemap: define highp vec4 outline_color\r\n#pragma minemap: define lowp float opacity\r\n\r\nvarying vec2 v_pos;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 outline_color\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n float dist = length(v_pos - gl_FragCoord.xy);\r\n float alpha = 1.0 - smoothstep(0.0, 1.0, dist);\r\n gl_FragColor = outline_color * (alpha * opacity);\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"attribute vec2 a_pos;\r\n\r\nuniform mat4 u_matrix;\r\nuniform vec2 u_world;\r\n\r\nvarying vec2 v_pos;\r\n\r\n#pragma minemap: define highp vec4 outline_color\r\n#pragma minemap: define lowp float opacity\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 outline_color\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n gl_Position = u_matrix * vec4(a_pos, 0, 1);\r\n v_pos = (gl_Position.xy / gl_Position.w + 1.0) / 2.0 * u_world;\r\n}\r\n"},fillOutlinePattern:{fragmentSource:"uniform vec2 u_pattern_tl_a;\r\nuniform vec2 u_pattern_br_a;\r\nuniform vec2 u_pattern_tl_b;\r\nuniform vec2 u_pattern_br_b;\r\nuniform vec2 u_texsize;\r\nuniform float u_mix;\r\n\r\nuniform sampler2D u_image;\r\n\r\nvarying vec2 v_pos_a;\r\nvarying vec2 v_pos_b;\r\nvarying vec2 v_pos;\r\n\r\n#pragma minemap: define lowp float opacity\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n vec2 imagecoord = mod(v_pos_a, 1.0);\r\n vec2 pos = mix(u_pattern_tl_a / u_texsize, u_pattern_br_a / u_texsize, imagecoord);\r\n vec4 color1 = texture2D(u_image, pos);\r\n\r\n vec2 imagecoord_b = mod(v_pos_b, 1.0);\r\n vec2 pos2 = mix(u_pattern_tl_b / u_texsize, u_pattern_br_b / u_texsize, imagecoord_b);\r\n vec4 color2 = texture2D(u_image, pos2);\r\n\r\n // find distance to outline for alpha interpolation\r\n\r\n float dist = length(v_pos - gl_FragCoord.xy);\r\n float alpha = 1.0 - smoothstep(0.0, 1.0, dist);\r\n\r\n\r\n gl_FragColor = mix(color1, color2, u_mix) * alpha * opacity;\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"uniform mat4 u_matrix;\r\nuniform vec2 u_world;\r\nuniform vec2 u_pattern_size_a;\r\nuniform vec2 u_pattern_size_b;\r\nuniform vec2 u_pixel_coord_upper;\r\nuniform vec2 u_pixel_coord_lower;\r\nuniform float u_scale_a;\r\nuniform float u_scale_b;\r\nuniform float u_tile_units_to_pixels;\r\n\r\nattribute vec2 a_pos;\r\n\r\nvarying vec2 v_pos_a;\r\nvarying vec2 v_pos_b;\r\nvarying vec2 v_pos;\r\n\r\n#pragma minemap: define lowp float opacity\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n gl_Position = u_matrix * vec4(a_pos, 0, 1);\r\n\r\n v_pos_a = get_pattern_pos(u_pixel_coord_upper, u_pixel_coord_lower, u_scale_a * u_pattern_size_a, u_tile_units_to_pixels, a_pos);\r\n v_pos_b = get_pattern_pos(u_pixel_coord_upper, u_pixel_coord_lower, u_scale_b * u_pattern_size_b, u_tile_units_to_pixels, a_pos);\r\n\r\n v_pos = (gl_Position.xy / gl_Position.w + 1.0) / 2.0 * u_world;\r\n}\r\n"},fillPattern:{fragmentSource:"uniform vec2 u_pattern_tl_a;\r\nuniform vec2 u_pattern_br_a;\r\nuniform vec2 u_pattern_tl_b;\r\nuniform vec2 u_pattern_br_b;\r\nuniform vec2 u_texsize;\r\nuniform float u_mix;\r\n\r\nuniform sampler2D u_image;\r\n\r\nvarying vec2 v_pos_a;\r\nvarying vec2 v_pos_b;\r\n\r\n#pragma minemap: define lowp float opacity\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n vec2 imagecoord = mod(v_pos_a, 1.0);\r\n vec2 pos = mix(u_pattern_tl_a / u_texsize, u_pattern_br_a / u_texsize, imagecoord);\r\n vec4 color1 = texture2D(u_image, pos);\r\n\r\n vec2 imagecoord_b = mod(v_pos_b, 1.0);\r\n vec2 pos2 = mix(u_pattern_tl_b / u_texsize, u_pattern_br_b / u_texsize, imagecoord_b);\r\n vec4 color2 = texture2D(u_image, pos2);\r\n\r\n gl_FragColor = mix(color1, color2, u_mix) * opacity;\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"uniform mat4 u_matrix;\r\nuniform vec2 u_pattern_size_a;\r\nuniform vec2 u_pattern_size_b;\r\nuniform vec2 u_pixel_coord_upper;\r\nuniform vec2 u_pixel_coord_lower;\r\nuniform float u_scale_a;\r\nuniform float u_scale_b;\r\nuniform float u_tile_units_to_pixels;\r\n\r\nattribute vec2 a_pos;\r\n\r\nvarying vec2 v_pos_a;\r\nvarying vec2 v_pos_b;\r\n\r\n#pragma minemap: define lowp float opacity\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n gl_Position = u_matrix * vec4(a_pos, 0, 1);\r\n\r\n v_pos_a = get_pattern_pos(u_pixel_coord_upper, u_pixel_coord_lower, u_scale_a * u_pattern_size_a, u_tile_units_to_pixels, a_pos);\r\n v_pos_b = get_pattern_pos(u_pixel_coord_upper, u_pixel_coord_lower, u_scale_b * u_pattern_size_b, u_tile_units_to_pixels, a_pos);\r\n}\r\n"},fillWater:{fragmentSource:"#define TAU 6.28318530718\r\n#define MAX_ITER 5\r\n#define INTENSITY 0.004\r\n#define SCALE 1000.0\r\n\r\nuniform lowp float u_time;\r\n\r\nvoid main() {\r\n vec2 uv = gl_FragCoord.xy / SCALE;\r\n vec2 p = mod(uv * TAU, TAU) - 250.0;\r\n vec2 i = vec2(p);\r\n float c = 1.0;\r\n\r\n for (int n = 0; n < MAX_ITER; n++) {\r\n float t = 0.5 * u_time * (1.0 - (3.5 / float(n + 1)));\r\n i = p + vec2(cos(t - i.x) + sin(t + i.y), sin(t - i.y) + cos(t + i.x));\r\n c += 1.0 / length(vec2(p.x / (sin(i.x + t) / INTENSITY), p.y / (cos(i.y + t) / INTENSITY)));\r\n }\r\n c = 1.17 - pow(c / float(MAX_ITER), 1.4);\r\n\r\n gl_FragColor = vec4(clamp(vec3(pow(abs(c), 8.0)) + vec3(0.0, 0.35, 0.5), 0.0, 1.0), 1.0);\r\n\r\n}\r\n",vertexSource:"attribute vec2 a_pos;\r\n\r\nuniform mat4 u_matrix;\r\n\r\n#pragma minemap: define lowp vec4 color\r\n#pragma minemap: define lowp float opacity\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp vec4 color\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n gl_Position = u_matrix * vec4(a_pos, 0, 1);\r\n}\r\n"},extrusion:{fragmentSource:"varying vec4 v_color;\r\n#pragma minemap: define lowp float base\r\n#pragma minemap: define lowp float height\r\n#pragma minemap: define highp vec4 color\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float base\r\n #pragma minemap: initialize lowp float height\r\n #pragma minemap: initialize highp vec4 color\r\n\r\n gl_FragColor = v_color;\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"uniform mat4 u_matrix;\r\nuniform vec3 u_lightcolor;\r\nuniform lowp vec3 u_lightpos;\r\nuniform lowp float u_lightintensity;\r\n\r\nattribute vec2 a_pos;\r\nattribute vec3 a_normal;\r\nattribute float a_edgedistance;\r\n\r\nvarying vec4 v_color;\r\n\r\n#pragma minemap: define lowp float base\r\n#pragma minemap: define lowp float height\r\n\r\n#pragma minemap: define highp vec4 color\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float base\r\n #pragma minemap: initialize lowp float height\r\n #pragma minemap: initialize highp vec4 color\r\n\r\n base = max(0.0, base);\r\n height = max(0.0, height);\r\n\r\n float ed = a_edgedistance; // use each attrib in order to not trip a VAO assert\r\n float t = mod(a_normal.x, 2.0);\r\n\r\n gl_Position = u_matrix * vec4(a_pos, t > 0.0 ? height : base, 1);\r\n\r\n // Relative luminance (how dark/bright is the surface color?)\r\n float colorvalue = color.r * 0.2126 + color.g * 0.7152 + color.b * 0.0722;\r\n\r\n v_color = vec4(0.0, 0.0, 0.0, 1.0);\r\n\r\n // Add slight ambient lighting so no extrusions are totally black\r\n vec4 ambientlight = vec4(0.03, 0.03, 0.03, 1.0);\r\n color += ambientlight;\r\n\r\n // Calculate cos(theta), where theta is the angle between surface normal and diffuse light ray\r\n float directional = clamp(dot(a_normal / 16384.0, u_lightpos), 0.0, 1.0);\r\n\r\n // Adjust directional so that\r\n // the range of values for highlight/shading is narrower\r\n // with lower light intensity\r\n // and with lighter/brighter surface colors\r\n directional = mix((1.0 - u_lightintensity), max((1.0 - colorvalue + u_lightintensity), 1.0), directional);\r\n\r\n // Add gradient along z axis of side surfaces\r\n if (a_normal.y != 0.0) {\r\n directional *= clamp((t + base) * pow(height / 150.0, 0.5), mix(0.7, 0.98, 1.0 - u_lightintensity), 1.0);\r\n }\r\n\r\n // Assign final color based on surface + ambient light color, diffuse light directional, and light color\r\n // with lower bounds adjusted to hue of light\r\n // so that shading is tinted with the complementary (opposite) color to the light color\r\n v_color.r += clamp(color.r * directional * u_lightcolor.r, mix(0.0, 0.3, 1.0 - u_lightcolor.r), 1.0);\r\n v_color.g += clamp(color.g * directional * u_lightcolor.g, mix(0.0, 0.3, 1.0 - u_lightcolor.g), 1.0);\r\n v_color.b += clamp(color.b * directional * u_lightcolor.b, mix(0.0, 0.3, 1.0 - u_lightcolor.b), 1.0);\r\n}\r\n"},extrusionPattern:{fragmentSource:"uniform vec2 u_pattern_tl_a;\r\nuniform vec2 u_pattern_br_a;\r\nuniform vec2 u_pattern_tl_b;\r\nuniform vec2 u_pattern_br_b;\r\nuniform vec2 u_texsize;\r\nuniform float u_mix;\r\n\r\nuniform sampler2D u_image;\r\n\r\nvarying vec2 v_pos_a;\r\nvarying vec2 v_pos_b;\r\nvarying vec4 v_lighting;\r\n\r\n#pragma minemap: define lowp float base\r\n#pragma minemap: define lowp float height\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float base\r\n #pragma minemap: initialize lowp float height\r\n\r\n vec2 imagecoord = mod(v_pos_a, 1.0);\r\n vec2 pos = mix(u_pattern_tl_a / u_texsize, u_pattern_br_a / u_texsize, imagecoord);\r\n vec4 color1 = texture2D(u_image, pos);\r\n\r\n vec2 imagecoord_b = mod(v_pos_b, 1.0);\r\n vec2 pos2 = mix(u_pattern_tl_b / u_texsize, u_pattern_br_b / u_texsize, imagecoord_b);\r\n vec4 color2 = texture2D(u_image, pos2);\r\n\r\n vec4 mixedColor = mix(color1, color2, u_mix);\r\n\r\n gl_FragColor = mixedColor * v_lighting;\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"uniform mat4 u_matrix;\r\nuniform vec2 u_pattern_size_a;\r\nuniform vec2 u_pattern_size_b;\r\nuniform vec2 u_pixel_coord_upper;\r\nuniform vec2 u_pixel_coord_lower;\r\nuniform float u_scale_a;\r\nuniform float u_scale_b;\r\nuniform float u_tile_units_to_pixels;\r\nuniform float u_height_factor;\r\n\r\nuniform vec3 u_lightcolor;\r\nuniform lowp vec3 u_lightpos;\r\nuniform lowp float u_lightintensity;\r\n\r\nattribute vec2 a_pos;\r\nattribute vec3 a_normal;\r\nattribute float a_edgedistance;\r\n\r\nvarying vec2 v_pos_a;\r\nvarying vec2 v_pos_b;\r\nvarying vec4 v_lighting;\r\nvarying float v_directional;\r\n\r\n#pragma minemap: define lowp float base\r\n#pragma minemap: define lowp float height\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float base\r\n #pragma minemap: initialize lowp float height\r\n\r\n base = max(0.0, base);\r\n height = max(0.0, height);\r\n\r\n float t = mod(a_normal.x, 2.0);\r\n float z = t > 0.0 ? height : base;\r\n\r\n gl_Position = u_matrix * vec4(a_pos, z, 1);\r\n\r\n vec2 pos = a_normal.x == 1.0 && a_normal.y == 0.0 && a_normal.z == 16384.0\r\n ? a_pos // extrusion top\r\n : vec2(a_edgedistance, z * u_height_factor); // extrusion side\r\n\r\n v_pos_a = get_pattern_pos(u_pixel_coord_upper, u_pixel_coord_lower, u_scale_a * u_pattern_size_a, u_tile_units_to_pixels, pos);\r\n v_pos_b = get_pattern_pos(u_pixel_coord_upper, u_pixel_coord_lower, u_scale_b * u_pattern_size_b, u_tile_units_to_pixels, pos);\r\n\r\n v_lighting = vec4(0.0, 0.0, 0.0, 1.0);\r\n float directional = clamp(dot(a_normal / 16383.0, u_lightpos), 0.0, 1.0);\r\n directional = mix((1.0 - u_lightintensity), max((0.5 + u_lightintensity), 1.0), directional);\r\n\r\n if (a_normal.y != 0.0) {\r\n directional *= clamp((t + base) * pow(height / 150.0, 0.5), mix(0.7, 0.98, 1.0 - u_lightintensity), 1.0);\r\n }\r\n\r\n v_lighting.rgb += clamp(directional * u_lightcolor, mix(vec3(0.0), vec3(0.3), 1.0 - u_lightcolor), vec3(1.0));\r\n}\r\n"},extrusionTexture:{fragmentSource:"uniform sampler2D u_image;\r\nuniform float u_opacity;\r\nvarying vec2 v_pos;\r\n\r\nvoid main() {\r\n gl_FragColor = texture2D(u_image, v_pos) * u_opacity;\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(0.0);\r\n#endif\r\n}\r\n",vertexSource:"uniform mat4 u_matrix;\r\nuniform vec2 u_world;\r\nattribute vec2 a_pos;\r\nvarying vec2 v_pos;\r\n\r\nvoid main() {\r\n gl_Position = u_matrix * vec4(a_pos * u_world, 0, 1);\r\n\r\n v_pos.x = a_pos.x;\r\n v_pos.y = 1.0 - a_pos.y;\r\n}\r\n"},line:{fragmentSource:"#pragma minemap: define highp vec4 color\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n\r\nvarying vec2 v_width2;\r\nvarying vec2 v_normal;\r\nvarying float v_gamma_scale;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n // Calculate the distance of the pixel from the line in pixels.\r\n float dist = length(v_normal) * v_width2.s;\r\n\r\n // Calculate the antialiasing fade factor. This is either when fading in\r\n // the line in case of an offset line (v_width2.t) or when fading out\r\n // (v_width2.s)\r\n float blur2 = (blur + 1.0 / DEVICE_PIXEL_RATIO) * v_gamma_scale;\r\n float alpha = clamp(min(dist - (v_width2.t - blur2), v_width2.s - dist) / blur2, 0.0, 1.0);\r\n\r\n gl_FragColor = color * (alpha * opacity);\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"\r\n\r\n// the distance over which the line edge fades out.\r\n// Retina devices need a smaller distance to avoid aliasing.\r\n#define ANTIALIASING 1.0 / DEVICE_PIXEL_RATIO / 2.0\r\n\r\n// floor(127 / 2) == 63.0\r\n// the maximum allowed miter limit is 2.0 at the moment. the extrude normal is\r\n// stored in a byte (-128..127). we scale regular normals up to length 63, but\r\n// there are also \"special\" normals that have a bigger length (of up to 126 in\r\n// this case).\r\n// #define scale 63.0\r\n#define scale 0.015873016\r\n\r\nattribute vec2 a_pos;\r\nattribute vec4 a_data;\r\n\r\nuniform mat4 u_matrix;\r\nuniform mediump float u_ratio;\r\nuniform vec2 u_gl_units_to_pixels;\r\n\r\nvarying vec2 v_normal;\r\nvarying vec2 v_width2;\r\nvarying float v_gamma_scale;\r\n\r\n#pragma minemap: define highp vec4 color\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n#pragma minemap: define mediump float gapwidth\r\n#pragma minemap: define lowp float offset\r\n#pragma minemap: define mediump float width\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n #pragma minemap: initialize mediump float gapwidth\r\n #pragma minemap: initialize lowp float offset\r\n #pragma minemap: initialize mediump float width\r\n\r\n vec2 a_extrude = a_data.xy - 128.0;\r\n float a_direction = mod(a_data.z, 4.0) - 1.0;\r\n\r\n // We store the texture normals in the most insignificant bit\r\n // transform y so that 0 => -1 and 1 => 1\r\n // In the texture normal, x is 0 if the normal points straight up/down and 1 if it's a round cap\r\n // y is 1 if the normal points up, and -1 if it points down\r\n mediump vec2 normal = mod(a_pos, 2.0);\r\n normal.y = sign(normal.y - 0.5);\r\n v_normal = normal;\r\n\r\n\r\n // these transformations used to be applied in the JS and native code bases. \r\n // moved them into the shader for clarity and simplicity. \r\n gapwidth = gapwidth / 2.0;\r\n float halfwidth = width / 2.0;\r\n offset = -1.0 * offset; \r\n\r\n float inset = gapwidth + (gapwidth > 0.0 ? ANTIALIASING : 0.0);\r\n float outset = gapwidth + halfwidth * (gapwidth > 0.0 ? 2.0 : 1.0) + ANTIALIASING;\r\n\r\n // Scale the extrusion vector down to a normal and then up by the line width\r\n // of this vertex.\r\n mediump vec2 dist = outset * a_extrude * scale;\r\n\r\n // Calculate the offset when drawing a line that is to the side of the actual line.\r\n // We do this by creating a vector that points towards the extrude, but rotate\r\n // it when we're drawing round end points (a_direction = -1 or 1) since their\r\n // extrude vector points in another direction.\r\n mediump float u = 0.5 * a_direction;\r\n mediump float t = 1.0 - abs(u);\r\n mediump vec2 offset2 = offset * a_extrude * scale * normal.y * mat2(t, -u, u, t);\r\n\r\n // Remove the texture normal bit to get the position\r\n vec2 pos = floor(a_pos * 0.5);\r\n\r\n vec4 projected_extrude = u_matrix * vec4(dist / u_ratio, 0.0, 0.0);\r\n gl_Position = u_matrix * vec4(pos + offset2 / u_ratio, 0.0, 1.0) + projected_extrude;\r\n\r\n // calculate how much the perspective view squishes or stretches the extrude\r\n float extrude_length_without_perspective = length(dist);\r\n float extrude_length_with_perspective = length(projected_extrude.xy / gl_Position.w * u_gl_units_to_pixels);\r\n v_gamma_scale = extrude_length_without_perspective / extrude_length_with_perspective;\r\n\r\n v_width2 = vec2(outset, inset);\r\n}\r\n"},linePattern:{fragmentSource:"uniform vec2 u_pattern_size_a;\r\nuniform vec2 u_pattern_size_b;\r\nuniform vec2 u_pattern_tl_a;\r\nuniform vec2 u_pattern_br_a;\r\nuniform vec2 u_pattern_tl_b;\r\nuniform vec2 u_pattern_br_b;\r\nuniform vec2 u_texsize;\r\nuniform float u_fade;\r\n\r\nuniform sampler2D u_image;\r\n\r\nvarying vec2 v_normal;\r\nvarying vec2 v_width2;\r\nvarying float v_linesofar;\r\nvarying float v_gamma_scale;\r\n\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n // Calculate the distance of the pixel from the line in pixels.\r\n float dist = length(v_normal) * v_width2.s;\r\n\r\n // Calculate the antialiasing fade factor. This is either when fading in\r\n // the line in case of an offset line (v_width2.t) or when fading out\r\n // (v_width2.s)\r\n float blur2 = (blur + 1.0 / DEVICE_PIXEL_RATIO) * v_gamma_scale;\r\n float alpha = clamp(min(dist - (v_width2.t - blur2), v_width2.s - dist) / blur2, 0.0, 1.0);\r\n\r\n float x_a = mod(v_linesofar / u_pattern_size_a.x, 1.0);\r\n float x_b = mod(v_linesofar / u_pattern_size_b.x, 1.0);\r\n float y_a = 0.5 + (v_normal.y * v_width2.s / u_pattern_size_a.y);\r\n float y_b = 0.5 + (v_normal.y * v_width2.s / u_pattern_size_b.y);\r\n vec2 pos_a = mix(u_pattern_tl_a / u_texsize, u_pattern_br_a / u_texsize, vec2(x_a, y_a));\r\n vec2 pos_b = mix(u_pattern_tl_b / u_texsize, u_pattern_br_b / u_texsize, vec2(x_b, y_b));\r\n\r\n vec4 color = mix(texture2D(u_image, pos_a), texture2D(u_image, pos_b), u_fade);\r\n\r\n gl_FragColor = color * alpha * opacity;\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",
vertexSource:"// floor(127 / 2) == 63.0\r\n// the maximum allowed miter limit is 2.0 at the moment. the extrude normal is\r\n// stored in a byte (-128..127). we scale regular normals up to length 63, but\r\n// there are also \"special\" normals that have a bigger length (of up to 126 in\r\n// this case).\r\n// #define scale 63.0\r\n#define scale 0.015873016\r\n\r\n// We scale the distance before adding it to the buffers so that we can store\r\n// long distances for long segments. Use this value to unscale the distance.\r\n#define LINE_DISTANCE_SCALE 2.0\r\n\r\n// the distance over which the line edge fades out.\r\n// Retina devices need a smaller distance to avoid aliasing.\r\n#define ANTIALIASING 1.0 / DEVICE_PIXEL_RATIO / 2.0\r\n\r\nattribute vec2 a_pos;\r\nattribute vec4 a_data;\r\n\r\nuniform mat4 u_matrix;\r\nuniform mediump float u_ratio;\r\nuniform vec2 u_gl_units_to_pixels;\r\n\r\nvarying vec2 v_normal;\r\nvarying vec2 v_width2;\r\nvarying float v_linesofar;\r\nvarying float v_gamma_scale;\r\n\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n#pragma minemap: define lowp float offset\r\n#pragma minemap: define mediump float gapwidth\r\n#pragma minemap: define mediump float width\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n #pragma minemap: initialize lowp float offset\r\n #pragma minemap: initialize mediump float gapwidth\r\n #pragma minemap: initialize mediump float width\r\n\r\n vec2 a_extrude = a_data.xy - 128.0;\r\n float a_direction = mod(a_data.z, 4.0) - 1.0;\r\n float a_linesofar = (floor(a_data.z / 4.0) + a_data.w * 64.0) * LINE_DISTANCE_SCALE;\r\n\r\n // We store the texture normals in the most insignificant bit\r\n // transform y so that 0 => -1 and 1 => 1\r\n // In the texture normal, x is 0 if the normal points straight up/down and 1 if it's a round cap\r\n // y is 1 if the normal points up, and -1 if it points down\r\n mediump vec2 normal = mod(a_pos, 2.0);\r\n normal.y = sign(normal.y - 0.5);\r\n v_normal = normal;\r\n\r\n // these transformations used to be applied in the JS and native code bases. \r\n // moved them into the shader for clarity and simplicity. \r\n gapwidth = gapwidth / 2.0;\r\n float halfwidth = width / 2.0;\r\n offset = -1.0 * offset; \r\n\r\n float inset = gapwidth + (gapwidth > 0.0 ? ANTIALIASING : 0.0);\r\n float outset = gapwidth + halfwidth * (gapwidth > 0.0 ? 2.0 : 1.0) + ANTIALIASING;\r\n\r\n // Scale the extrusion vector down to a normal and then up by the line width\r\n // of this vertex.\r\n mediump vec2 dist = outset * a_extrude * scale;\r\n\r\n // Calculate the offset when drawing a line that is to the side of the actual line.\r\n // We do this by creating a vector that points towards the extrude, but rotate\r\n // it when we're drawing round end points (a_direction = -1 or 1) since their\r\n // extrude vector points in another direction.\r\n mediump float u = 0.5 * a_direction;\r\n mediump float t = 1.0 - abs(u);\r\n mediump vec2 offset2 = offset * a_extrude * scale * normal.y * mat2(t, -u, u, t);\r\n\r\n // Remove the texture normal bit to get the position\r\n vec2 pos = floor(a_pos * 0.5);\r\n\r\n vec4 projected_extrude = u_matrix * vec4(dist / u_ratio, 0.0, 0.0);\r\n gl_Position = u_matrix * vec4(pos + offset2 / u_ratio, 0.0, 1.0) + projected_extrude;\r\n\r\n // calculate how much the perspective view squishes or stretches the extrude\r\n float extrude_length_without_perspective = length(dist);\r\n float extrude_length_with_perspective = length(projected_extrude.xy / gl_Position.w * u_gl_units_to_pixels);\r\n v_gamma_scale = extrude_length_without_perspective / extrude_length_with_perspective;\r\n\r\n v_linesofar = a_linesofar;\r\n v_width2 = vec2(outset, inset);\r\n}\r\n"},lineSDF:{fragmentSource:"\r\nuniform sampler2D u_image;\r\nuniform float u_sdfgamma;\r\nuniform float u_mix;\r\n\r\nvarying vec2 v_normal;\r\nvarying vec2 v_width2;\r\nvarying vec2 v_tex_a;\r\nvarying vec2 v_tex_b;\r\nvarying float v_gamma_scale;\r\n\r\n#pragma minemap: define highp vec4 color\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n#pragma minemap: define mediump float width\r\n#pragma minemap: define lowp float floorwidth\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n #pragma minemap: initialize mediump float width\r\n #pragma minemap: initialize lowp float floorwidth\r\n\r\n // Calculate the distance of the pixel from the line in pixels.\r\n float dist = length(v_normal) * v_width2.s;\r\n\r\n // Calculate the antialiasing fade factor. This is either when fading in\r\n // the line in case of an offset line (v_width2.t) or when fading out\r\n // (v_width2.s)\r\n float blur2 = (blur + 1.0 / DEVICE_PIXEL_RATIO) * v_gamma_scale;\r\n float alpha = clamp(min(dist - (v_width2.t - blur2), v_width2.s - dist) / blur2, 0.0, 1.0);\r\n\r\n float sdfdist_a = texture2D(u_image, v_tex_a).a;\r\n float sdfdist_b = texture2D(u_image, v_tex_b).a;\r\n float sdfdist = mix(sdfdist_a, sdfdist_b, u_mix);\r\n alpha *= smoothstep(0.5 - u_sdfgamma / floorwidth, 0.5 + u_sdfgamma / floorwidth, sdfdist);\r\n\r\n gl_FragColor = color * (alpha * opacity);\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"// floor(127 / 2) == 63.0\r\n// the maximum allowed miter limit is 2.0 at the moment. the extrude normal is\r\n// stored in a byte (-128..127). we scale regular normals up to length 63, but\r\n// there are also \"special\" normals that have a bigger length (of up to 126 in\r\n// this case).\r\n// #define scale 63.0\r\n#define scale 0.015873016\r\n\r\n// We scale the distance before adding it to the buffers so that we can store\r\n// long distances for long segments. Use this value to unscale the distance.\r\n#define LINE_DISTANCE_SCALE 2.0\r\n\r\n// the distance over which the line edge fades out.\r\n// Retina devices need a smaller distance to avoid aliasing.\r\n#define ANTIALIASING 1.0 / DEVICE_PIXEL_RATIO / 2.0\r\n\r\nattribute vec2 a_pos;\r\nattribute vec4 a_data;\r\n\r\nuniform mat4 u_matrix;\r\nuniform mediump float u_ratio;\r\nuniform vec2 u_patternscale_a;\r\nuniform float u_tex_y_a;\r\nuniform vec2 u_patternscale_b;\r\nuniform float u_tex_y_b;\r\nuniform vec2 u_gl_units_to_pixels;\r\n\r\nvarying vec2 v_normal;\r\nvarying vec2 v_width2;\r\nvarying vec2 v_tex_a;\r\nvarying vec2 v_tex_b;\r\nvarying float v_gamma_scale;\r\n\r\n#pragma minemap: define highp vec4 color\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n#pragma minemap: define mediump float gapwidth\r\n#pragma minemap: define lowp float offset\r\n#pragma minemap: define mediump float width\r\n#pragma minemap: define lowp float floorwidth\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n #pragma minemap: initialize mediump float gapwidth\r\n #pragma minemap: initialize lowp float offset\r\n #pragma minemap: initialize mediump float width\r\n #pragma minemap: initialize lowp float floorwidth\r\n\r\n vec2 a_extrude = a_data.xy - 128.0;\r\n float a_direction = mod(a_data.z, 4.0) - 1.0;\r\n float a_linesofar = (floor(a_data.z / 4.0) + a_data.w * 64.0) * LINE_DISTANCE_SCALE;\r\n\r\n // We store the texture normals in the most insignificant bit\r\n // transform y so that 0 => -1 and 1 => 1\r\n // In the texture normal, x is 0 if the normal points straight up/down and 1 if it's a round cap\r\n // y is 1 if the normal points up, and -1 if it points down\r\n mediump vec2 normal = mod(a_pos, 2.0);\r\n normal.y = sign(normal.y - 0.5);\r\n v_normal = normal;\r\n\r\n // these transformations used to be applied in the JS and native code bases. \r\n // moved them into the shader for clarity and simplicity. \r\n gapwidth = gapwidth / 2.0;\r\n float halfwidth = width / 2.0;\r\n offset = -1.0 * offset;\r\n \r\n float inset = gapwidth + (gapwidth > 0.0 ? ANTIALIASING : 0.0);\r\n float outset = gapwidth + halfwidth * (gapwidth > 0.0 ? 2.0 : 1.0) + ANTIALIASING;\r\n\r\n // Scale the extrusion vector down to a normal and then up by the line width\r\n // of this vertex.\r\n mediump vec2 dist =outset * a_extrude * scale;\r\n\r\n // Calculate the offset when drawing a line that is to the side of the actual line.\r\n // We do this by creating a vector that points towards the extrude, but rotate\r\n // it when we're drawing round end points (a_direction = -1 or 1) since their\r\n // extrude vector points in another direction.\r\n mediump float u = 0.5 * a_direction;\r\n mediump float t = 1.0 - abs(u);\r\n mediump vec2 offset2 = offset * a_extrude * scale * normal.y * mat2(t, -u, u, t);\r\n\r\n // Remove the texture normal bit to get the position\r\n vec2 pos = floor(a_pos * 0.5);\r\n\r\n vec4 projected_extrude = u_matrix * vec4(dist / u_ratio, 0.0, 0.0);\r\n gl_Position = u_matrix * vec4(pos + offset2 / u_ratio, 0.0, 1.0) + projected_extrude;\r\n\r\n // calculate how much the perspective view squishes or stretches the extrude\r\n float extrude_length_without_perspective = length(dist);\r\n float extrude_length_with_perspective = length(projected_extrude.xy / gl_Position.w * u_gl_units_to_pixels);\r\n v_gamma_scale = extrude_length_without_perspective / extrude_length_with_perspective;\r\n\r\n v_tex_a = vec2(a_linesofar * u_patternscale_a.x / floorwidth, normal.y * u_patternscale_a.y + u_tex_y_a);\r\n v_tex_b = vec2(a_linesofar * u_patternscale_b.x / floorwidth, normal.y * u_patternscale_b.y + u_tex_y_b);\r\n\r\n v_width2 = vec2(outset, inset);\r\n}\r\n"},raster:{fragmentSource:"uniform float u_fade_t;\r\nuniform float u_opacity;\r\nuniform sampler2D u_image0;\r\nuniform sampler2D u_image1;\r\nvarying vec2 v_pos0;\r\nvarying vec2 v_pos1;\r\n\r\nuniform float u_brightness_low;\r\nuniform float u_brightness_high;\r\n\r\nuniform float u_saturation_factor;\r\nuniform float u_contrast_factor;\r\nuniform vec3 u_spin_weights;\r\n\r\nvoid main() {\r\n\r\n // read and cross-fade colors from the main and parent tiles\r\n vec4 color0 = texture2D(u_image0, v_pos0);\r\n vec4 color1 = texture2D(u_image1, v_pos1);\r\n if (color0.a > 0.0) {\r\n color0.rgb = color0.rgb / color0.a;\r\n }\r\n if (color1.a > 0.0) {\r\n color1.rgb = color1.rgb / color1.a;\r\n }\r\n vec4 color = mix(color0, color1, u_fade_t);\r\n color.a *= u_opacity;\r\n vec3 rgb = color.rgb;\r\n\r\n // spin\r\n rgb = vec3(\r\n dot(rgb, u_spin_weights.xyz),\r\n dot(rgb, u_spin_weights.zxy),\r\n dot(rgb, u_spin_weights.yzx));\r\n\r\n // saturation\r\n float average = (color.r + color.g + color.b) / 3.0;\r\n rgb += (average - rgb) * u_saturation_factor;\r\n\r\n // contrast\r\n rgb = (rgb - 0.5) * u_contrast_factor + 0.5;\r\n\r\n // brightness\r\n vec3 u_high_vec = vec3(u_brightness_low, u_brightness_low, u_brightness_low);\r\n vec3 u_low_vec = vec3(u_brightness_high, u_brightness_high, u_brightness_high);\r\n\r\n gl_FragColor = vec4(mix(u_high_vec, u_low_vec, rgb) * color.a, color.a);\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"uniform mat4 u_matrix;\r\nuniform vec2 u_tl_parent;\r\nuniform float u_scale_parent;\r\nuniform float u_buffer_scale;\r\n\r\nattribute vec2 a_pos;\r\nattribute vec2 a_texture_pos;\r\n\r\nvarying vec2 v_pos0;\r\nvarying vec2 v_pos1;\r\n\r\nvoid main() {\r\n gl_Position = u_matrix * vec4(a_pos, 0, 1);\r\n // We are using Int16 for texture position coordinates to give us enough precision for\r\n // fractional coordinates. We use 8192 to scale the texture coordinates in the buffer\r\n // as an arbitrarily high number to preserve adequate precision when rendering.\r\n // This is also the same value as the EXTENT we are using for our tile buffer pos coordinates,\r\n // so math for modifying either is consistent.\r\n v_pos0 = (((a_texture_pos / 8192.0) - 0.5) / u_buffer_scale ) + 0.5;\r\n v_pos1 = (v_pos0 * u_scale_parent) + u_tl_parent;\r\n}\r\n"},symbolIcon:{fragmentSource:"uniform sampler2D u_texture;\r\nuniform sampler2D u_fadetexture;\r\n\r\n#pragma minemap: define lowp float opacity\r\n\r\nvarying vec2 v_tex;\r\nvarying vec2 v_fade_tex;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n lowp float alpha = texture2D(u_fadetexture, v_fade_tex).a * opacity;\r\n gl_FragColor = texture2D(u_texture, v_tex) * alpha;\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"const float PI = 3.141592653589793;\r\n\r\nattribute vec4 a_pos_offset;\r\nattribute vec4 a_data;\r\nattribute vec3 a_projected_pos;\r\n\r\nuniform bool u_is_size_zoom_constant;\r\nuniform bool u_is_size_feature_constant;\r\nuniform highp float u_size_t; // used to interpolate between zoom stops when size is a composite function\r\nuniform highp float u_size; // used when size is both zoom and feature constant\r\nuniform highp float u_camera_to_center_distance;\r\nuniform highp float u_pitch;\r\nuniform bool u_rotate_symbol;\r\nuniform highp float u_aspect_ratio;\r\nuniform highp float u_collision_y_stretch;\r\n\r\n#pragma minemap: define lowp float opacity\r\n\r\nuniform mat4 u_matrix;\r\nuniform mat4 u_label_plane_matrix;\r\nuniform mat4 u_gl_coord_matrix;\r\n\r\nuniform bool u_is_text;\r\nuniform bool u_pitch_with_map;\r\n\r\nuniform vec2 u_texsize;\r\n\r\nvarying vec2 v_tex;\r\nvarying vec2 v_fade_tex;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n vec2 a_pos = a_pos_offset.xy;\r\n vec2 a_offset = a_pos_offset.zw;\r\n\r\n vec2 a_tex = a_data.xy;\r\n vec2 a_size = a_data.zw;\r\n\r\n highp vec2 angle_labelminzoom = unpack_float(a_projected_pos[2]);\r\n highp float segment_angle = -angle_labelminzoom[0] / 255.0 * 2.0 * PI;\r\n mediump float a_labelminzoom = angle_labelminzoom[1];\r\n\r\n float size;\r\n if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {\r\n size = mix(a_size[0], a_size[1], u_size_t) / 10.0;\r\n } else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {\r\n size = a_size[0] / 10.0;\r\n } else if (!u_is_size_zoom_constant && u_is_size_feature_constant) {\r\n size = u_size;\r\n } else {\r\n size = u_size;\r\n }\r\n\r\n vec4 projectedPoint = u_matrix * vec4(a_pos, 0, 1);\r\n highp float camera_to_anchor_distance = projectedPoint.w;\r\n // See comments in symbol_sdf.vertex\r\n highp float distance_ratio = u_pitch_with_map ?\r\n camera_to_anchor_distance / u_camera_to_center_distance :\r\n u_camera_to_center_distance / camera_to_anchor_distance;\r\n highp float perspective_ratio = 0.5 + 0.5 * distance_ratio;\r\n\r\n size *= perspective_ratio;\r\n\r\n float fontScale = u_is_text ? size / 24.0 : size;\r\n\r\n highp float symbol_rotation = 0.0;\r\n if (u_rotate_symbol) {\r\n // See comments in symbol_sdf.vertex\r\n vec4 offsetProjectedPoint = u_matrix * vec4(a_pos + vec2(1, 0), 0, 1);\r\n\r\n vec2 a = projectedPoint.xy / projectedPoint.w;\r\n vec2 b = offsetProjectedPoint.xy / offsetProjectedPoint.w;\r\n\r\n symbol_rotation = atan((b.y - a.y) / u_aspect_ratio, b.x - a.x);\r\n }\r\n\r\n highp float angle_sin = sin(segment_angle + symbol_rotation);\r\n highp float angle_cos = cos(segment_angle + symbol_rotation);\r\n mat2 rotation_matrix = mat2(angle_cos, -1.0 * angle_sin, angle_sin, angle_cos);\r\n\r\n vec4 projected_pos = u_label_plane_matrix * vec4(a_projected_pos.xy, 0.0, 1.0);\r\n gl_Position = u_gl_coord_matrix * vec4(projected_pos.xy / projected_pos.w + rotation_matrix * (a_offset / 64.0 * fontScale), 0.0, 1.0);\r\n\r\n v_tex = a_tex / u_texsize;\r\n // See comments in symbol_sdf.vertex\r\n highp float incidence_stretch = camera_to_anchor_distance / (u_camera_to_center_distance * cos(u_pitch));\r\n highp float collision_adjustment = max(1.0, incidence_stretch / u_collision_y_stretch);\r\n\r\n highp float collision_perspective_ratio = 1.0 + 0.5*((camera_to_anchor_distance / u_camera_to_center_distance) - 1.0);\r\n highp float perspective_zoom_adjust = floor(log2(collision_perspective_ratio * collision_adjustment) * 10.0);\r\n v_fade_tex = vec2((a_labelminzoom + perspective_zoom_adjust) / 255.0, 0.0);\r\n}\r\n"},symbolSDF:{fragmentSource:"#define SDF_PX 8.0\r\n#define EDGE_GAMMA 0.105/DEVICE_PIXEL_RATIO\r\n\r\nuniform bool u_is_halo;\r\n#pragma minemap: define highp vec4 fill_color\r\n#pragma minemap: define highp vec4 halo_color\r\n#pragma minemap: define lowp float opacity\r\n#pragma minemap: define lowp float halo_width\r\n#pragma minemap: define lowp float halo_blur\r\n\r\nuniform sampler2D u_texture;\r\nuniform sampler2D u_fadetexture;\r\nuniform highp float u_gamma_scale;\r\nuniform bool u_is_text;\r\n\r\nvarying vec4 v_data0;\r\nvarying vec2 v_data1;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 fill_color\r\n #pragma minemap: initialize highp vec4 halo_color\r\n #pragma minemap: initialize lowp float opacity\r\n #pragma minemap: initialize lowp float halo_width\r\n #pragma minemap: initialize lowp float halo_blur\r\n\r\n vec2 tex = v_data0.xy;\r\n vec2 fade_tex = v_data0.zw;\r\n float gamma_scale = v_data1.x;\r\n float size = v_data1.y;\r\n\r\n float fontScale = u_is_text ? size / 24.0 : size;\r\n\r\n lowp vec4 color = fill_color;\r\n highp float gamma = EDGE_GAMMA / (fontScale * u_gamma_scale);\r\n lowp float buff = (256.0 - 64.0) / 256.0;\r\n if (u_is_halo) {\r\n color = halo_color;\r\n gamma = (halo_blur * 1.19 / SDF_PX + EDGE_GAMMA) / (fontScale * u_gamma_scale);\r\n buff = (6.0 - halo_width / fontScale) / SDF_PX;\r\n }\r\n\r\n lowp float dist = texture2D(u_texture, tex).a;\r\n lowp float fade_alpha = texture2D(u_fadetexture, fade_tex).a;\r\n highp float gamma_scaled = gamma * gamma_scale;\r\n highp float alpha = smoothstep(buff - gamma_scaled, buff + gamma_scaled, dist) * fade_alpha;\r\n\r\n gl_FragColor = color * (alpha * opacity);\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"const float PI = 3.141592653589793;\r\n\r\nattribute vec4 a_pos_offset;\r\nattribute vec4 a_data;\r\nattribute vec3 a_projected_pos;\r\n\r\n// contents of a_size vary based on the type of property value\r\n// used for {text,icon}-size.\r\n// For constants, a_size is disabled.\r\n// For source functions, we bind only one value per vertex: the value of {text,icon}-size evaluated for the current feature.\r\n// For composite functions:\r\n// [ text-size(lowerZoomStop, feature),\r\n// text-size(upperZoomStop, feature) ]\r\nuniform bool u_is_size_zoom_constant;\r\nuniform bool u_is_size_feature_constant;\r\nuniform highp float u_size_t; // used to interpolate between zoom stops when size is a composite function\r\nuniform highp float u_size; // used when size is both zoom and feature constant\r\n\r\n#pragma minemap: define highp vec4 fill_color\r\n#pragma minemap: define highp vec4 halo_color\r\n#pragma minemap: define lowp float opacity\r\n#pragma minemap: define lowp float halo_width\r\n#pragma minemap: define lowp float halo_blur\r\n\r\nuniform mat4 u_matrix;\r\nuniform mat4 u_label_plane_matrix;\r\nuniform mat4 u_gl_coord_matrix;\r\n\r\nuniform bool u_is_text;\r\nuniform bool u_pitch_with_map;\r\nuniform highp float u_pitch;\r\nuniform bool u_rotate_symbol;\r\nuniform highp float u_aspect_ratio;\r\nuniform highp float u_camera_to_center_distance;\r\nuniform highp float u_collision_y_stretch;\r\n\r\nuniform vec2 u_texsize;\r\n\r\nvarying vec4 v_data0;\r\nvarying vec2 v_data1;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 fill_color\r\n #pragma minemap: initialize highp vec4 halo_color\r\n #pragma minemap: initialize lowp float opacity\r\n #pragma minemap: initialize lowp float halo_width\r\n #pragma minemap: initialize lowp float halo_blur\r\n\r\n vec2 a_pos = a_pos_offset.xy;\r\n vec2 a_offset = a_pos_offset.zw;\r\n\r\n vec2 a_tex = a_data.xy;\r\n vec2 a_size = a_data.zw;\r\n\r\n highp vec2 angle_labelminzoom = unpack_float(a_projected_pos[2]);\r\n highp float segment_angle = -angle_labelminzoom[0] / 255.0 * 2.0 * PI;\r\n mediump float a_labelminzoom = angle_labelminzoom[1];\r\n float size;\r\n\r\n if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {\r\n size = mix(a_size[0], a_size[1], u_size_t) / 10.0;\r\n } else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {\r\n size = a_size[0] / 10.0;\r\n } else if (!u_is_size_zoom_constant && u_is_size_feature_constant) {\r\n size = u_size;\r\n } else {\r\n size = u_size;\r\n }\r\n\r\n vec4 projectedPoint = u_matrix * vec4(a_pos, 0, 1);\r\n highp float camera_to_anchor_distance = projectedPoint.w;\r\n // If the label is pitched with the map, layout is done in pitched space,\r\n // which makes labels in the distance smaller relative to viewport space.\r\n // We counteract part of that effect by multiplying by the perspective ratio.\r\n // If the label isn't pitched with the map, we do layout in viewport space,\r\n // which makes labels in the distance larger relative to the features around\r\n // them. We counteract part of that effect by dividing by the perspective ratio.\r\n highp float distance_ratio = u_pitch_with_map ?\r\n camera_to_anchor_distance / u_camera_to_center_distance :\r\n u_camera_to_center_distance / camera_to_anchor_distance;\r\n highp float perspective_ratio = 0.5 + 0.5 * distance_ratio;\r\n\r\n size *= perspective_ratio;\r\n\r\n float fontScale = u_is_text ? size / 24.0 : size;\r\n\r\n highp float symbol_rotation = 0.0;\r\n if (u_rotate_symbol) {\r\n // Point labels with 'rotation-alignment: map' are horizontal with respect to tile units\r\n // To figure out that angle in projected space, we draw a short horizontal line in tile\r\n // space, project it, and measure its angle in projected space.\r\n vec4 offsetProjectedPoint = u_matrix * vec4(a_pos + vec2(1, 0), 0, 1);\r\n\r\n vec2 a = projectedPoint.xy / projectedPoint.w;\r\n vec2 b = offsetProjectedPoint.xy / offsetProjectedPoint.w;\r\n\r\n symbol_rotation = atan((b.y - a.y) / u_aspect_ratio, b.x - a.x);\r\n }\r\n\r\n highp float angle_sin = sin(segment_angle + symbol_rotation);\r\n highp float angle_cos = cos(segment_angle + symbol_rotation);\r\n mat2 rotation_matrix = mat2(angle_cos, -1.0 * angle_sin, angle_sin, angle_cos);\r\n\r\n vec4 projected_pos = u_label_plane_matrix * vec4(a_projected_pos.xy, 0.0, 1.0);\r\n gl_Position = u_gl_coord_matrix * vec4(projected_pos.xy / projected_pos.w + rotation_matrix * (a_offset / 64.0 * fontScale), 0.0, 1.0);\r\n float gamma_scale = gl_Position.w;\r\n\r\n vec2 tex = a_tex / u_texsize;\r\n // incidence_stretch is the ratio of how much y space a label takes up on a tile while drawn perpendicular to the viewport vs\r\n // how much space it would take up if it were drawn flat on the tile\r\n // Using law of sines, camera_to_anchor/sin(ground_angle) = camera_to_center/sin(incidence_angle)\r\n // sin(incidence_angle) = 1/incidence_stretch\r\n // Incidence angle 90 -> head on, sin(incidence_angle) = 1, no incidence stretch\r\n // Incidence angle 1 -> very oblique, sin(incidence_angle) =~ 0, lots of incidence stretch\r\n // ground_angle = u_pitch + PI/2 -> sin(ground_angle) = cos(u_pitch)\r\n // This 2D calculation is only exactly correct when gl_Position.x is in the center of the viewport,\r\n // but it's a close enough approximation for our purposes\r\n highp float incidence_stretch = camera_to_anchor_distance / (u_camera_to_center_distance * cos(u_pitch));\r\n // incidence_stretch only applies to the y-axis, but without re-calculating the collision tile, we can't\r\n // adjust the size of only one axis. So, we do a crude approximation at placement time to get the aspect ratio\r\n // about right, and then do the rest of the adjustment here: there will be some extra padding on the x-axis,\r\n // but hopefully not too much.\r\n // Never make the adjustment less than 1.0: instead of allowing collisions on the x-axis, be conservative on\r\n // the y-axis.\r\n highp float collision_adjustment = max(1.0, incidence_stretch / u_collision_y_stretch);\r\n\r\n // Floor to 1/10th zoom to dodge precision issues that can cause partially hidden labels\r\n highp float collision_perspective_ratio = 1.0 + 0.5*((camera_to_anchor_distance / u_camera_to_center_distance) - 1.0);\r\n highp float perspective_zoom_adjust = floor(log2(collision_perspective_ratio * collision_adjustment) * 10.0);\r\n vec2 fade_tex = vec2((a_labelminzoom + perspective_zoom_adjust) / 255.0, 0.0);\r\n\r\n v_data0 = vec4(tex.x, tex.y, fade_tex.x, fade_tex.y);\r\n v_data1 = vec2(gamma_scale, size);\r\n}\r\n"},sprite:{fragmentSource:"#pragma minemap: define highp vec4 color\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n\r\nvarying vec2 v_width2;\r\nvarying vec2 v_normal;\r\nvarying float v_gamma_scale;\r\nvarying float v_opacity;\r\nvarying float v_discard;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n if(v_discard<0.0){\r\n discard;\r\n }\r\n\r\n float opacity_m = v_opacity;\r\n // Calculate the distance of the pixel from the line in pixels.\r\n float dist = length(v_normal) * v_width2.s;\r\n\r\n // Calculate the antialiasing fade factor. This is either when fading in\r\n // the line in case of an offset line (v_width2.t) or when fading out\r\n // (v_width2.s)\r\n float blur2 = (blur + 1.0 / DEVICE_PIXEL_RATIO) * v_gamma_scale;\r\n float alpha = clamp(min(dist - (v_width2.t - blur2), v_width2.s - dist) / blur2, 0.0, 1.0);\r\n\r\n gl_FragColor = color * (alpha * opacity) * opacity_m;\r\n\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"\r\n\r\n// the distance over which the line edge fades out.\r\n// Retina devices need a smaller distance to avoid aliasing.\r\n#define ANTIALIASING 1.0 / DEVICE_PIXEL_RATIO / 2.0\r\n\r\n// floor(127 / 2) == 63.0\r\n// the maximum allowed miter limit is 2.0 at the moment. the extrude normal is\r\n// stored in a byte (-128..127). we scale regular normals up to length 63, but\r\n// there are also \"special\" normals that have a bigger length (of up to 126 in\r\n// this case).\r\n// #define scale 63.0\r\n#define scale 0.015873016\r\n\r\nattribute vec2 a_pos;\r\nattribute vec4 a_data;\r\nattribute vec3 a_extra_m;\r\n\r\nuniform mat4 u_matrix;\r\nuniform mediump float u_ratio;\r\nuniform vec2 u_gl_units_to_pixels;\r\nuniform vec4 u_speed_mat;\r\n\r\nvarying vec2 v_normal;\r\nvarying vec2 v_width2;\r\nvarying float v_gamma_scale;\r\nvarying float v_opacity;\r\nvarying float v_discard;\r\n\r\n#pragma minemap: define highp vec4 color\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n#pragma minemap: define mediump float gapwidth\r\n#pragma minemap: define lowp float offset\r\n#pragma minemap: define mediump float width\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n #pragma minemap: initialize mediump float gapwidth\r\n #pragma minemap: initialize lowp float offset\r\n #pragma minemap: initialize mediump float width\r\n\r\n //处理我的附加库\r\n vec3 f_extra_m = vec3(a_extra_m[0] * 3.0 / 255.0,a_extra_m[1], a_extra_m[2]);\r\n float status = f_extra_m[2];\r\n float link_seq = f_extra_m[1];\r\n v_opacity = f_extra_m[0];\r\n\r\n float speed1 = u_speed_mat[0];\r\n float speed2 = u_speed_mat[1];\r\n float speed3 = u_speed_mat[2];\r\n float speed4 = u_speed_mat[3];\r\n\r\n if(status ==1.0){\r\n if(link_seq!=speed1){\r\n v_discard = -100.0;\r\n }else{\r\n v_discard = 100.0;\r\n }\r\n }else if(status == 2.0){\r\n if(link_seq!=speed2){\r\n v_discard = -100.0;\r\n }else{\r\n v_discard = 100.0;\r\n }\r\n }else if(status == 3.0){\r\n if(link_seq!=speed3){\r\n v_discard = -100.0;\r\n }else{\r\n v_discard = 100.0;\r\n }\r\n }else if(status == 4.0){\r\n if(link_seq!=speed4){\r\n v_discard = -100.0;\r\n }else{\r\n v_discard = 100.0;\r\n }\r\n }\r\n\r\n vec2 a_extrude = a_data.xy - 128.0;\r\n float a_direction = mod(a_data.z, 4.0) - 1.0;\r\n\r\n // We store the texture normals in the most insignificant bit\r\n // transform y so that 0 => -1 and 1 => 1\r\n // In the texture normal, x is 0 if the normal points straight up/down and 1 if it's a round cap\r\n // y is 1 if the normal points up, and -1 if it points down\r\n mediump vec2 normal = mod(a_pos, 2.0);\r\n normal.y = sign(normal.y - 0.5);\r\n v_normal = normal;\r\n\r\n\r\n // these transformations used to be applied in the JS and native code bases. \r\n // moved them into the shader for clarity and simplicity. \r\n gapwidth = gapwidth / 2.0;\r\n float halfwidth = width / 2.0;\r\n offset = -1.0 * offset; \r\n\r\n float inset = gapwidth + (gapwidth > 0.0 ? ANTIALIASING : 0.0);\r\n float outset = gapwidth + halfwidth * (gapwidth > 0.0 ? 2.0 : 1.0) + ANTIALIASING;\r\n\r\n // Scale the extrusion vector down to a normal and then up by the line width\r\n // of this vertex.\r\n mediump vec2 dist = outset * a_extrude * scale;\r\n\r\n // Calculate the offset when drawing a line that is to the side of the actual line.\r\n // We do this by creating a vector that points towards the extrude, but rotate\r\n // it when we're drawing round end points (a_direction = -1 or 1) since their\r\n // extrude vector points in another direction.\r\n mediump float u = 0.5 * a_direction;\r\n mediump float t = 1.0 - abs(u);\r\n mediump vec2 offset2 = offset * a_extrude * scale * normal.y * mat2(t, -u, u, t);\r\n\r\n // Remove the texture normal bit to get the position\r\n vec2 pos = floor(a_pos * 0.5);\r\n\r\n vec4 projected_extrude = u_matrix * vec4(dist / u_ratio, 0.0, 0.0);\r\n gl_Position = u_matrix * vec4(pos + offset2 / u_ratio, 0.0, 1.0) + projected_extrude;\r\n\r\n // calculate how much the perspective view squishes or stretches the extrude\r\n float extrude_length_without_perspective = length(dist);\r\n float extrude_length_with_perspective = length(projected_extrude.xy / gl_Position.w * u_gl_units_to_pixels);\r\n v_gamma_scale = extrude_length_without_perspective / extrude_length_with_perspective;\r\n\r\n v_width2 = vec2(outset, inset);\r\n}\r\n"},histogram:{
fragmentSource:"varying vec4 v_color;\r\n#pragma minemap: define lowp float base\r\n#pragma minemap: define lowp float height\r\n#pragma minemap: define highp vec4 color\r\nvarying float v_opacity;\r\nvoid main() {\r\n #pragma minemap: initialize lowp float base\r\n #pragma minemap: initialize lowp float height\r\n #pragma minemap: initialize highp vec4 color\r\n\r\n gl_FragColor = v_color * v_opacity;\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"uniform mat4 u_matrix;\r\nuniform vec3 u_lightcolor;\r\nuniform lowp vec3 u_lightpos;\r\nuniform lowp float u_lightintensity;\r\nuniform float u_is_max_length; // 解决特大高度的柱状图显示问题\r\n\r\nattribute vec2 a_pos;\r\nattribute vec3 a_normal;\r\nattribute float a_edgedistance;\r\n\r\nvarying vec4 v_color;\r\n\r\n#pragma minemap: define lowp float base\r\n#pragma minemap: define lowp float height\r\n\r\n#pragma minemap: define highp vec4 color\r\n\r\nvarying float v_opacity;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float base\r\n #pragma minemap: initialize lowp float height\r\n #pragma minemap: initialize highp vec4 color\r\n\r\n base = max(0.0, base);\r\n height = max(0.0, height);\r\n\r\n float ed = a_edgedistance; // use each attrib in order to not trip a VAO assert\r\n float t = mod(a_normal.x, 2.0);\r\n\r\n gl_Position = u_matrix * vec4(a_pos, t > 0.0 ? ( u_is_max_length == 1.0 ? height * 100.0 : height * 3.0 ) : base * 300.0, 1);\r\n if(t > 0.0){\r\n v_opacity = 1.2;\r\n }else{\r\n v_opacity = 0.1;\r\n }\r\n\r\n // Relative luminance (how dark/bright is the surface color?)\r\n float colorvalue = color.r * 0.2126 + color.g * 0.7152 + color.b * 0.0722;\r\n\r\n v_color = vec4(0.0, 0.0, 0.0, 1.0);\r\n\r\n // Add slight ambient lighting so no extrusions are totally black\r\n vec4 ambientlight = vec4(0.03, 0.03, 0.03, 1.0);\r\n color += ambientlight;\r\n\r\n // Calculate cos(theta), where theta is the angle between surface normal and diffuse light ray\r\n float directional = clamp(dot(a_normal / 16384.0, u_lightpos), 0.0, 1.0);\r\n\r\n // Adjust directional so that\r\n // the range of values for highlight/shading is narrower\r\n // with lower light intensity\r\n // and with lighter/brighter surface colors\r\n directional = mix((1.0 - u_lightintensity), max((1.0 - colorvalue + u_lightintensity), 1.0), directional);\r\n\r\n // Add gradient along z axis of side surfaces\r\n if (a_normal.y != 0.0) {\r\n directional *= clamp((t + base) * pow(height / 150.0, 0.5), mix(0.7, 0.98, 1.0 - u_lightintensity), 1.0);\r\n }\r\n\r\n // Assign final color based on surface + ambient light color, diffuse light directional, and light color\r\n // with lower bounds adjusted to hue of light\r\n // so that shading is tinted with the complementary (opposite) color to the light color\r\n v_color.r += clamp(color.r * directional * u_lightcolor.r, mix(0.0, 0.3, 1.0 - u_lightcolor.r), 1.0);\r\n v_color.g += clamp(color.g * directional * u_lightcolor.g, mix(0.0, 0.3, 1.0 - u_lightcolor.g), 1.0);\r\n v_color.b += clamp(color.b * directional * u_lightcolor.b, mix(0.0, 0.3, 1.0 - u_lightcolor.b), 1.0);\r\n}\r\n"},histogramColor:{fragmentSource:"uniform vec4 u_color_a;\r\nuniform vec4 u_color_b;\r\nuniform vec4 u_color_c;\r\nuniform vec4 u_color_d;\r\nuniform vec4 u_color_e;\r\nuniform float u_max_height;\r\n#pragma minemap: define lowp float base\r\n#pragma minemap: define lowp float height\r\n#pragma minemap: define highp vec4 color\r\nvarying float v_opacity;\r\nvarying float v_height;\r\nvarying float v_directional;\r\nvoid main() {\r\n #pragma minemap: initialize lowp float base\r\n #pragma minemap: initialize lowp float height\r\n #pragma minemap: initialize highp vec4 color\r\n\r\n if (v_height < 0.25 * u_max_height) {\r\n vec4 tmp = u_color_b - u_color_a;\r\n vec4 real = tmp * ((v_height) / 0.25 / u_max_height) + u_color_a;\r\n gl_FragColor = vec4(real.rgb * v_directional, 1.0);\r\n } else if (v_height < 0.5 * u_max_height) {\r\n vec4 tmp = u_color_c - u_color_b;\r\n vec4 real = tmp * ((v_height - 0.25 * u_max_height) / 0.25 / u_max_height) + u_color_b;\r\n gl_FragColor = vec4(real.rgb * v_directional, 1.0);\r\n } else if (v_height < 0.75 * u_max_height) {\r\n vec4 tmp = u_color_d - u_color_c;\r\n vec4 real = tmp * ((v_height - 0.5 * u_max_height) / 0.25 / u_max_height) + u_color_c;\r\n gl_FragColor = vec4(real.rgb * v_directional, 1.0);\r\n } else if (v_height < 0.8 * u_max_height){\r\n vec4 tmp = u_color_e - u_color_d;\r\n vec4 real = tmp * ((v_height - 0.75 * u_max_height) / 0.25 / u_max_height) + u_color_d;\r\n gl_FragColor = vec4(real.rgb * v_directional, 1.0);\r\n } else{\r\n gl_FragColor = vec4(u_color_e.rgb * v_directional, 1.0);\r\n }\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"uniform mat4 u_matrix;\r\nuniform vec3 u_lightcolor;\r\nuniform lowp vec3 u_lightpos;\r\nuniform lowp float u_lightintensity;\r\nuniform float u_is_max_length; // 解决特大高度的柱状图显示问题\r\n\r\nattribute vec2 a_pos;\r\nattribute vec3 a_normal;\r\nattribute float a_edgedistance;\r\n\r\nvarying vec4 v_color;\r\n\r\n#pragma minemap: define lowp float base\r\n#pragma minemap: define lowp float height\r\n\r\n#pragma minemap: define highp vec4 color\r\n\r\nvarying float v_opacity;\r\nvarying float v_height;\r\nvarying float v_directional;\r\nvoid main() {\r\n #pragma minemap: initialize lowp float base\r\n #pragma minemap: initialize lowp float height\r\n #pragma minemap: initialize highp vec4 color\r\n\r\n base = max(0.0, base);\r\n height = max(0.0, height);\r\n\r\n float ed = a_edgedistance; // use each attrib in order to not trip a VAO assert\r\n float t = mod(a_normal.x, 2.0);\r\n\r\n gl_Position = u_matrix * vec4(a_pos, t > 0.0 ? ( u_is_max_length == 1.0 ? height * 100.0 : height * 3.0 ) : base * 300.0, 1);\r\n if(t > 0.0){\r\n v_opacity = 1.2;\r\n v_height = height*3.0;\r\n }else{\r\n v_opacity = 0.1;\r\n v_height = 0.0;\r\n }\r\n\r\n // Relative luminance (how dark/bright is the surface color?)\r\n float colorvalue = color.r * 0.2126 + color.g * 0.7152 + color.b * 0.0722;\r\n\r\n v_color = vec4(0.0, 0.0, 0.0, 1.0);\r\n\r\n // Add slight ambient lighting so no extrusions are totally black\r\n vec4 ambientlight = vec4(0.03, 0.03, 0.03, 1.0);\r\n color += ambientlight;\r\n\r\n // Calculate cos(theta), where theta is the angle between surface normal and diffuse light ray\r\n float directional = clamp(dot(a_normal / 16384.0, u_lightpos), 0.0, 1.0);\r\n\r\n // Adjust directional so that\r\n // the range of values for highlight/shading is narrower\r\n // with lower light intensity\r\n // and with lighter/brighter surface colors\r\n directional = mix((1.0 - u_lightintensity), max((1.0 - colorvalue + u_lightintensity), 1.0), directional);\r\n\r\n // Add gradient along z axis of side surfaces\r\n if (a_normal.y != 0.0) {\r\n directional *= clamp((t + base) * pow(height / 150.0, 0.5), mix(0.7, 0.98, 1.0 - u_lightintensity), 1.0);\r\n }\r\n\r\n // Assign final color based on surface + ambient light color, diffuse light directional, and light color\r\n // with lower bounds adjusted to hue of light\r\n // so that shading is tinted with the complementary (opposite) color to the light color\r\n v_color.r += clamp(color.r * directional * u_lightcolor.r, mix(0.0, 0.3, 1.0 - u_lightcolor.r), 1.0);\r\n v_color.g += clamp(color.g * directional * u_lightcolor.g, mix(0.0, 0.3, 1.0 - u_lightcolor.g), 1.0);\r\n v_color.b += clamp(color.b * directional * u_lightcolor.b, mix(0.0, 0.3, 1.0 - u_lightcolor.b), 1.0);\r\n\r\n v_directional = directional;\r\n}\r\n"},histogramDynamic:{fragmentSource:"varying vec4 v_color;\r\nuniform vec4 u_color_a;\r\nuniform vec4 u_color_b;\r\nuniform vec4 u_color_c;\r\nuniform vec4 u_color_d;\r\nuniform vec4 u_color_e;\r\nuniform float u_max_height;\r\n\r\n#pragma minemap: define lowp float base\r\n#pragma minemap: define lowp float height\r\n#pragma minemap: define highp vec4 color\r\n\r\nvarying float v_opacity;\r\nvarying float v_height;\r\nvarying float v_directional;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float base\r\n #pragma minemap: initialize lowp float height\r\n #pragma minemap: initialize highp vec4 color\r\n\r\n if(v_height < 15.0){\r\n discard;\r\n }else if (v_height < 0.2 * u_max_height) {\r\n vec4 tmp = u_color_b - u_color_a;\r\n vec4 real = tmp * ((v_height) / 0.2 / u_max_height) + u_color_a;\r\n gl_FragColor = vec4(real.rgb * v_directional, 1.0);\r\n } else if (v_height < 0.4 * u_max_height) {\r\n vec4 tmp = u_color_c - u_color_b;\r\n vec4 real = tmp * ((v_height - 0.2 * u_max_height) / 0.2 / u_max_height) + u_color_b;\r\n gl_FragColor = vec4(real.rgb * v_directional, 1.0);\r\n } else if (v_height < 0.6 * u_max_height) {\r\n vec4 tmp = u_color_d - u_color_c;\r\n vec4 real = tmp * ((v_height - 0.4 * u_max_height) / 0.2 / u_max_height) + u_color_c;\r\n gl_FragColor = vec4(real.rgb * v_directional, 1.0);\r\n } else if (v_height < 0.8 * u_max_height){\r\n vec4 tmp = u_color_e - u_color_d;\r\n vec4 real = tmp * ((v_height - 0.6 * u_max_height) / 0.2 / u_max_height) + u_color_d;\r\n gl_FragColor = vec4(real.rgb * v_directional, 1.0);\r\n } else{\r\n gl_FragColor = vec4(u_color_e.rgb * v_directional, 1.0);\r\n }\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"uniform mat4 u_matrix;\r\nuniform vec3 u_lightcolor;\r\nuniform lowp vec3 u_lightpos;\r\nuniform lowp float u_lightintensity;\r\nuniform lowp float u_dyn_count;\r\n\r\nattribute vec2 a_pos;\r\n\r\nattribute vec3 a_normal;\r\nattribute float a_edgedistance;\r\n\r\nvarying vec4 v_color;\r\nvarying float v_opacity;\r\nvarying float v_height;\r\nvarying float v_directional;\r\n\r\n#pragma minemap: define lowp float base\r\n#pragma minemap: define lowp float height\r\n#pragma minemap: define highp vec4 color\r\n#pragma minemap: define lowp vec4 heightArr1\r\n#pragma minemap: define lowp vec4 heightArr2\r\n#pragma minemap: define lowp vec4 heightArr3\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float base\r\n #pragma minemap: initialize lowp float height\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize lowp vec4 heightArr1\r\n #pragma minemap: initialize lowp vec4 heightArr2\r\n #pragma minemap: initialize lowp vec4 heightArr3\r\n\r\n //基本思路,将 u_count / 总数, 奇数为加,偶数为减\r\n\r\n // float loops = mod(floor(u_dyn_count / height), 2.0);\r\n // float _height = 0.0;\r\n // if(loops == 0.0){\r\n // _height = mod(abs(u_dyn_count), abs(height));\r\n // }else{\r\n // _height = abs(height) - mod(abs(u_dyn_count), abs(height));\r\n // }\r\n\r\n float _height = 0.0;\r\n float _num = 0.0;\r\n float _height1 = 0.0;\r\n float _height2 = 0.0;\r\n _num = abs(u_dyn_count) / 500.0;\r\n if(_num < 1.0){\r\n _height1 = abs(height);\r\n _height2 = abs(heightArr1[0])*255.0;\r\n }else if(_num < 2.0){\r\n _height1 = abs(heightArr1[0])*255.0;\r\n _height2 = abs(heightArr1[1])*255.0;\r\n }else if(_num < 3.0){\r\n _height1 = abs(heightArr1[1])*255.0;\r\n _height2 = abs(heightArr1[2])*255.0;\r\n }else if(_num < 4.0){\r\n _height1 = abs(heightArr1[2])*255.0;\r\n _height2 = abs(heightArr1[3])*255.0;\r\n }else if(_num < 5.0){\r\n _height1 = abs(heightArr1[3])*255.0;\r\n _height2 = abs(heightArr2[0])*255.0;\r\n }else if(_num < 6.0){\r\n _height1 = abs(heightArr2[0])*255.0;\r\n _height2 = abs(heightArr2[1])*255.0;\r\n }else if(_num < 7.0){\r\n _height1 = abs(heightArr2[1])*255.0;\r\n _height2 = abs(heightArr2[2])*255.0;\r\n }else if(_num < 8.0){\r\n _height1 = abs(heightArr2[2])*255.0;\r\n _height2 = abs(heightArr2[3])*255.0;\r\n }else if(_num < 9.0){\r\n _height1 = abs(heightArr2[3])*255.0;\r\n _height2 = abs(heightArr3[0])*255.0;\r\n }else if(_num < 10.0){\r\n _height1 = abs(heightArr3[0])*255.0;\r\n _height2 = abs(heightArr3[1])*255.0;\r\n }else if(_num < 11.0){\r\n _height1 = abs(heightArr3[1])*255.0;\r\n _height2 = abs(heightArr3[2])*255.0;\r\n }else if(_num < 12.0){\r\n _height1 = abs(heightArr3[2])*255.0;\r\n _height2 = abs(heightArr3[3])*255.0;\r\n }\r\n\r\n _height = (_height1 + (_height2 - _height1) / 500.0 * mod(abs(u_dyn_count), 500.0)) * 1.0;\r\n\r\n base = max(0.0, base);\r\n // height1 = max(0.0, height1);\r\n\r\n float ed = a_edgedistance; // use each attrib in order to not trip a VAO assert\r\n float t = mod(a_normal.x, 2.0);\r\n\r\n gl_Position = u_matrix * vec4(a_pos, t > 0.0 ? _height * 3.0 : base * 3.0, 1);\r\n\r\n if(t > 0.0){\r\n v_opacity = 1.2;\r\n v_height = _height*3.0;\r\n }else{\r\n v_opacity = 0.1;\r\n v_height = 0.0;\r\n }\r\n\r\n // Relative luminance (how dark/bright is the surface color?)\r\n float colorvalue = color.r * 0.2126 + color.g * 0.7152 + color.b * 0.0722;\r\n\r\n v_color = vec4(0.0, 0.0, 0.0, 1.0);\r\n\r\n // Add slight ambient lighting so no extrusions are totally black\r\n vec4 ambientlight = vec4(0.03, 0.03, 0.03, 1.0);\r\n color += ambientlight;\r\n\r\n // Calculate cos(theta), where theta is the angle between surface normal and diffuse light ray\r\n float directional = clamp(dot(a_normal / 16384.0, u_lightpos), 0.0, 1.0);\r\n\r\n // Adjust directional so that\r\n // the range of values for highlight/shading is narrower\r\n // with lower light intensity\r\n // and with lighter/brighter surface colors\r\n directional = mix((1.0 - u_lightintensity), max((1.0 - colorvalue + u_lightintensity), 1.0), directional);\r\n\r\n // Add gradient along z axis of side surfaces\r\n if (a_normal.y != 0.0) {\r\n directional *= clamp((t + base) * pow(_height / 150.0, 0.5), mix(0.7, 0.98, 1.0 - u_lightintensity), 1.0);\r\n }\r\n\r\n // Assign final color based on surface + ambient light color, diffuse light directional, and light color\r\n // with lower bounds adjusted to hue of light\r\n // so that shading is tinted with the complementary (opposite) color to the light color\r\n v_color.r += clamp(color.r * directional * u_lightcolor.r, mix(0.0, 0.3, 1.0 - u_lightcolor.r), 1.0);\r\n v_color.g += clamp(color.g * directional * u_lightcolor.g, mix(0.0, 0.3, 1.0 - u_lightcolor.g), 1.0);\r\n v_color.b += clamp(color.b * directional * u_lightcolor.b, mix(0.0, 0.3, 1.0 - u_lightcolor.b), 1.0);\r\n\r\n v_directional = directional;\r\n}\r\n"},airline:{fragmentSource:"#pragma minemap: define highp vec4 color\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n\r\nvarying vec2 v_width2;\r\nvarying vec2 v_normal;\r\nvarying float v_gamma_scale;\r\nvarying float _is_discard;\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n if(_is_discard<0.0) discard;\r\n // Calculate the distance of the pixel from the line in pixels.\r\n float dist = length(v_normal) * v_width2.s;\r\n\r\n // Calculate the antialiasing fade factor. This is either when fading in\r\n // the line in case of an offset line (v_width2.t) or when fading out\r\n // (v_width2.s)\r\n float blur2 = (blur + 1.0 / DEVICE_PIXEL_RATIO) * v_gamma_scale;\r\n float alpha = clamp(min(dist - (v_width2.t - blur2), v_width2.s - dist) / blur2, 0.0, 1.0);\r\n\r\n gl_FragColor = color * (alpha * opacity);\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"\r\n\r\n// the distance over which the line edge fades out.\r\n// Retina devices need a smaller distance to avoid aliasing.\r\n#define ANTIALIASING 1.0 / DEVICE_PIXEL_RATIO / 2.0\r\n\r\n// floor(127 / 2) == 63.0\r\n// the maximum allowed miter limit is 2.0 at the moment. the extrude normal is\r\n// stored in a byte (-128..127). we scale regular normals up to length 63, but\r\n// there are also \"special\" normals that have a bigger length (of up to 126 in\r\n// this case).\r\n// #define scale 63.0\r\n#define scale 0.015873016\r\n\r\nattribute vec2 a_pos;\r\nattribute float a_height;\r\nattribute vec4 a_data;\r\nattribute vec2 a_seq; //hack me\r\n\r\nuniform mat4 u_matrix;\r\nuniform mediump float u_ratio;\r\nuniform vec2 u_gl_units_to_pixels;\r\n\r\n//hack me\r\nuniform float u_start;\r\nuniform float u_segments;\r\nuniform float u_discard;\r\n\r\nvarying vec2 v_normal;\r\nvarying vec2 v_width2;\r\nvarying float v_gamma_scale;\r\n\r\nvarying float _is_discard;\r\n\r\n#pragma minemap: define highp vec4 color\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n#pragma minemap: define mediump float gapwidth\r\n#pragma minemap: define lowp float offset\r\n#pragma minemap: define mediump float width\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n #pragma minemap: initialize mediump float gapwidth\r\n #pragma minemap: initialize lowp float offset\r\n #pragma minemap: initialize mediump float width\r\n\r\n float count = mod(u_start,a_seq[1]);\r\n\r\n _is_discard = 100.0;\r\n //hack me\r\n if(u_discard == 1.0){\r\n if((count+u_segments)<=a_seq[1] && (a_seq[0]<(count) || a_seq[0]>(count+u_segments))){\r\n _is_discard = -100.0;\r\n }else if((count+u_segments)>a_seq[1] && (a_seq[0]> (count+u_segments-a_seq[1]) && a_seq[0]<count)){\r\n _is_discard = -100.0;\r\n }\r\n }\r\n\r\n vec2 a_extrude = a_data.xy - 128.0;\r\n float a_direction = mod(a_data.z, 4.0) - 1.0;\r\n\r\n // We store the texture normals in the most insignificant bit\r\n // transform y so that 0 => -1 and 1 => 1\r\n // In the texture normal, x is 0 if the normal points straight up/down and 1 if it's a round cap\r\n // y is 1 if the normal points up, and -1 if it points down\r\n mediump vec2 normal = mod(a_pos, 2.0);\r\n normal.y = sign(normal.y - 0.5);\r\n v_normal = normal;\r\n\r\n\r\n // these transformations used to be applied in the JS and native code bases. \r\n // moved them into the shader for clarity and simplicity. \r\n gapwidth = gapwidth / 2.0;\r\n float halfwidth = width / 2.0;\r\n offset = -1.0 * offset; \r\n\r\n float inset = gapwidth + (gapwidth > 0.0 ? ANTIALIASING : 0.0);\r\n float outset = gapwidth + halfwidth * (gapwidth > 0.0 ? 2.0 : 1.0) + ANTIALIASING;\r\n\r\n // Scale the extrusion vector down to a normal and then up by the line width\r\n // of this vertex.\r\n mediump vec2 dist = outset * a_extrude * scale;\r\n\r\n // Calculate the offset when drawing a line that is to the side of the actual line.\r\n // We do this by creating a vector that points towards the extrude, but rotate\r\n // it when we're drawing round end points (a_direction = -1 or 1) since their\r\n // extrude vector points in another direction.\r\n mediump float u = 0.5 * a_direction;\r\n mediump float t = 1.0 - abs(u);\r\n mediump vec2 offset2 = offset * a_extrude * scale * normal.y * mat2(t, -u, u, t);\r\n\r\n // Remove the texture normal bit to get the position\r\n vec2 pos = floor(a_pos * 0.5);\r\n\r\n vec4 projected_extrude = u_matrix * vec4(dist / u_ratio, 0.0, 0.0);\r\n gl_Position = u_matrix * vec4(pos + offset2 / u_ratio, a_height * 10.0, 1.0) + projected_extrude;\r\n\r\n // calculate how much the perspective view squishes or stretches the extrude\r\n float extrude_length_without_perspective = length(dist);\r\n float extrude_length_with_perspective = length(projected_extrude.xy / gl_Position.w * u_gl_units_to_pixels);\r\n v_gamma_scale = extrude_length_without_perspective / extrude_length_with_perspective;\r\n\r\n v_width2 = vec2(outset, inset);\r\n}\r\n"},tracking:{fragmentSource:"#pragma minemap: define highp vec4 color\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n\r\n//hack me\r\nuniform float u_start;\r\nuniform float u_end;\r\nuniform float u_segments;\r\nuniform float u_reverse;\r\nuniform float u_reserve;\r\n\r\nvarying vec2 v_width2;\r\nvarying vec2 v_normal;\r\nvarying float v_gamma_scale;\r\nvarying float v_seq;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n mediump float drive_opacity = 1.0;\r\n if(u_reserve == 1.0){\r\n if(v_seq>u_end){\r\n discard;\r\n }\r\n }else{\r\n if(v_seq<u_start || v_seq>u_end){\r\n discard;\r\n }\r\n\r\n drive_opacity = (v_seq - u_start) / u_segments;\r\n if(u_reverse == 1.0){\r\n drive_opacity = 1.0 - drive_opacity;\r\n }\r\n }\r\n\r\n // Calculate the distance of the pixel from the line in pixels.\r\n float dist = length(v_normal) * v_width2.s;\r\n\r\n // Calculate the antialiasing fade factor. This is either when fading in\r\n // the line in case of an offset line (v_width2.t) or when fading out\r\n // (v_width2.s)\r\n float blur2 = (blur + 1.0 / DEVICE_PIXEL_RATIO) * v_gamma_scale;\r\n float alpha = clamp(min(dist - (v_width2.t - blur2), v_width2.s - dist) / blur2, 0.0, 1.0);\r\n\r\n vec4 tmpColor = vec4(color.xyz,0.25);\r\n gl_FragColor = tmpColor * (alpha * opacity) * drive_opacity;\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"\r\n\r\n// the distance over which the line edge fades out.\r\n// Retina devices need a smaller distance to avoid aliasing.\r\n#define ANTIALIASING 1.0 / DEVICE_PIXEL_RATIO / 2.0\r\n\r\n// floor(127 / 2) == 63.0\r\n// the maximum allowed miter limit is 2.0 at the moment. the extrude normal is\r\n// stored in a byte (-128..127). we scale regular normals up to length 63, but\r\n// there are also \"special\" normals that have a bigger length (of up to 126 in\r\n// this case).\r\n// #define scale 63.0\r\n#define scale 0.015873016\r\n\r\nattribute vec2 a_pos;\r\nattribute vec4 a_data;\r\nattribute float a_seq; //hack me\r\n\r\nuniform mat4 u_matrix;\r\nuniform mediump float u_ratio;\r\nuniform vec2 u_gl_units_to_pixels;\r\n\r\nvarying vec2 v_normal;\r\nvarying vec2 v_width2;\r\nvarying float v_gamma_scale;\r\nvarying float v_seq;\r\n\r\n#pragma minemap: define highp vec4 color\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n#pragma minemap: define mediump float gapwidth\r\n#pragma minemap: define lowp float offset\r\n#pragma minemap: define mediump float width\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n #pragma minemap: initialize mediump float gapwidth\r\n #pragma minemap: initialize lowp float offset\r\n #pragma minemap: initialize mediump float width\r\n\r\n v_seq = a_seq;\r\n\r\n vec2 a_extrude = a_data.xy - 128.0;\r\n float a_direction = mod(a_data.z, 4.0) - 1.0;\r\n\r\n // We store the texture normals in the most insignificant bit\r\n // transform y so that 0 => -1 and 1 => 1\r\n // In the texture normal, x is 0 if the normal points straight up/down and 1 if it's a round cap\r\n // y is 1 if the normal points up, and -1 if it points down\r\n mediump vec2 normal = mod(a_pos, 2.0);\r\n normal.y = sign(normal.y - 0.5);\r\n v_normal = normal;\r\n\r\n\r\n // these transformations used to be applied in the JS and native code bases. \r\n // moved them into the shader for clarity and simplicity. \r\n gapwidth = gapwidth / 2.0;\r\n float halfwidth = width / 2.0;\r\n offset = -1.0 * offset; \r\n\r\n float inset = gapwidth + (gapwidth > 0.0 ? ANTIALIASING : 0.0);\r\n float outset = gapwidth + halfwidth * (gapwidth > 0.0 ? 2.0 : 1.0) + ANTIALIASING;\r\n\r\n // Scale the extrusion vector down to a normal and then up by the line width\r\n // of this vertex.\r\n mediump vec2 dist = outset * a_extrude * scale;\r\n\r\n // Calculate the offset when drawing a line that is to the side of the actual line.\r\n // We do this by creating a vector that points towards the extrude, but rotate\r\n // it when we're drawing round end points (a_direction = -1 or 1) since their\r\n // extrude vector points in another direction.\r\n mediump float u = 0.5 * a_direction;\r\n mediump float t = 1.0 - abs(u);\r\n mediump vec2 offset2 = offset * a_extrude * scale * normal.y * mat2(t, -u, u, t);\r\n\r\n // Remove the texture normal bit to get the position\r\n vec2 pos = floor(a_pos * 0.5);\r\n\r\n vec4 projected_extrude = u_matrix * vec4(dist / u_ratio, 0.0, 0.0);\r\n gl_Position = u_matrix * vec4(pos + offset2 / u_ratio, 0.0, 1.0) + projected_extrude;\r\n\r\n // calculate how much the perspective view squishes or stretches the extrude\r\n float extrude_length_without_perspective = length(dist);\r\n float extrude_length_with_perspective = length(projected_extrude.xy / gl_Position.w * u_gl_units_to_pixels);\r\n v_gamma_scale = extrude_length_without_perspective / extrude_length_with_perspective;\r\n\r\n v_width2 = vec2(outset, inset);\r\n}\r\n"},symtrackingIcon:{fragmentSource:"uniform sampler2D u_texture;\r\nuniform sampler2D u_fadetexture;\r\n\r\n#pragma minemap: define lowp float opacity\r\n\r\nvarying vec2 v_tex;\r\nvarying vec2 v_fade_tex;\r\nvarying float v_seq;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n if(v_seq<0.0){\r\n discard;\r\n }\r\n\r\n lowp float alpha = texture2D(u_fadetexture, v_fade_tex).a * opacity;\r\n gl_FragColor = texture2D(u_texture, v_tex) * alpha;\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"const float PI = 3.141592653589793;\r\n\r\nattribute vec4 a_pos_offset;\r\nattribute vec4 a_data;\r\nattribute vec3 a_projected_pos;\r\nattribute float a_seq;\r\n\r\nuniform bool u_is_size_zoom_constant;\r\nuniform bool u_is_size_feature_constant;\r\nuniform highp float u_size_t; // used to interpolate between zoom stops when size is a composite function\r\nuniform highp float u_size; // used when size is both zoom and feature constant\r\nuniform highp float u_camera_to_center_distance;\r\nuniform highp float u_pitch;\r\nuniform bool u_rotate_symbol;\r\nuniform highp float u_aspect_ratio;\r\nuniform highp float u_collision_y_stretch;\r\n\r\n#pragma minemap: define lowp float opacity\r\n\r\nuniform mat4 u_matrix;\r\nuniform mat4 u_label_plane_matrix;\r\nuniform mat4 u_gl_coord_matrix;\r\n\r\nuniform bool u_is_text;\r\nuniform bool u_pitch_with_map;\r\n\r\nuniform vec2 u_texsize;\r\n\r\nuniform float u_seq;\r\n\r\nvarying vec2 v_tex;\r\nvarying vec2 v_fade_tex;\r\nvarying float v_seq;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n if(a_seq!=u_seq){\r\n v_seq = -100.0;\r\n }else{\r\n v_seq = 100.0;\r\n }\r\n\r\n vec2 a_pos = a_pos_offset.xy;\r\n vec2 a_offset = a_pos_offset.zw;\r\n\r\n vec2 a_tex = a_data.xy;\r\n vec2 a_size = a_data.zw;\r\n\r\n highp vec2 angle_labelminzoom = unpack_float(a_projected_pos[2]);\r\n highp float segment_angle = -angle_labelminzoom[0] / 255.0 * 2.0 * PI;\r\n mediump float a_labelminzoom = angle_labelminzoom[1];\r\n\r\n float size;\r\n if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {\r\n size = mix(a_size[0], a_size[1], u_size_t) / 10.0;\r\n } else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {\r\n size = a_size[0] / 10.0;\r\n } else if (!u_is_size_zoom_constant && u_is_size_feature_constant) {\r\n size = u_size;\r\n } else {\r\n size = u_size;\r\n }\r\n\r\n vec4 projectedPoint = u_matrix * vec4(a_pos, 0, 1);\r\n highp float camera_to_anchor_distance = projectedPoint.w;\r\n // See comments in symbol_sdf.vertex\r\n highp float distance_ratio = u_pitch_with_map ?\r\n camera_to_anchor_distance / u_camera_to_center_distance :\r\n u_camera_to_center_distance / camera_to_anchor_distance;\r\n highp float perspective_ratio = 0.5 + 0.5 * distance_ratio;\r\n\r\n size *= perspective_ratio;\r\n\r\n float fontScale = u_is_text ? size / 24.0 : size;\r\n\r\n highp float symbol_rotation = 0.0;\r\n if (u_rotate_symbol) {\r\n // See comments in symbol_sdf.vertex\r\n vec4 offsetProjectedPoint = u_matrix * vec4(a_pos + vec2(1, 0), 0, 1);\r\n\r\n vec2 a = projectedPoint.xy / projectedPoint.w;\r\n vec2 b = offsetProjectedPoint.xy / offsetProjectedPoint.w;\r\n\r\n symbol_rotation = atan((b.y - a.y) / u_aspect_ratio, b.x - a.x);\r\n }\r\n\r\n highp float angle_sin = sin(segment_angle + symbol_rotation);\r\n highp float angle_cos = cos(segment_angle + symbol_rotation);\r\n mat2 rotation_matrix = mat2(angle_cos, -1.0 * angle_sin, angle_sin, angle_cos);\r\n\r\n vec4 projected_pos = u_label_plane_matrix * vec4(a_projected_pos.xy, 0.0, 1.0);\r\n gl_Position = u_gl_coord_matrix * vec4(projected_pos.xy / projected_pos.w + rotation_matrix * (a_offset / 64.0 * fontScale), 0.0, 1.0);\r\n\r\n v_tex = a_tex / u_texsize;\r\n // See comments in symbol_sdf.vertex\r\n highp float incidence_stretch = camera_to_anchor_distance / (u_camera_to_center_distance * cos(u_pitch));\r\n highp float collision_adjustment = max(1.0, incidence_stretch / u_collision_y_stretch);\r\n\r\n highp float collision_perspective_ratio = 1.0 + 0.5*((camera_to_anchor_distance / u_camera_to_center_distance) - 1.0);\r\n highp float perspective_zoom_adjust = floor(log2(collision_perspective_ratio * collision_adjustment) * 10.0);\r\n v_fade_tex = vec2((a_labelminzoom + perspective_zoom_adjust) / 255.0, 0.0);\r\n}\r\n"},symtrackingSDF:{
fragmentSource:"#define SDF_PX 8.0\r\n#define EDGE_GAMMA 0.105/DEVICE_PIXEL_RATIO\r\n\r\nuniform bool u_is_halo;\r\n#pragma minemap: define highp vec4 fill_color\r\n#pragma minemap: define highp vec4 halo_color\r\n#pragma minemap: define lowp float opacity\r\n#pragma minemap: define lowp float halo_width\r\n#pragma minemap: define lowp float halo_blur\r\n\r\nuniform sampler2D u_texture;\r\nuniform sampler2D u_fadetexture;\r\nuniform highp float u_gamma_scale;\r\nuniform bool u_is_text;\r\n\r\nvarying vec4 v_data0;\r\nvarying vec2 v_data1;\r\nvarying float v_seq;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 fill_color\r\n #pragma minemap: initialize highp vec4 halo_color\r\n #pragma minemap: initialize lowp float opacity\r\n #pragma minemap: initialize lowp float halo_width\r\n #pragma minemap: initialize lowp float halo_blur\r\n\r\n if(v_seq<0.0){\r\n discard;\r\n }\r\n\r\n vec2 tex = v_data0.xy;\r\n vec2 fade_tex = v_data0.zw;\r\n float gamma_scale = v_data1.x;\r\n float size = v_data1.y;\r\n\r\n float fontScale = u_is_text ? size / 24.0 : size;\r\n\r\n lowp vec4 color = fill_color;\r\n highp float gamma = EDGE_GAMMA / (fontScale * u_gamma_scale);\r\n lowp float buff = (256.0 - 64.0) / 256.0;\r\n if (u_is_halo) {\r\n color = halo_color;\r\n gamma = (halo_blur * 1.19 / SDF_PX + EDGE_GAMMA) / (fontScale * u_gamma_scale);\r\n buff = (6.0 - halo_width / fontScale) / SDF_PX;\r\n }\r\n\r\n lowp float dist = texture2D(u_texture, tex).a;\r\n lowp float fade_alpha = texture2D(u_fadetexture, fade_tex).a;\r\n highp float gamma_scaled = gamma * gamma_scale;\r\n highp float alpha = smoothstep(buff - gamma_scaled, buff + gamma_scaled, dist) * fade_alpha;\r\n\r\n gl_FragColor = color * (alpha * opacity);\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"const float PI = 3.141592653589793;\r\n\r\nattribute vec4 a_pos_offset;\r\nattribute vec4 a_data;\r\nattribute vec3 a_projected_pos;\r\nattribute float a_seq;\r\n\r\n// contents of a_size vary based on the type of property value\r\n// used for {text,icon}-size.\r\n// For constants, a_size is disabled.\r\n// For source functions, we bind only one value per vertex: the value of {text,icon}-size evaluated for the current feature.\r\n// For composite functions:\r\n// [ text-size(lowerZoomStop, feature),\r\n// text-size(upperZoomStop, feature) ]\r\nuniform bool u_is_size_zoom_constant;\r\nuniform bool u_is_size_feature_constant;\r\nuniform highp float u_size_t; // used to interpolate between zoom stops when size is a composite function\r\nuniform highp float u_size; // used when size is both zoom and feature constant\r\n\r\n#pragma minemap: define highp vec4 fill_color\r\n#pragma minemap: define highp vec4 halo_color\r\n#pragma minemap: define lowp float opacity\r\n#pragma minemap: define lowp float halo_width\r\n#pragma minemap: define lowp float halo_blur\r\n\r\nuniform mat4 u_matrix;\r\nuniform mat4 u_label_plane_matrix;\r\nuniform mat4 u_gl_coord_matrix;\r\n\r\nuniform bool u_is_text;\r\nuniform bool u_pitch_with_map;\r\nuniform highp float u_pitch;\r\nuniform bool u_rotate_symbol;\r\nuniform highp float u_aspect_ratio;\r\nuniform highp float u_camera_to_center_distance;\r\nuniform highp float u_collision_y_stretch;\r\n\r\nuniform vec2 u_texsize;\r\n\r\nuniform float u_seq;\r\n\r\nvarying vec4 v_data0;\r\nvarying vec2 v_data1;\r\nvarying float v_seq;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 fill_color\r\n #pragma minemap: initialize highp vec4 halo_color\r\n #pragma minemap: initialize lowp float opacity\r\n #pragma minemap: initialize lowp float halo_width\r\n #pragma minemap: initialize lowp float halo_blur\r\n\r\n if(a_seq!=u_seq){\r\n v_seq = -100.0;\r\n }else{\r\n v_seq = 100.0;\r\n }\r\n\r\n vec2 a_pos = a_pos_offset.xy;\r\n vec2 a_offset = a_pos_offset.zw;\r\n\r\n vec2 a_tex = a_data.xy;\r\n vec2 a_size = a_data.zw;\r\n\r\n highp vec2 angle_labelminzoom = unpack_float(a_projected_pos[2]);\r\n highp float segment_angle = -angle_labelminzoom[0] / 255.0 * 2.0 * PI;\r\n mediump float a_labelminzoom = angle_labelminzoom[1];\r\n float size;\r\n\r\n if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {\r\n size = mix(a_size[0], a_size[1], u_size_t) / 10.0;\r\n } else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {\r\n size = a_size[0] / 10.0;\r\n } else if (!u_is_size_zoom_constant && u_is_size_feature_constant) {\r\n size = u_size;\r\n } else {\r\n size = u_size;\r\n }\r\n\r\n vec4 projectedPoint = u_matrix * vec4(a_pos, 0, 1);\r\n highp float camera_to_anchor_distance = projectedPoint.w;\r\n // If the label is pitched with the map, layout is done in pitched space,\r\n // which makes labels in the distance smaller relative to viewport space.\r\n // We counteract part of that effect by multiplying by the perspective ratio.\r\n // If the label isn't pitched with the map, we do layout in viewport space,\r\n // which makes labels in the distance larger relative to the features around\r\n // them. We counteract part of that effect by dividing by the perspective ratio.\r\n highp float distance_ratio = u_pitch_with_map ?\r\n camera_to_anchor_distance / u_camera_to_center_distance :\r\n u_camera_to_center_distance / camera_to_anchor_distance;\r\n highp float perspective_ratio = 0.5 + 0.5 * distance_ratio;\r\n\r\n size *= perspective_ratio;\r\n\r\n float fontScale = u_is_text ? size / 24.0 : size;\r\n\r\n highp float symbol_rotation = 0.0;\r\n if (u_rotate_symbol) {\r\n // Point labels with 'rotation-alignment: map' are horizontal with respect to tile units\r\n // To figure out that angle in projected space, we draw a short horizontal line in tile\r\n // space, project it, and measure its angle in projected space.\r\n vec4 offsetProjectedPoint = u_matrix * vec4(a_pos + vec2(1, 0), 0, 1);\r\n\r\n vec2 a = projectedPoint.xy / projectedPoint.w;\r\n vec2 b = offsetProjectedPoint.xy / offsetProjectedPoint.w;\r\n\r\n symbol_rotation = atan((b.y - a.y) / u_aspect_ratio, b.x - a.x);\r\n }\r\n\r\n highp float angle_sin = sin(segment_angle + symbol_rotation);\r\n highp float angle_cos = cos(segment_angle + symbol_rotation);\r\n mat2 rotation_matrix = mat2(angle_cos, -1.0 * angle_sin, angle_sin, angle_cos);\r\n\r\n vec4 projected_pos = u_label_plane_matrix * vec4(a_projected_pos.xy, 0.0, 1.0);\r\n gl_Position = u_gl_coord_matrix * vec4(projected_pos.xy / projected_pos.w + rotation_matrix * (a_offset / 64.0 * fontScale), 0.0, 1.0);\r\n float gamma_scale = gl_Position.w;\r\n\r\n vec2 tex = a_tex / u_texsize;\r\n // incidence_stretch is the ratio of how much y space a label takes up on a tile while drawn perpendicular to the viewport vs\r\n // how much space it would take up if it were drawn flat on the tile\r\n // Using law of sines, camera_to_anchor/sin(ground_angle) = camera_to_center/sin(incidence_angle)\r\n // sin(incidence_angle) = 1/incidence_stretch\r\n // Incidence angle 90 -> head on, sin(incidence_angle) = 1, no incidence stretch\r\n // Incidence angle 1 -> very oblique, sin(incidence_angle) =~ 0, lots of incidence stretch\r\n // ground_angle = u_pitch + PI/2 -> sin(ground_angle) = cos(u_pitch)\r\n // This 2D calculation is only exactly correct when gl_Position.x is in the center of the viewport,\r\n // but it's a close enough approximation for our purposes\r\n highp float incidence_stretch = camera_to_anchor_distance / (u_camera_to_center_distance * cos(u_pitch));\r\n // incidence_stretch only applies to the y-axis, but without re-calculating the collision tile, we can't\r\n // adjust the size of only one axis. So, we do a crude approximation at placement time to get the aspect ratio\r\n // about right, and then do the rest of the adjustment here: there will be some extra padding on the x-axis,\r\n // but hopefully not too much.\r\n // Never make the adjustment less than 1.0: instead of allowing collisions on the x-axis, be conservative on\r\n // the y-axis.\r\n highp float collision_adjustment = max(1.0, incidence_stretch / u_collision_y_stretch);\r\n\r\n // Floor to 1/10th zoom to dodge precision issues that can cause partially hidden labels\r\n highp float collision_perspective_ratio = 1.0 + 0.5*((camera_to_anchor_distance / u_camera_to_center_distance) - 1.0);\r\n highp float perspective_zoom_adjust = floor(log2(collision_perspective_ratio * collision_adjustment) * 10.0);\r\n vec2 fade_tex = vec2((a_labelminzoom + perspective_zoom_adjust) / 255.0, 0.0);\r\n\r\n v_data0 = vec4(tex.x, tex.y, fade_tex.x, fade_tex.y);\r\n v_data1 = vec2(gamma_scale, size);\r\n}\r\n"},dynamicLine:{fragmentSource:"#pragma minemap: define highp vec4 color\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n\r\nuniform float u_count;\r\nuniform float u_segments;\r\n\r\nvarying vec2 v_width2;\r\nvarying vec2 v_normal;\r\nvarying float v_gamma_scale;\r\n\r\nvarying float v_seq;\r\nvarying vec2 v_info;\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n\r\n float total_count = v_info[0];\r\n float offset_count = v_info[1];\r\n // 不知道为什么一定要把v_seq减2才能匹配上,不理解\r\n float actualSeq = v_seq - 2.0;\r\n float actualCount = u_count + offset_count;\r\n float quotient = floor(actualCount / (total_count + u_segments));\r\n float mod1 = mod(quotient, 2.0);\r\n float count = mod(actualCount, total_count + u_segments);\r\n if(mod1 != 0.0){\r\n count = total_count + u_segments - count;\r\n }\r\n\r\n float start = count - u_segments;\r\n float end = count;\r\n\r\n if(actualSeq<start || actualSeq>end){\r\n discard;\r\n }\r\n\r\n mediump float drive_opacity = (actualSeq - start) / u_segments;\r\n if(mod1 != 0.0){\r\n drive_opacity = 1.0 - drive_opacity;\r\n }\r\n\r\n // Calculate the distance of the pixel from the line in pixels.\r\n float dist = length(v_normal) * v_width2.s;\r\n\r\n // Calculate the antialiasing fade factor. This is either when fading in\r\n // the line in case of an offset line (v_width2.t) or when fading out\r\n // (v_width2.s)\r\n float blur2 = (blur + 1.0 / DEVICE_PIXEL_RATIO) * v_gamma_scale;\r\n float alpha = clamp(min(dist - (v_width2.t - blur2), v_width2.s - dist) / blur2, 0.0, 1.0);\r\n\r\n vec4 tmpColor = vec4(color.xyz, 0.25);\r\n gl_FragColor = tmpColor * (alpha * opacity) * drive_opacity;\r\n\r\n#ifdef OVERDRAW_INSPECTOR\r\n gl_FragColor = vec4(1.0);\r\n#endif\r\n}\r\n",vertexSource:"\r\n\r\n// the distance over which the line edge fades out.\r\n// Retina devices need a smaller distance to avoid aliasing.\r\n#define ANTIALIASING 1.0 / DEVICE_PIXEL_RATIO / 2.0\r\n\r\n// floor(127 / 2) == 63.0\r\n// the maximum allowed miter limit is 2.0 at the moment. the extrude normal is\r\n// stored in a byte (-128..127). we scale regular normals up to length 63, but\r\n// there are also \"special\" normals that have a bigger length (of up to 126 in\r\n// this case).\r\n// #define scale 63.0\r\n#define scale 0.015873016\r\n\r\nattribute vec2 a_pos;\r\nattribute vec4 a_data;\r\nattribute float a_seq;\r\nattribute vec2 a_info;\r\n\r\nuniform mat4 u_matrix;\r\nuniform mediump float u_ratio;\r\nuniform vec2 u_gl_units_to_pixels;\r\n\r\nvarying vec2 v_normal;\r\nvarying vec2 v_width2;\r\nvarying float v_gamma_scale;\r\n\r\nvarying float v_seq;\r\nvarying vec2 v_info;\r\n\r\n#pragma minemap: define highp vec4 color\r\n#pragma minemap: define lowp float blur\r\n#pragma minemap: define lowp float opacity\r\n#pragma minemap: define mediump float gapwidth\r\n#pragma minemap: define lowp float offset\r\n#pragma minemap: define mediump float width\r\n\r\nvoid main() {\r\n #pragma minemap: initialize highp vec4 color\r\n #pragma minemap: initialize lowp float blur\r\n #pragma minemap: initialize lowp float opacity\r\n #pragma minemap: initialize mediump float gapwidth\r\n #pragma minemap: initialize lowp float offset\r\n #pragma minemap: initialize mediump float width\r\n\r\n v_seq = a_seq;\r\n v_info = a_info;\r\n\r\n vec2 a_extrude = a_data.xy - 128.0;\r\n float a_direction = mod(a_data.z, 4.0) - 1.0;\r\n\r\n // We store the texture normals in the most insignificant bit\r\n // transform y so that 0 => -1 and 1 => 1\r\n // In the texture normal, x is 0 if the normal points straight up/down and 1 if it's a round cap\r\n // y is 1 if the normal points up, and -1 if it points down\r\n mediump vec2 normal = mod(a_pos, 2.0);\r\n normal.y = sign(normal.y - 0.5);\r\n v_normal = normal;\r\n\r\n\r\n // these transformations used to be applied in the JS and native code bases. \r\n // moved them into the shader for clarity and simplicity. \r\n gapwidth = gapwidth / 2.0;\r\n float halfwidth = width / 2.0;\r\n offset = -1.0 * offset; \r\n\r\n float inset = gapwidth + (gapwidth > 0.0 ? ANTIALIASING : 0.0);\r\n float outset = gapwidth + halfwidth * (gapwidth > 0.0 ? 2.0 : 1.0) + ANTIALIASING;\r\n\r\n // Scale the extrusion vector down to a normal and then up by the line width\r\n // of this vertex.\r\n mediump vec2 dist = outset * a_extrude * scale;\r\n\r\n // Calculate the offset when drawing a line that is to the side of the actual line.\r\n // We do this by creating a vector that points towards the extrude, but rotate\r\n // it when we're drawing round end points (a_direction = -1 or 1) since their\r\n // extrude vector points in another direction.\r\n mediump float u = 0.5 * a_direction;\r\n mediump float t = 1.0 - abs(u);\r\n mediump vec2 offset2 = offset * a_extrude * scale * normal.y * mat2(t, -u, u, t);\r\n\r\n // Remove the texture normal bit to get the position\r\n vec2 pos = floor(a_pos * 0.5);\r\n\r\n vec4 projected_extrude = u_matrix * vec4(dist / u_ratio, 0.0, 0.0);\r\n gl_Position = u_matrix * vec4(pos + offset2 / u_ratio, 0.0, 1.0) + projected_extrude;\r\n\r\n // calculate how much the perspective view squishes or stretches the extrude\r\n float extrude_length_without_perspective = length(dist);\r\n float extrude_length_with_perspective = length(projected_extrude.xy / gl_Position.w * u_gl_units_to_pixels);\r\n v_gamma_scale = extrude_length_without_perspective / extrude_length_with_perspective;\r\n\r\n v_width2 = vec2(outset, inset);\r\n}\r\n"}};var re=/#pragma minemap: ([\w]+) ([\w]+) ([\w]+) ([\w]+)/g,loop=function(e){var r=module.exports[e],n={};r.fragmentSource=r.fragmentSource.replace(re,function(e,r,a,t,i){return n[i]=!0,"define"===r?"\n#ifndef HAS_UNIFORM_u_"+i+"\nvarying "+a+" "+t+" "+i+";\n#else\nuniform "+a+" "+t+" u_"+i+";\n#endif\n":"initialize"===r?"\n#ifdef HAS_UNIFORM_u_"+i+"\n "+a+" "+t+" "+i+" = u_"+i+";\n#endif\n":void 0}),r.vertexSource=r.vertexSource.replace(re,function(e,r,a,t,i){var o="float"===t?"vec2":"vec4";if(n[i]){if("define"===r)return"\n#ifndef HAS_UNIFORM_u_"+i+"\nuniform lowp float a_"+i+"_t;\nattribute "+a+" "+o+" a_"+i+";\nvarying "+a+" "+t+" "+i+";\n#else\nuniform "+a+" "+t+" u_"+i+";\n#endif\n";if("initialize"===r)return"\n#ifndef HAS_UNIFORM_u_"+i+"\n "+i+" = unpack_mix_"+o+"(a_"+i+", a_"+i+"_t);\n#else\n "+a+" "+t+" "+i+" = u_"+i+";\n#endif\n"}else{if("define"===r)return"\n#ifndef HAS_UNIFORM_u_"+i+"\nuniform lowp float a_"+i+"_t;\nattribute "+a+" "+o+" a_"+i+";\n#else\nuniform "+a+" "+t+" u_"+i+";\n#endif\n";if("initialize"===r)return"\n#ifndef HAS_UNIFORM_u_"+i+"\n "+a+" "+t+" "+i+" = unpack_mix_"+o+"(a_"+i+", a_"+i+"_t);\n#else\n "+a+" "+t+" "+i+" = u_"+i+";\n#endif\n"}})};for(var programName in module.exports)loop(programName);
},{}],110:[function(_dereq_,module,exports){
"use strict";var ImageSource=_dereq_("./image_source"),window=_dereq_("../util/window"),CanvasSource=function(t){function i(i,a,s,n){t.call(this,i,a,s,n),this.options=a,this.animate=void 0===a.animate||a.animate}return t&&(i.__proto__=t),i.prototype=Object.create(t&&t.prototype),i.prototype.constructor=i,i.prototype.load=function(){if(this.canvas=this.canvas||window.document.getElementById(this.options.canvas),this.width=this.canvas.width,this.height=this.canvas.height,this._hasInvalidDimensions())return this.fire("error",new Error("Canvas dimensions cannot be less than or equal to zero."));var t;this.play=function(){t=this.map.style.animationLoop.set(1/0),this.map._rerender()},this.pause=function(){this.map.style.animationLoop.cancel(t)},this._finishLoading()},i.prototype.getCanvas=function(){return this.canvas},i.prototype.onAdd=function(t){this.map||(this.map=t,this.load(),this.canvas&&this.animate&&this.play())},i.prototype.prepare=function(){var t=!1;this.canvas.width!==this.width&&(this.width=this.canvas.width,t=!0),this.canvas.height!==this.height&&(this.height=this.canvas.height,t=!0),this._hasInvalidDimensions()||0!==Object.keys(this.tiles).length&&this._prepareImage(this.map.painter.gl,this.canvas,t)},i.prototype.serialize=function(){return{type:"canvas",canvas:this.canvas,coordinates:this.coordinates}},i.prototype._hasInvalidDimensions=function(){for(var t=this,i=0,a=[t.canvas.width,t.canvas.height];i<a.length;i+=1){var s=a[i];if(isNaN(s)||s<=0)return!0}return!1},i}(ImageSource);module.exports=CanvasSource;
},{"../util/window":224,"./image_source":114}],111:[function(_dereq_,module,exports){
"use strict";function resolveURL(t){var e=window.document.createElement("a");return e.href=t,e.href}var Evented=_dereq_("../util/evented"),util=_dereq_("../util/util"),window=_dereq_("../util/window"),EXTENT=_dereq_("../data/extent"),ResourceType=_dereq_("../util/ajax").ResourceType,GeoJSONSource=function(t){function e(e,o,r,i){t.call(this),this.id=e,this.type="geojson",this.minzoom=0,this.maxzoom=18,this.tileSize=512,this.isTileClipped=!0,this.reparseOverscaled=!0,this.dispatcher=r,this.setEventedParent(i),this._data=o.data,this._options=util.extend({},o),void 0!==o.maxzoom&&(this.maxzoom=o.maxzoom),o.type&&(this.type=o.type);var a=EXTENT/this.tileSize;this.workerOptions=util.extend({source:this.id,cluster:o.cluster||!1,geojsonVtOptions:{buffer:(void 0!==o.buffer?o.buffer:128)*a,tolerance:(void 0!==o.tolerance?o.tolerance:.375)*a,extent:EXTENT,maxZoom:this.maxzoom},superclusterOptions:{maxZoom:void 0!==o.clusterMaxZoom?Math.min(o.clusterMaxZoom,this.maxzoom-1):this.maxzoom-1,extent:EXTENT,radius:(o.clusterRadius||50)*a,log:!1}},o.workerOptions)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.load=function(){var t=this;this.fire("dataloading",{dataType:"source"}),this._updateWorkerData(function(e){if(e)return void t.fire("error",{error:e});t.fire("data",{dataType:"source",sourceDataType:"metadata"})})},e.prototype.onAdd=function(t){this.map=t,this.load()},e.prototype.setData=function(t){var e=this;return this._data=t,this.fire("dataloading",{dataType:"source"}),this._updateWorkerData(function(t){if(t)return e.fire("error",{error:t});e.fire("data",{dataType:"source",sourceDataType:"content"})}),this},e.prototype._updateWorkerData=function(t){var e=this,o=util.extend({},this.workerOptions),r=this._data;"string"==typeof r?o.request=this.map._transformRequest(resolveURL(r),ResourceType.Source):o.data=JSON.stringify(r),this.workerID=this.dispatcher.send(this.type+".loadData",o,function(o){e._loaded=!0,t(o)},this.workerID)},e.prototype.loadTile=function(t,e){var o=this,r=t.workerID&&"expired"!==t.state?"reloadTile":"loadTile",i={type:this.type,uid:t.uid,coord:t.coord,zoom:t.coord.z,maxZoom:this.maxzoom,tileSize:this.tileSize,source:this.id,overscaling:t.coord.z>this.maxzoom?Math.pow(2,t.coord.z-this.maxzoom):1,angle:this.map.transform.angle,pitch:this.map.transform.pitch,cameraToCenterDistance:this.map.transform.cameraToCenterDistance,cameraToTileDistance:this.map.transform.cameraToTileDistance(t),showCollisionBoxes:this.map.showCollisionBoxes};t.workerID=this.dispatcher.send(r,i,function(r,i){if(t.unloadVectorData(),!t.aborted)return r?e(r):(t.loadVectorData(i,o.map.painter),t.redoWhenDone&&(t.redoWhenDone=!1,t.redoPlacement(o)),e(null))},this.workerID)},e.prototype.abortTile=function(t){t.aborted=!0},e.prototype.unloadTile=function(t){t.unloadVectorData(),this.dispatcher.send("removeTile",{uid:t.uid,type:this.type,source:this.id},function(){},t.workerID)},e.prototype.onRemove=function(){this.dispatcher.broadcast("removeSource",{type:this.type,source:this.id},function(){})},e.prototype.serialize=function(){return util.extend({},this._options,{type:this.type,data:this._data})},e}(Evented);module.exports=GeoJSONSource;
},{"../data/extent":75,"../util/ajax":221,"../util/evented":231,"../util/util":247,"../util/window":224}],112:[function(_dereq_,module,exports){
"use strict";function loadGeoJSONTile(e,r){var t=e.source,o=e.coord;if(!this._geoJSONIndexes[t])return r(null,null);var n=this._geoJSONIndexes[t].getTile(Math.min(o.z,e.maxZoom),o.x,o.y);if(!n)return r(null,null);var u=new GeoJSONWrapper(n.features),i=vtpbf(u);0===i.byteOffset&&i.byteLength===i.buffer.byteLength||(i=new Uint8Array(i)),r(null,{vectorTile:u,rawData:i.buffer})}var ajax=_dereq_("../util/ajax"),rewind=_dereq_("geojson-rewind"),GeoJSONWrapper=_dereq_("./geojson_wrapper"),vtpbf=_dereq_("vt-pbf"),supercluster=_dereq_("supercluster"),geojsonvt=_dereq_("geojson-vt"),VectorTileWorkerSource=_dereq_("./vector_tile_worker_source"),GeoJSONWorkerSource=function(e){function r(r,t,o){e.call(this,r,t,loadGeoJSONTile),o&&(this.loadGeoJSON=o),this._geoJSONIndexes={}}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.loadData=function(e,r){var t=this;this.loadGeoJSON(e,function(o,n){if(o||!n)return r(o);if("object"!=typeof n)return r(new Error("Input data is not a valid GeoJSON object."));rewind(n,!0);try{t._geoJSONIndexes[e.source]=e.cluster?supercluster(e.superclusterOptions).load(n.features):geojsonvt(n,e.geojsonVtOptions)}catch(o){return r(o)}t.loaded[e.source]={},r(null)})},r.prototype.reloadTile=function(r,t){var o=this.loaded[r.source],n=r.uid;return o&&o[n]?e.prototype.reloadTile.call(this,r,t):this.loadTile(r,t)},r.prototype.loadGeoJSON=function(e,r){if(e.request)ajax.getJSON(e.request,r);else{if("string"!=typeof e.data)return r(new Error("Input data is not a valid GeoJSON object."));try{return r(null,JSON.parse(e.data))}catch(e){return r(new Error("Input data is not a valid GeoJSON object."))}}},r.prototype.removeSource=function(e){this._geoJSONIndexes[e.source]&&delete this._geoJSONIndexes[e.source]},r}(VectorTileWorkerSource);module.exports=GeoJSONWorkerSource;
},{"../util/ajax":221,"./geojson_wrapper":113,"./vector_tile_worker_source":127,"geojson-rewind":11,"geojson-vt":15,"supercluster":38,"vt-pbf":43}],113:[function(_dereq_,module,exports){
"use strict";var Point=_dereq_("../@minemap/point-geometry"),toGeoJSON=_dereq_("../@minemap/vector-tile").VectorTileFeature.prototype.toGeoJSON,EXTENT=_dereq_("../data/extent"),FeatureWrapper=function(e){var t=this;if(this.type=e.type,1===e.type){this.rawGeometry=[];for(var r=0;r<e.geometry.length;r++)t.rawGeometry.push([e.geometry[r]])}else this.rawGeometry=e.geometry;this.properties=e.tags,"id"in e&&!isNaN(e.id)&&(this.id=parseInt(e.id,10)),this.extent=EXTENT};FeatureWrapper.prototype.loadGeometry=function(){var e=this,t=this.rawGeometry;this.geometry=[];for(var r=0;r<t.length;r++){for(var o=t[r],a=[],i=0;i<o.length;i++)a.push(new Point(o[i][0],o[i][1]));e.geometry.push(a)}return this.geometry},FeatureWrapper.prototype.bbox=function(){this.geometry||this.loadGeometry();for(var e=this.geometry,t=1/0,r=-1/0,o=1/0,a=-1/0,i=0;i<e.length;i++)for(var n=e[i],p=0;p<n.length;p++){var s=n[p];t=Math.min(t,s.x),r=Math.max(r,s.x),o=Math.min(o,s.y),a=Math.max(a,s.y)}return[t,o,r,a]},FeatureWrapper.prototype.toGeoJSON=function(e,t,r){return toGeoJSON.call(this,e,t,r)};var GeoJSONWrapper=function(e){this.layers={_geojsonTileLayer:this},this.name="_geojsonTileLayer",this.extent=EXTENT,this.length=e.length,this._features=e};GeoJSONWrapper.prototype.feature=function(e){return new FeatureWrapper(this._features[e])},module.exports=GeoJSONWrapper;
},{"../@minemap/point-geometry":50,"../@minemap/vector-tile":54,"../data/extent":75}],114:[function(_dereq_,module,exports){
"use strict";var util=_dereq_("../util/util"),window=_dereq_("../util/window"),TileCoord=_dereq_("./tile_coord"),LngLat=_dereq_("../geo/lng_lat"),Point=_dereq_("../@minemap/point-geometry"),Evented=_dereq_("../util/evented"),ajax=_dereq_("../util/ajax"),EXTENT=_dereq_("../data/extent"),RasterBoundsArray=_dereq_("../data/raster_bounds_array"),Buffer=_dereq_("../data/buffer"),VertexArrayObject=_dereq_("../render/vertex_array_object"),ImageSource=function(t){function e(e,o,r,i){t.call(this),this.id=e,this.dispatcher=r,this.coordinates=o.coordinates,this.type="image",this.minzoom=0,this.maxzoom=22,this.tileSize=512,this.tiles={},this.setEventedParent(i),this.options=o,this.textureLoaded=!1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.load=function(){var t=this;this.fire("dataloading",{dataType:"source"}),this.url=this.options.url,ajax.getImage(this.map._transformRequest(this.url,ajax.ResourceType.Image),function(e,o){e?t.fire("error",{error:e}):o&&(t.image=o,t._finishLoading())})},e.prototype._finishLoading=function(){this.map&&(this.setCoordinates(this.coordinates),this.fire("data",{dataType:"source",sourceDataType:"metadata"}))},e.prototype.onAdd=function(t){this.map=t,this.load()},e.prototype.setCoordinates=function(t){this.coordinates=t;var e=this.map,o=t.map(function(t){return e.transform.locationCoordinate(LngLat.convert(t)).zoomTo(0)}),r=this.centerCoord=util.getCoordinatesCenter(o);return r.column=Math.floor(r.column),r.row=Math.floor(r.row),this.coord=new TileCoord(r.zoom,r.column,r.row),this.minzoom=this.maxzoom=r.zoom,this._tileCoords=o.map(function(t){var e=t.zoomTo(r.zoom);return new Point(Math.round((e.column-r.column)*EXTENT),Math.round((e.row-r.row)*EXTENT))}),this.fire("data",{dataType:"source",sourceDataType:"content"}),this},e.prototype._setTile=function(t){this.tiles[String(t.coord.w)]=t;var e=new RasterBoundsArray;e.emplaceBack(this._tileCoords[0].x,this._tileCoords[0].y,0,0),e.emplaceBack(this._tileCoords[1].x,this._tileCoords[1].y,EXTENT,0),e.emplaceBack(this._tileCoords[3].x,this._tileCoords[3].y,0,EXTENT),e.emplaceBack(this._tileCoords[2].x,this._tileCoords[2].y,EXTENT,EXTENT),t.buckets={},t.boundsBuffer=Buffer.fromStructArray(e,Buffer.BufferType.VERTEX),t.boundsVAO=new VertexArrayObject},e.prototype.prepare=function(){0!==Object.keys(this.tiles).length&&this.image&&this._prepareImage(this.map.painter.gl,this.image)},e.prototype._prepareImage=function(t,e,o){var r=this;this.textureLoaded?o?t.texImage2D(t.TEXTURE_2D,0,t.RGBA,t.RGBA,t.UNSIGNED_BYTE,e):(e instanceof window.HTMLVideoElement||e instanceof window.ImageData||e instanceof window.HTMLCanvasElement)&&(t.bindTexture(t.TEXTURE_2D,this.texture),t.texSubImage2D(t.TEXTURE_2D,0,0,0,t.RGBA,t.UNSIGNED_BYTE,e)):(this.textureLoaded=!0,this.texture=t.createTexture(),t.bindTexture(t.TEXTURE_2D,this.texture),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,t.LINEAR),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,t.LINEAR),t.texImage2D(t.TEXTURE_2D,0,t.RGBA,t.RGBA,t.UNSIGNED_BYTE,e));for(var i in r.tiles){var a=r.tiles[i];"loaded"!==a.state&&(a.state="loaded",a.texture=r.texture)}},e.prototype.loadTile=function(t,e){this.coord&&this.coord.toString()===t.coord.toString()?(this._setTile(t),e(null)):(t.state="errored",e(null))},e.prototype.serialize=function(){return{type:"image",urls:this.options.url,coordinates:this.coordinates}},e}(Evented);module.exports=ImageSource;
},{"../@minemap/point-geometry":50,"../data/buffer":72,"../data/extent":75,"../data/raster_bounds_array":80,"../geo/lng_lat":83,"../render/vertex_array_object":107,"../util/ajax":221,"../util/evented":231,"../util/util":247,"../util/window":224,"./tile_coord":125}],115:[function(_dereq_,module,exports){
"use strict";var util=_dereq_("../util/util"),ajax=_dereq_("../util/ajax"),browser=_dereq_("../util/browser"),normalizeURL=_dereq_("../util/minemap").normalizeSourceURL;module.exports=function(r,e,i){var u=function(r,e){if(r)return i(r);if(e){var u=util.pick(e,["tiles","minzoom","maxzoom","attribution","minemap_logo","bounds"]);e.vector_layers&&(u.vectorLayers=e.vector_layers,u.vectorLayerIds=u.vectorLayers.map(function(r){return r.id})),i(null,u)}};r.url?ajax.getJSON(e(normalizeURL(r.url),ajax.ResourceType.Source),u):browser.frame(function(){return u(null,r)})};
},{"../util/ajax":221,"../util/browser":222,"../util/minemap":240,"../util/util":247}],116:[function(_dereq_,module,exports){
"use strict";var EXTENT=_dereq_("../data/extent");module.exports=function(e,t,r){return t*(EXTENT/(e.tileSize*Math.pow(2,r-e.coord.z)))};
},{"../data/extent":75}],117:[function(_dereq_,module,exports){
"use strict";function sortTilesIn(e,r){var t=e.coord,o=r.coord;return t.z-o.z||t.y-o.y||t.w-o.w||t.x-o.x}function mergeRenderedFeatureLayers(e){for(var r={},t={},o=0,a=e;o<a.length;o+=1){var n=a[o],u=n.queryResults,i=n.wrappedTileID,d=t[i]=t[i]||{};for(var s in u)for(var l=u[s],c=d[s]=d[s]||{},f=r[s]=r[s]||[],y=0,p=l;y<p.length;y+=1){var v=p[y];c[v.featureIndex]||(c[v.featureIndex]=!0,f.push(v.feature))}}return r}var TileCoord=_dereq_("./tile_coord");exports.rendered=function(e,r,t,o,a,n){var u=e.tilesIn(t);u.sort(sortTilesIn);for(var i=[],d=0;d<u.length;d++){var s=u[d],l=s.tile.featureIndex;l&&i.push({wrappedTileID:s.coord.wrapped().id,queryResults:l.query({queryGeometry:s.queryGeometry,scale:s.scale,tileSize:s.tile.tileSize,bearing:n,params:o},r)})}return mergeRenderedFeatureLayers(i)},exports.source=function(e,r){for(var t=e.getRenderableIds().map(function(r){return e.getTileByID(r)}),o=[],a={},n=0;n<t.length;n++){var u=t[n],i=new TileCoord(Math.min(u.sourceMaxZoom,u.coord.z),u.coord.x,u.coord.y,0).id;a[i]||(a[i]=!0,u.querySourceFeatures(o,r))}return o};
},{"./tile_coord":125}],118:[function(_dereq_,module,exports){
"use strict";var util=_dereq_("../util/util"),ajax=_dereq_("../util/ajax"),Evented=_dereq_("../util/evented"),loadTileJSON=_dereq_("./load_tilejson"),normalizeURL=_dereq_("../util/minemap").normalizeTileURL,TileBounds=_dereq_("./tile_bounds"),RasterTileSource=function(e){function t(t,i,r,o){e.call(this),this.id=t,this.dispatcher=r,this.setEventedParent(o),this.type="raster",this.minzoom=0,this.maxzoom=22,this.roundZoom=!0,this.scheme="xyz",this.tileSize=512,this._loaded=!1,this._options=util.extend({},i),util.extend(this,util.pick(i,["url","scheme","tileSize"]))}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.load=function(){var e=this;this.fire("dataloading",{dataType:"source"}),loadTileJSON(this._options,this.map._transformRequest,function(t,i){t?e.fire("error",t):i&&(util.extend(e,i),e.setBounds(i.bounds),e.fire("data",{dataType:"source",sourceDataType:"metadata"}),e.fire("data",{dataType:"source",sourceDataType:"content"}))})},t.prototype.onAdd=function(e){this.map=e,this.load()},t.prototype.setBounds=function(e){this.bounds=e,e&&(this.tileBounds=new TileBounds(e,this.minzoom,this.maxzoom))},t.prototype.serialize=function(){return util.extend({},this._options)},t.prototype.hasTile=function(e){return!this.tileBounds||this.tileBounds.contains(e,this.maxzoom)},t.prototype.loadTile=function(e,t){var i=this,r=normalizeURL(e.coord.url(this.tiles,null,this.scheme),this.url,this.tileSize);e.request=ajax.getImage(this.map._transformRequest(r,ajax.ResourceType.Tile),function(r,o){if(delete e.request,e.aborted)i.state="unloaded",t(null);else if(r)i.state="errored",t(r);else if(o){i.map._refreshExpiredTiles&&e.setExpiryData(o),delete o.cacheControl,delete o.expires;var a=i.map.painter.gl;e.texture=i.map.painter.getTileTexture(o.width),e.texture?(a.bindTexture(a.TEXTURE_2D,e.texture),a.texSubImage2D(a.TEXTURE_2D,0,0,0,a.RGBA,a.UNSIGNED_BYTE,o)):(e.texture=a.createTexture(),a.bindTexture(a.TEXTURE_2D,e.texture),a.texParameteri(a.TEXTURE_2D,a.TEXTURE_MIN_FILTER,a.LINEAR_MIPMAP_NEAREST),a.texParameteri(a.TEXTURE_2D,a.TEXTURE_MAG_FILTER,a.LINEAR),a.texParameteri(a.TEXTURE_2D,a.TEXTURE_WRAP_S,a.CLAMP_TO_EDGE),a.texParameteri(a.TEXTURE_2D,a.TEXTURE_WRAP_T,a.CLAMP_TO_EDGE),a.pixelStorei(a.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0),i.map.painter.extTextureFilterAnisotropic&&a.texParameterf(a.TEXTURE_2D,i.map.painter.extTextureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT,i.map.painter.extTextureFilterAnisotropicMax),a.texImage2D(a.TEXTURE_2D,0,a.RGBA,a.RGBA,a.UNSIGNED_BYTE,o),e.texture.size=o.width),a.generateMipmap(a.TEXTURE_2D),e.state="loaded",t(null)}})},t.prototype.abortTile=function(e){e.request&&(e.request.abort(),delete e.request)},t.prototype.unloadTile=function(e){e.texture&&this.map.painter.saveTileTexture(e.texture)},t}(Evented);module.exports=RasterTileSource;
},{"../util/ajax":221,"../util/evented":231,"../util/minemap":240,"../util/util":247,"./load_tilejson":115,"./tile_bounds":124}],119:[function(_dereq_,module,exports){
"use strict";var config=_dereq_("../util/config"),ajax=_dereq_("../util/ajax"),browser=_dereq_("../util/browser"),normalizeURL=_dereq_("../util/minemap").normalizeTileURL,RticCache=function(t){this._source=t,this._separate=t._options?t._options.separate||{}:{},this._isRitcSeparate=this._separate.isRitcSeparate||!1,this._hasTimeStamp=this._separate.hasTimeStamp||!1,this._valueUrl=this._separate.valueUrl||"",this._separateSource=this._separate.separateSource||"",this._separateLayer=this._separate.separateLayer||"",this._timestamp=0,this._tiles={},this._rticTiles={},this._rticStdTiles={},this._valueTiles={}};RticCache.prototype.updateTimeStamp=function(t){this._timestamp=t},RticCache.prototype.reloadSeparateTile=function(){var t=this;for(var e in t._tiles){var i=t._tiles[e];t.map&&t.onSeparateTileLoaded(i,t._tiles,t.map)}},RticCache.prototype.onSeparateTileLoaded=function(t,e,i){if("Rticline"==this._source.id||"Rticstdline"==this._source.id||this._isRitcSeparate){this._tiles=e,this.map=i;var a=this._source.maxzoom,s=this._source.scheme,r=t.coord.toAccess(a,s);if(r)if("Rticline"==this._source.id){var o=config.DYN_URL+"Rticvalue/"+r+"?token="+config.ACCESS_TOKEN+"&solu="+config.SOLU;this._loadRticValue(o,!1)}else if("Rticstdline"==this._source.id){var c=config.DYN_URL+"RticStdValue/"+r+"?token="+config.ACCESS_TOKEN+"&solu="+config.SOLU;this._loadRticValue(c,!0)}else if(this._isRitcSeparate){var n=r.split("_"),l=this._valueUrl.replace("{z}",n[0]).replace("{x}",n[1]).replace("{y}",n[2]);this._hasTimeStamp&&(l=l.replace("{t}",this._timestamp));var u=normalizeURL(l);this._loadValueData(u)}}},RticCache.prototype._loadValueData=function(t){var e=this;ajax.getJSON(t,function(t,i){t||(e._resetValueTiles(i),e._repaintValueLayerColor())})},RticCache.prototype._resetValueTiles=function(t){var e=this;if(t){var i=this._source.maxzoom,a=this._source.scheme,s=[];for(var r in e._tiles){var o=e._tiles[r],c=o.coord.toAccess(i,a);s.push(c),c==t.tile&&(e._valueTiles[c]=t)}Object.keys(this._valueTiles).map(function(t){s.indexOf(t)<0&&delete e._valueTiles[t]})}},RticCache.prototype._getCombineValueData=function(){var t=this,e=["status_0","status_2","status_3"],i={};e.map(function(t){i[t]=[]});for(var a in t._valueTiles)!function(a){var s=t._valueTiles[a];e.map(function(t){s[t]&&s[t].map(function(e){i[t].push(e)})})}(a);return i},RticCache.prototype._getValueColorStyle=function(t){var e={};e.property="rtic_key",e.type="categorical",e.default="#66cc00";for(var i={},a=["status_0","status_2","status_3"],s={status_0:"#999999",status_2:"#ff9900",status_3:"#cc0000"},r=this._separateSource,o=this._separateLayer,c=this.map.style._layers,n=0,l=Object.entries(c);n<l.length;n+=1){var u=l[n],p=(u[0],u[1]);if(p&&"line"==p.type&&p.source==r&&p.sourceLayer==o){var _=null,h=p._paintDeclarations?p._paintDeclarations[""]:null;h&&(_=h["line-color"]?h["line-color"].value:null),_&&"object"==typeof _&&_.stops&&"status"===_.property?_.stops.map(function(t){0===t[0]?s.status_0=t[1]||"#999999":1===t[0]?e.default=t[1]||"#66cc00":2===t[0]?s.status_2=t[1]||"#ff9900":3===t[0]&&(s.status_3=t[1]||"#cc0000")}):_&&"string"==typeof _&&(e.default=_||"#66cc00")}}a.map(function(e){var a=s[e];t[e].map(function(t){i[t]=a})});var f=Object.entries(i);return e.stops=f,e},RticCache.prototype._repaintValueLayerColor=function(){var t=this;if(this.map){for(var e=function(e,i){t.map.setPaintProperty(e,"line-color",i)},i=this.map.style._layers,a=this._separateSource,s=this._separateLayer,r=[],o=0,c=Object.entries(i);o<c.length;o+=1){var n=c[o],l=n[0],u=n[1];u&&"line"==u.type&&u.source==a&&u.sourceLayer==s&&r.push(l)}if(r.length>0){var p=this._getValueColorStyle(this._getCombineValueData());r.map(function(i){browser.frame(e.bind(t,i,p))})}}},RticCache.prototype._loadRticValue=function(t,e){var i=this;void 0===e&&(e=!1),ajax.getJSON(t,function(t,a){t||(i._resetRticTiles(a,e),i._repaintRticLayerColor(e))})},RticCache.prototype._resetRticTiles=function(t,e){var i=this;if(t){var a=this._source.maxzoom,s=this._source.scheme,r=[];for(var o in i._tiles){var c=i._tiles[o],n=c.coord.toAccess(a,s);r.push(n),n==t.tile&&(e?i._rticStdTiles[n]=t:i._rticTiles[n]=t)}if(e){Object.keys(this._rticStdTiles).map(function(t){r.indexOf(t)<0&&delete i._rticStdTiles[t]})}else{Object.keys(this._rticTiles).map(function(t){r.indexOf(t)<0&&delete i._rticTiles[t]})}}},RticCache.prototype._getCombineRticData=function(t){var e=this,i=["status_0","status_2","status_3"],a={};if(i.map(function(t){a[t]=[]}),t){for(var s in e._rticStdTiles)!function(t){var s=e._rticStdTiles[t];i.map(function(t){s[t]&&s[t].map(function(e){a[t].push(e)})})}(s)}else{for(var r in e._rticTiles)!function(t){var s=e._rticTiles[r];i.map(function(t){s[t]&&s[t].map(function(e){a[t].push(e)})})}()}return a},RticCache.prototype._getRticColorStyle=function(t,e){var i={};i.property="rtic_key",i.type="categorical",i.default="#66cc00";var a={},s=["status_0","status_2","status_3"],r={status_0:"#999999",status_2:"#ff9900",status_3:"#cc0000"};(this.map.style.stylesheet.layers||[]).map(function(t){if("line"==t.type){var a=null;e&&"Rticstdline"==t.source&&"Rticstdline"==t["source-layer"]?a=t.paint?t.paint["line-color"]:null:e||"Rticline"!=t.source||"Rticline"!=t["source-layer"]||(a=t.paint?t.paint["line-color"]:null),a&&"object"==typeof a&&a.stops&&"status"===a.property?a.stops.map(function(t){0===t[0]?r.status_0=t[1]||"#999999":1===t[0]?i.default=t[1]||"#66cc00":2===t[0]?r.status_2=t[1]||"#ff9900":3===t[0]&&(r.status_3=t[1]||"#cc0000")}):a&&"string"==typeof a&&(i.default=a||"#66cc00")}}),s.map(function(e){var i=r[e];t[e].map(function(t){a[t]=i})});var o=Object.entries(a);return i.stops=o,i},RticCache.prototype._repaintRticLayerColor=function(t){var e=this;if(this.map){var i=function(t,i){e.map.setPaintProperty(t,"line-color",i)},a=this.map.style._layers,s=[];if(t)for(var r=0,o=Object.entries(a);r<o.length;r+=1){var c=o[r],n=c[0],l=c[1];l&&"Rticstdline"==l.source&&"line"==l.type&&s.push(n)}else for(var u=0,p=Object.entries(a);u<p.length;u+=1){var _=p[u],h=_[0],f=_[1];f&&"Rticline"==f.source&&"line"==f.type&&s.push(h)}if(s.length>0){var m=this._getRticColorStyle(this._getCombineRticData(t),t);s.map(function(t){browser.frame(i.bind(e,t,m))})}}},module.exports=RticCache;
},{"../util/ajax":221,"../util/browser":222,"../util/config":226,"../util/minemap":240}],120:[function(_dereq_,module,exports){
"use strict";var ajax=_dereq_("../util/ajax"),Evented=_dereq_("../util/evented"),window=_dereq_("../util/window"),pluginRequested=!1,pluginBlobURL=null;module.exports.evented=new Evented,module.exports.registerForPluginAvailability=function(e){return pluginBlobURL?e({pluginBlobURL:pluginBlobURL,errorCallback:module.exports.errorCallback}):module.exports.evented.once("pluginAvailable",e),e},module.exports.createBlobURL=function(e){return window.URL.createObjectURL(new window.Blob([e.data]),{type:"text/javascript"})},module.exports.clearRTLTextPlugin=function(){pluginRequested=!1,pluginBlobURL=null},module.exports.setRTLTextPlugin=function(e,l){if(pluginRequested)throw new Error("setRTLTextPlugin cannot be called multiple times.");pluginRequested=!0,module.exports.errorCallback=l,ajax.getArrayBuffer({url:e},function(e,t){e?l(e):t&&(pluginBlobURL=module.exports.createBlobURL(t),module.exports.evented.fire("pluginAvailable",{pluginBlobURL:pluginBlobURL,errorCallback:l}))})},module.exports.applyArabicShaping=null,module.exports.processBidirectionalText=null;
},{"../util/ajax":221,"../util/evented":231,"../util/window":224}],121:[function(_dereq_,module,exports){
"use strict";var util=_dereq_("../util/util"),sourceTypes={vector:_dereq_("../source/vector_tile_source"),raster:_dereq_("../source/raster_tile_source"),geojson:_dereq_("../source/geojson_source"),video:_dereq_("../source/video_source"),image:_dereq_("../source/image_source"),canvas:_dereq_("../source/canvas_source")};exports.create=function(e,r,o,u){var s=new sourceTypes[r.type](e,r,o,u);if(s.id!==e)throw new Error("Expected Source id to be "+e+" instead of "+s.id);return util.bindAll(["load","abort","unload","serialize","prepare"],s),s},exports.getType=function(e){return sourceTypes[e]},exports.setType=function(e,r){sourceTypes[e]=r};
},{"../source/canvas_source":110,"../source/geojson_source":111,"../source/image_source":114,"../source/raster_tile_source":118,"../source/vector_tile_source":126,"../source/video_source":128,"../util/util":247}],122:[function(_dereq_,module,exports){
"use strict";function coordinateToTilePoint(e,t,o){var i=o.zoomTo(Math.min(e.z,t));return{x:(i.column-(e.x+e.w*Math.pow(2,e.z)))*EXTENT,y:(i.row-e.y)*EXTENT}}function compareKeyZoom(e,t){return e%32-t%32}function isRasterType(e){return"raster"===e||"image"===e||"video"===e}var createSource=_dereq_("./source").create,Tile=_dereq_("./tile"),Evented=_dereq_("../util/evented"),TileCoord=_dereq_("./tile_coord"),Cache=_dereq_("../util/lru_cache"),RticCache=_dereq_("./rtic_cache"),Coordinate=_dereq_("../geo/coordinate"),util=_dereq_("../util/util"),EXTENT=_dereq_("../data/extent"),SourceCache=function(e){function t(t,o,i){var r=this;e.call(this),this.id=t,this.dispatcher=i,this.on("data",function(e){"source"===e.dataType&&"metadata"===e.sourceDataType&&(r._sourceLoaded=!0),r._sourceLoaded&&!r._paused&&"source"===e.dataType&&"content"===e.sourceDataType&&(r.reload(),r.transform&&r.update(r.transform))}),this.on("error",function(){r._sourceErrored=!0}),this._source=createSource(t,o,i,this),this._tiles={},this._cache=new Cache(0,this._unloadTile.bind(this)),this._timers={},this._cacheTimers={},this._maxTileCacheSize=null,this._rticCache=new RticCache(this._source),this._isIdRenderable=this._isIdRenderable.bind(this)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.onAdd=function(e){this.map=e,this._maxTileCacheSize=e?e._maxTileCacheSize:null,this._source&&this._source.onAdd&&this._source.onAdd(e)},t.prototype.onRemove=function(e){this._source&&this._source.onRemove&&this._source.onRemove(e)},t.prototype.loaded=function(){var e=this;if(this._sourceErrored)return!0;if(!this._sourceLoaded)return!1;for(var t in e._tiles){var o=e._tiles[t];if("loaded"!==o.state&&"errored"!==o.state)return!1}return!0},t.prototype.getSource=function(){return this._source},t.prototype.pause=function(){this._paused=!0},t.prototype.resume=function(){if(this._paused){var e=this._shouldReloadOnResume;this._paused=!1,this._shouldReloadOnResume=!1,e&&this.reload(),this.transform&&this.update(this.transform)}},t.prototype._loadTile=function(e,t){return this._source.loadTile(e,t)},t.prototype._unloadTile=function(e){if(this._source.unloadTile)return this._source.unloadTile(e)},t.prototype._abortTile=function(e){if(this._source.abortTile)return this._source.abortTile(e)},t.prototype.serialize=function(){return this._source.serialize()},t.prototype.prepare=function(){if(this._sourceLoaded&&this._source.prepare)return this._source.prepare()},t.prototype.getIds=function(){return Object.keys(this._tiles).map(Number).sort(compareKeyZoom)},t.prototype.getRenderableIds=function(){return this.getIds().filter(this._isIdRenderable)},t.prototype._isIdRenderable=function(e){return this._tiles[e].hasData()&&!this._coveredTiles[e]},t.prototype.reload=function(){var e=this;if(this._paused)return void(this._shouldReloadOnResume=!0);this._cache.reset();for(var t in e._tiles)e._reloadTile(t,"reloading")},t.prototype._reloadTile=function(e,t){var o=this._tiles[e];o&&("loading"!==o.state&&(o.state=t),this._loadTile(o,this._tileLoaded.bind(this,o,e,t)))},t.prototype._tileLoaded=function(e,t,o,i){if(i)return e.state="errored",void(404!==i.status&&this._source.fire("error",{tile:e,error:i}));if("vector"==this._source.type&&"loading"==o){this._source.maxzoom,this._source.scheme;this._rticCache.onSeparateTileLoaded(e,this._tiles,this.map)}e.sourceCache=this,e.timeAdded=(new Date).getTime(),"expired"===o&&(e.refreshedUponExpiration=!0),this._setTileReloadTimer(t,e),this._source.fire("data",{dataType:"source",tile:e,coord:e.coord}),this.map&&(this.map.painter.tileExtentVAO.vao=null)},t.prototype.getTile=function(e){return this.getTileByID(e.id)},t.prototype.getTileByID=function(e){return this._tiles[e]},t.prototype.getZoom=function(e){return e.zoom+e.scaleZoom(e.tileSize/this._source.tileSize)},t.prototype._findLoadedChildren=function(e,t,o){var i=this,r=!1;for(var s in i._tiles){var a=i._tiles[s];if(!(o[s]||!a.hasData()||a.coord.z<=e.z||a.coord.z>t)){var n=Math.pow(2,Math.min(a.coord.z,i._source.maxzoom)-Math.min(e.z,i._source.maxzoom));if(Math.floor(a.coord.x/n)===e.x&&Math.floor(a.coord.y/n)===e.y)for(o[s]=!0,r=!0;a&&a.coord.z-1>e.z;){var c=a.coord.parent(i._source.maxzoom);if(!c)break;a=i._tiles[c.id],a&&a.hasData()&&(delete o[s],o[c.id]=!0)}}}return r},t.prototype.findLoadedParent=function(e,t,o){for(var i=this,r=e.z-1;r>=t;r--){var s=e.parent(i._source.maxzoom);if(!s)return;e=s;var a=String(e.id),n=i._tiles[a];if(n&&n.hasData())return o[a]=!0,n;if(i._cache.has(a))return o[a]=!0,i._cache.getWithoutRemoving(a)}},t.prototype.updateCacheSize=function(e){var t=Math.ceil(e.width/e.tileSize)+1,o=Math.ceil(e.height/e.tileSize)+1,i=t*o,r=Math.floor(5*i),s="number"==typeof this._maxTileCacheSize?Math.min(this._maxTileCacheSize,r):r;this._cache.setMaxSize(s)},t.prototype.update=function(e){var o=this;if(this.transform=e,this._sourceLoaded&&!this._paused){var i,r,s,a;this.updateCacheSize(e);var n=(this._source.roundZoom?Math.round:Math.floor)(this.getZoom(e)),c=Math.max(n-t.maxOverzooming,this._source.minzoom),h=Math.max(n+t.maxUnderzooming,this._source.minzoom),d={};this._coveredTiles={};var u;for(this.used?this._source.coord?u=e.getVisibleWrappedCoordinates(this._source.coord):(u=e.coveringTiles({tileSize:this._source.tileSize,minzoom:this._source.minzoom,maxzoom:this._source.maxzoom,roundZoom:this._source.roundZoom,reparseOverscaled:this._source.reparseOverscaled}),this._source.hasTile&&(u=u.filter(function(e){return o._source.hasTile(e)}))):u=[],i=0;i<u.length;i++)r=u[i],s=o._addTile(r),d[r.id]=!0,s.hasData()||o._findLoadedChildren(r,h,d)||(a=o.findLoadedParent(r,c,d))&&o._addTile(a.coord);var l={};if(isRasterType(this._source.type))for(var _=Object.keys(d),m=0;m<_.length;m++){var p=_[m];r=TileCoord.fromID(+p),s=o._tiles[p],s&&((void 0===s.fadeEndTime||s.fadeEndTime>=Date.now())&&(o._findLoadedChildren(r,h,d)&&(d[p]=!0),(a=o.findLoadedParent(r,c,l))&&o._addTile(a.coord)))}var f;for(f in l)d[f]||(o._coveredTiles[f]=!0);for(f in l)d[f]=!0;var T=util.keysDifference(this._tiles,d);for(i=0;i<T.length;i++)o._removeTile(T[i])}},t.prototype._addTile=function(e){var t=this._tiles[e.id];if(t)return t;(t=this._cache.get(e.id))&&(t.redoPlacement(this._source),this._cacheTimers[e.id]&&(clearTimeout(this._cacheTimers[e.id]),delete this._cacheTimers[e.id],this._setTileReloadTimer(e.id,t)));var o=Boolean(t);if(!o){var i=e.z,r=i>this._source.maxzoom?Math.pow(2,i-this._source.maxzoom):1;t=new Tile(e,this._source.tileSize*r,this._source.maxzoom),this._loadTile(t,this._tileLoaded.bind(this,t,e.id,t.state))}return t?(t.uses++,this._tiles[e.id]=t,o||this._source.fire("dataloading",{tile:t,coord:t.coord,dataType:"source"}),t):null},t.prototype._setTileReloadTimer=function(e,t){var o=this,i=t.getExpiryTimeout();i&&(this._timers[e]=setTimeout(function(){o._reloadTile(e,"expired"),delete o._timers[e]},i))},t.prototype._setCacheInvalidationTimer=function(e,t){var o=this,i=t.getExpiryTimeout();i&&(this._cacheTimers[e]=setTimeout(function(){o._cache.remove(e),delete o._cacheTimers[e]},i))},t.prototype._removeTile=function(e){var t=this._tiles[e];if(t&&(t.uses--,delete this._tiles[e],this._timers[e]&&(clearTimeout(this._timers[e]),delete this._timers[e]),!(t.uses>0)))if(t.stopPlacementThrottler(),t.hasData()){var o=t.coord.wrapped().id;this._cache.add(o,t),this._setCacheInvalidationTimer(o,t)}else t.aborted=!0,this._abortTile(t),this._unloadTile(t)},t.prototype.clearTiles=function(){var e=this;this._shouldReloadOnResume=!1,this._paused=!1;for(var t in e._tiles)e._removeTile(t);this._cache.reset()},t.prototype.tilesIn=function(e){for(var t=this,o=[],i=this.getIds(),r=1/0,s=1/0,a=-1/0,n=-1/0,c=e[0].zoom,h=0;h<e.length;h++){var d=e[h];r=Math.min(r,d.column),s=Math.min(s,d.row),a=Math.max(a,d.column),n=Math.max(n,d.row)}for(var u=0;u<i.length;u++){var l=t._tiles[i[u]],_=TileCoord.fromID(i[u]),m=[coordinateToTilePoint(_,l.sourceMaxZoom,new Coordinate(r,s,c)),coordinateToTilePoint(_,l.sourceMaxZoom,new Coordinate(a,n,c))];if(m[0].x<EXTENT&&m[0].y<EXTENT&&m[1].x>=0&&m[1].y>=0){for(var p=[],f=0;f<e.length;f++)p.push(coordinateToTilePoint(_,l.sourceMaxZoom,e[f]));o.push({tile:l,coord:_,queryGeometry:[p],scale:Math.pow(2,t.transform.zoom-l.coord.z)})}}return o},t.prototype.redoPlacement=function(){for(var e=this,t=this.getIds(),o=0;o<t.length;o++){e.getTileByID(t[o]).redoPlacement(e._source)}},t.prototype.getVisibleCoordinates=function(){for(var e=this,t=this.getRenderableIds().map(TileCoord.fromID),o=0,i=t;o<i.length;o+=1){var r=i[o];r.posMatrix=e.transform.calculatePosMatrix(r,e._source.maxzoom)}return t},t}(Evented);SourceCache.maxOverzooming=10,SourceCache.maxUnderzooming=3,module.exports=SourceCache;
},{"../data/extent":75,"../geo/coordinate":82,"../util/evented":231,"../util/lru_cache":239,"../util/util":247,"./rtic_cache":119,"./source":121,"./tile":123,"./tile_coord":125}],123:[function(_dereq_,module,exports){
"use strict";var util=_dereq_("../util/util"),Bucket=_dereq_("../data/bucket"),FeatureIndex=_dereq_("../data/feature_index"),vt=_dereq_("../@minemap/vector-tile"),Protobuf=_dereq_("pbf"),GeoJSONFeature=_dereq_("../util/vectortile_to_geojson"),featureFilter=_dereq_("../style-spec/feature_filter"),CollisionTile=_dereq_("../symbol/collision_tile"),CollisionBoxArray=_dereq_("../symbol/collision_box"),Throttler=_dereq_("../util/throttler"),CLOCK_SKEW_RETRY_TIMEOUT=3e4,Tile=function(e,t,i){this.coord=e,this.uid=util.uniqueId(),this.uses=0,this.tileSize=t,this.sourceMaxZoom=i,this.buckets={},this.expirationTime=null,this.expiredRequestCount=0,this.state="loading",this.placementThrottler=new Throttler(300,this._immediateRedoPlacement.bind(this))};Tile.prototype.registerFadeDuration=function(e,t){var i=t+this.timeAdded;i<Date.now()||this.fadeEndTime&&i<this.fadeEndTime||(this.fadeEndTime=i,e.set(this.fadeEndTime-Date.now()))},Tile.prototype.loadVectorData=function(e,t){this.hasData()&&this.unloadVectorData(),this.state="loaded",e&&(e.rawTileData&&(this.rawTileData=e.rawTileData),this.collisionBoxArray=new CollisionBoxArray(e.collisionBoxArray),this.collisionTile=CollisionTile.deserialize(e.collisionTile,this.collisionBoxArray),this.featureIndex=FeatureIndex.deserialize(e.featureIndex,this.rawTileData,this.collisionTile),this.buckets=Bucket.deserialize(e.buckets,t.style))},Tile.prototype.reloadSymbolData=function(e,t){var i=this;if("unloaded"!==this.state){this.collisionTile=CollisionTile.deserialize(e.collisionTile,this.collisionBoxArray),this.featureIndex&&this.featureIndex.setCollisionTile(this.collisionTile);for(var o in i.buckets){var a=i.buckets[o];"symbol"!==a.layers[0].type&&"symtracking"!==a.layers[0].type||(a.destroy(),delete i.buckets[o])}util.extend(this.buckets,Bucket.deserialize(e.buckets,t))}},Tile.prototype.unloadVectorData=function(){var e=this;for(var t in e.buckets)e.buckets[t].destroy();this.buckets={},this.collisionBoxArray=null,this.collisionTile=null,this.featureIndex=null,this.state="unloaded"},Tile.prototype.redoPlacement=function(e){if("vector"===e.type||"geojson"===e.type){if("loaded"!==this.state)return void(this.redoWhenDone=!0);if(this.collisionTile){var t=e.map.transform.cameraToTileDistance(this);if(this.angle===e.map.transform.angle&&this.pitch===e.map.transform.pitch&&this.cameraToCenterDistance===e.map.transform.cameraToCenterDistance&&this.showCollisionBoxes===e.map.showCollisionBoxes){if(this.cameraToTileDistance===t)return;if(this.pitch<25)return void(this.cameraToTileDistance=t)}this.angle=e.map.transform.angle,this.pitch=e.map.transform.pitch,this.cameraToCenterDistance=e.map.transform.cameraToCenterDistance,this.cameraToTileDistance=t,this.showCollisionBoxes=e.map.showCollisionBoxes,this.placementSource=e,this.state="reloading",this.placementThrottler.invoke()}}},Tile.prototype._immediateRedoPlacement=function(){var e=this;this.placementSource.dispatcher.send("redoPlacement",{type:this.placementSource.type,uid:this.uid,source:this.placementSource.id,angle:this.angle,pitch:this.pitch,cameraToCenterDistance:this.cameraToCenterDistance,cameraToTileDistance:this.cameraToTileDistance,showCollisionBoxes:this.showCollisionBoxes},function(t,i){"reloading"===e.state&&(e.state="loaded",e.reloadSymbolData(i,e.placementSource.map.style),e.placementSource.fire("data",{tile:e,coord:e.coord,dataType:"source"}),e.placementSource.map&&(e.placementSource.map.painter.tileExtentVAO.vao=null),e.redoWhenDone&&(e.state="reloading",e.redoWhenDone=!1,e._immediateRedoPlacement()))},this.workerID)},Tile.prototype.getBucket=function(e){return this.buckets[e.id]},Tile.prototype.querySourceFeatures=function(e,t){var i=this;if(this.rawTileData){this.vtLayers||(this.vtLayers=new vt.VectorTile(new Protobuf(this.rawTileData)).layers);var o=t?t.sourceLayer:"",a=this.vtLayers._geojsonTileLayer||this.vtLayers[o];if(a)for(var r=featureFilter(t&&t.filter),s={z:this.coord.z,x:this.coord.x,y:this.coord.y},l=0;l<a.length;l++){var n=a.feature(l);if(r(n)){var h=new GeoJSONFeature(n,i.coord.z,i.coord.x,i.coord.y);h.tile=s,e.push(h)}}}},Tile.prototype.hasData=function(){return"loaded"===this.state||"reloading"===this.state||"expired"===this.state},Tile.prototype.setExpiryData=function(e){var t=this.expirationTime;if(e.cacheControl){var i=util.parseCacheControl(e.cacheControl);i["max-age"]&&(this.expirationTime=Date.now()+1e3*i["max-age"])}else e.expires&&(this.expirationTime=new Date(e.expires).getTime());if(this.expirationTime){var o=Date.now(),a=!1;if(this.expirationTime>o)a=!1;else if(t)if(this.expirationTime<t)a=!0;else{var r=this.expirationTime-t;r?this.expirationTime=o+Math.max(r,CLOCK_SKEW_RETRY_TIMEOUT):a=!0}else a=!0;a?(this.expiredRequestCount++,this.state="expired"):this.expiredRequestCount=0}},Tile.prototype.getExpiryTimeout=function(){if(this.expirationTime)return this.expiredRequestCount?1e3*(1<<Math.min(this.expiredRequestCount-1,31)):Math.min(this.expirationTime-(new Date).getTime(),Math.pow(2,31)-1)},Tile.prototype.stopPlacementThrottler=function(){this.placementThrottler.stop(),"reloading"===this.state&&(this.state="loaded")},module.exports=Tile;
},{"../@minemap/vector-tile":54,"../data/bucket":60,"../data/feature_index":76,"../style-spec/feature_filter":134,"../symbol/collision_box":188,"../symbol/collision_tile":190,"../util/throttler":245,"../util/util":247,"../util/vectortile_to_geojson":248,"pbf":35}],124:[function(_dereq_,module,exports){
"use strict";var LngLatBounds=_dereq_("../geo/lng_lat_bounds"),clamp=_dereq_("../util/util").clamp,TileBounds=function(t,n,o){this.bounds=LngLatBounds.convert(this.validateBounds(t)),this.minzoom=n||0,this.maxzoom=o||24};TileBounds.prototype.validateBounds=function(t){return Array.isArray(t)&&4===t.length?[Math.max(-180,t[0]),Math.max(-90,t[1]),Math.min(180,t[2]),Math.min(90,t[3])]:[-180,-90,180,90]},TileBounds.prototype.contains=function(t,n){var o=n?Math.min(t.z,n):t.z,a={minX:Math.floor(this.lngX(this.bounds.getWest(),o)),minY:Math.floor(this.latY(this.bounds.getNorth(),o)),maxX:Math.ceil(this.lngX(this.bounds.getEast(),o)),maxY:Math.ceil(this.latY(this.bounds.getSouth(),o))};return t.x>=a.minX&&t.x<a.maxX&&t.y>=a.minY&&t.y<a.maxY},TileBounds.prototype.lngX=function(t,n){return(t+180)*(Math.pow(2,n)/360)},TileBounds.prototype.latY=function(t,n){var o=clamp(Math.sin(Math.PI/180*t),-.9999,.9999),a=Math.pow(2,n)/(2*Math.PI);return Math.pow(2,n-1)+.5*Math.log((1+o)/(1-o))*-a},module.exports=TileBounds;
},{"../geo/lng_lat_bounds":84,"../util/util":247}],125:[function(_dereq_,module,exports){
"use strict";function edge(t,i){if(t.row>i.row){var o=t;t=i,i=o}return{x0:t.column,y0:t.row,x1:i.column,y1:i.row,dx:i.column-t.column,dy:i.row-t.row}}function scanSpans(t,i,o,r,e){var h=Math.max(o,Math.floor(i.y0)),s=Math.min(r,Math.ceil(i.y1));if(t.x0===i.x0&&t.y0===i.y0?t.x0+i.dy/t.dy*t.dx<i.x1:t.x1-i.dy/t.dy*t.dx<i.x0){var n=t;t=i,i=n}for(var a=t.dx/t.dy,d=i.dx/i.dy,y=t.dx>0,l=i.dx<0,x=h;x<s;x++){var u=a*Math.max(0,Math.min(t.dy,x+y-t.y0))+t.x0,c=d*Math.max(0,Math.min(i.dy,x+l-i.y0))+i.x0;e(Math.floor(c),Math.ceil(u),x)}}function scanTriangle(t,i,o,r,e,h){var s,n=edge(t,i),a=edge(i,o),d=edge(o,t);n.dy>a.dy&&(s=n,n=a,a=s),n.dy>d.dy&&(s=n,n=d,d=s),a.dy>d.dy&&(s=a,a=d,d=s),n.dy&&scanSpans(d,n,r,e,h),a.dy&&scanSpans(d,a,r,e,h)}function getQuadkey(t,i,o){for(var r,e="",h=t;h>0;h--)r=1<<h-1,e+=(i&r?1:0)+(o&r?2:0);return e}var WhooTS=_dereq_("../@minemap/whoots-js"),Coordinate=_dereq_("../geo/coordinate"),TileCoord=function(t,i,o,r){(void 0===r||isNaN(r))&&(r=0),this.z=+t,this.x=+i,this.y=+o,this.w=+r,(r*=2)<0&&(r=-1*r-1);var e=1<<this.z;this.id=32*(e*e*r+e*this.y+this.x)+this.z,this.posMatrix=null};TileCoord.prototype.toString=function(){return this.z+"/"+this.x+"/"+this.y},TileCoord.prototype.toCoordinate=function(t){var i=Math.min(this.z,void 0===t?this.z:t),o=Math.pow(2,i),r=this.y,e=this.x+o*this.w;return new Coordinate(e,r,i)},TileCoord.prototype.url=function(t,i,o){var r=WhooTS.getTileBBox(this.x,this.y,this.z),e=getQuadkey(this.z,this.x,this.y),h=Math.min(this.z,i||this.z),s="tms"===o?Math.pow(2,this.z)-this.y-1:this.y;return t[(this.x+this.y)%t.length].replace("{prefix}",(this.x%16).toString(16)+(this.y%16).toString(16)).replace("{z}",h).replace("{x}",this.x).replace("{y}",s).replace("{m}",Math.floor(this.x/16)).replace("{n}",Math.floor(s/16)).replace("{quadkey}",e).replace("{bbox-epsg-3857}",r)},TileCoord.prototype.toAccess=function(t,i){var o=(WhooTS.getTileBBox(this.x,this.y,this.z),getQuadkey(this.z,this.x,this.y),Math.min(this.z,t||this.z)),r="tms"===i?Math.pow(2,this.z)-this.y-1:this.y;return o+"_"+this.x+"_"+r},TileCoord.prototype.parent=function(t){return 0===this.z?null:this.z>t?new TileCoord(this.z-1,this.x,this.y,this.w):new TileCoord(this.z-1,Math.floor(this.x/2),Math.floor(this.y/2),this.w)},TileCoord.prototype.wrapped=function(){return new TileCoord(this.z,this.x,this.y,0)},TileCoord.prototype.children=function(t){if(this.z>=t)return[new TileCoord(this.z+1,this.x,this.y,this.w)];var i=this.z+1,o=2*this.x,r=2*this.y;return[new TileCoord(i,o,r,this.w),new TileCoord(i,o+1,r,this.w),new TileCoord(i,o,r+1,this.w),new TileCoord(i,o+1,r+1,this.w)]},TileCoord.cover=function(t,i,o,r){function e(t,i,e){var n,a,d,y;if(e>=0&&e<=h)for(n=t;n<i;n++)a=Math.floor(n/h),d=(n%h+h)%h,0!==a&&!0!==r||(y=new TileCoord(o,d,e,a),s[y.id]=y)}void 0===r&&(r=!0);var h=1<<t,s={};return scanTriangle(i[0],i[1],i[2],0,h,e),scanTriangle(i[2],i[3],i[0],0,h,e),Object.keys(s).map(function(t){return s[t]})},TileCoord.fromID=function(t){var i=t%32,o=1<<i,r=(t-i)/32,e=r%o,h=(r-e)/o%o,s=Math.floor(r/(o*o));return s%2!=0&&(s=-1*s-1),s/=2,new TileCoord(i,e,h,s)},module.exports=TileCoord;
},{"../@minemap/whoots-js":58,"../geo/coordinate":82}],126:[function(_dereq_,module,exports){
"use strict";var Evented=_dereq_("../util/evented"),util=_dereq_("../util/util"),loadTileJSON=_dereq_("./load_tilejson"),normalizeURL=_dereq_("../util/minemap").normalizeTileURL,TileBounds=_dereq_("./tile_bounds"),ResourceType=_dereq_("../util/ajax").ResourceType,VectorTileSource=function(e){function t(t,i,o,r){if(e.call(this),this.id=t,this.dispatcher=o,this.type="vector",this.minzoom=0,this.maxzoom=22,this.scheme="xyz",this.tileSize=512,this.reparseOverscaled=!0,this.isTileClipped=!0,util.extend(this,util.pick(i,["url","scheme","tileSize"])),this._options=util.extend({type:"vector"},i),512!==this.tileSize)throw new Error("vector tile sources must have a tileSize of 512");this.setEventedParent(r)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.load=function(){var e=this;this.fire("dataloading",{dataType:"source"}),loadTileJSON(this._options,this.map._transformRequest,function(t,i){t?e.fire("error",t):i&&(util.extend(e,i),e.setBounds(i.bounds),e.fire("data",{dataType:"source",sourceDataType:"metadata"}),e.fire("data",{dataType:"source",sourceDataType:"content"}))})},t.prototype.setBounds=function(e){this.bounds=e,e&&(this.tileBounds=new TileBounds(e,this.minzoom,this.maxzoom))},t.prototype.hasTile=function(e){return!this.tileBounds||this.tileBounds.contains(e,this.maxzoom)},t.prototype.onAdd=function(e){this.map=e,this.load()},t.prototype.serialize=function(){return util.extend({},this._options)},t.prototype.loadTile=function(e,t){function i(i,o){if(!e.aborted){if(i)return t(i);this.map._refreshExpiredTiles&&e.setExpiryData(o),e.loadVectorData(o,this.map.painter),e.redoWhenDone&&(e.redoWhenDone=!1,e.redoPlacement(this)),t(null),e.reloadCallback&&(this.loadTile(e,e.reloadCallback),e.reloadCallback=null)}}var o=e.coord.z>this.maxzoom?Math.pow(2,e.coord.z-this.maxzoom):1,r=normalizeURL(e.coord.url(this.tiles,this.maxzoom,this.scheme),this.url),s={request:this.map._transformRequest(r,ResourceType.Tile),uid:e.uid,coord:e.coord,zoom:e.coord.z,tileSize:this.tileSize*o,type:this.type,source:this.id,overscaling:o,angle:this.map.transform.angle,pitch:this.map.transform.pitch,cameraToCenterDistance:this.map.transform.cameraToCenterDistance,cameraToTileDistance:this.map.transform.cameraToTileDistance(e),showCollisionBoxes:this.map.showCollisionBoxes};e.workerID&&"expired"!==e.state?"loading"===e.state?e.reloadCallback=t:this.dispatcher.send("reloadTile",s,i.bind(this),e.workerID):e.workerID=this.dispatcher.send("loadTile",s,i.bind(this))},t.prototype.abortTile=function(e){this.dispatcher.send("abortTile",{uid:e.uid,type:this.type,source:this.id},null,e.workerID)},t.prototype.unloadTile=function(e){e.unloadVectorData(),this.dispatcher.send("removeTile",{uid:e.uid,type:this.type,source:this.id},null,e.workerID)},t}(Evented);module.exports=VectorTileSource;
},{"../util/ajax":221,"../util/evented":231,"../util/minemap":240,"../util/util":247,"./load_tilejson":115,"./tile_bounds":124}],127:[function(_dereq_,module,exports){
"use strict";function loadVectorTile(e,r){var o=ajax.getArrayBuffer(e.request,function(e,o){e?r(e):o&&r(null,{vectorTile:new vt.VectorTile(new Protobuf(o.data)),rawData:o.data,cacheControl:o.cacheControl,expires:o.expires})});return function(){o.abort()}}var ajax=_dereq_("../util/ajax"),vt=_dereq_("../@minemap/vector-tile"),Protobuf=_dereq_("pbf"),WorkerTile=_dereq_("./worker_tile"),util=_dereq_("../util/util"),VectorTileWorkerSource=function(e,r,o){this.actor=e,this.layerIndex=r,this.loadVectorData=o||loadVectorTile,this.loading={},this.loaded={}};VectorTileWorkerSource.prototype.loadTile=function(e,r){var o=this,t=e.source,a=e.uid;this.loading[t]||(this.loading[t]={});var i=this.loading[t][a]=new WorkerTile(e);i.abort=this.loadVectorData(e,function(e,l){if(delete o.loading[t][a],e||!l)return r(e);var c=l.rawData,n={};l.expires&&(n.expires=l.expires),l.cacheControl&&(n.cacheControl=l.cacheControl),i.vectorTile=l.vectorTile,i.parse(l.vectorTile,o.layerIndex,o.actor,function(e,o,t){if(e||!o)return r(e);r(null,util.extend({rawTileData:c},o,n),t)}),o.loaded[t]=o.loaded[t]||{},o.loaded[t][a]=i})},VectorTileWorkerSource.prototype.reloadTile=function(e,r){function o(e,o){if(this.reloadCallback){var t=this.reloadCallback;delete this.reloadCallback,this.parse(this.vectorTile,i.layerIndex,i.actor,t)}r(e,o)}var t=this.loaded[e.source],a=e.uid,i=this;if(t&&t[a]){var l=t[a];"parsing"===l.status?l.reloadCallback=r:"done"===l.status&&l.parse(l.vectorTile,this.layerIndex,this.actor,o.bind(l))}},VectorTileWorkerSource.prototype.abortTile=function(e){var r=this.loading[e.source],o=e.uid;r&&r[o]&&r[o].abort&&(r[o].abort(),delete r[o])},VectorTileWorkerSource.prototype.removeTile=function(e){var r=this.loaded[e.source],o=e.uid;r&&r[o]&&delete r[o]},VectorTileWorkerSource.prototype.redoPlacement=function(e,r){var o=this.loaded[e.source],t=this.loading[e.source],a=e.uid;if(o&&o[a]){var i=o[a],l=i.redoPlacement(e.angle,e.pitch,e.cameraToCenterDistance,e.cameraToTileDistance,e.showCollisionBoxes);l.result&&r(null,l.result,l.transferables)}else t&&t[a]&&(t[a].angle=e.angle)},module.exports=VectorTileWorkerSource;
},{"../@minemap/vector-tile":54,"../util/ajax":221,"../util/util":247,"./worker_tile":130,"pbf":35}],128:[function(_dereq_,module,exports){
"use strict";var ajax=_dereq_("../util/ajax"),ImageSource=_dereq_("./image_source"),VideoSource=function(e){function t(t,o,i,r){e.call(this,t,o,i,r),this.roundZoom=!0,this.type="video",this.options=o}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.load=function(){var e=this,t=this.options;this.urls=t.urls,ajax.getVideo(t.urls,function(t,o){if(t)e.fire("error",{error:t});else if(o){e.video=o,e.video.loop=!0;var i;e.video.addEventListener("playing",function(){i=e.map.style.animationLoop.set(1/0),e.map._rerender()}),e.video.addEventListener("pause",function(){e.map.style.animationLoop.cancel(i)}),e.map&&e.video.play(),e._finishLoading()}})},t.prototype.getVideo=function(){return this.video},t.prototype.onAdd=function(e){this.map||(this.map=e,this.load(),this.video&&(this.video.play(),this.setCoordinates(this.coordinates)))},t.prototype.prepare=function(){0===Object.keys(this.tiles).length||this.video.readyState<2||this._prepareImage(this.map.painter.gl,this.video)},t.prototype.serialize=function(){return{type:"video",urls:this.urls,coordinates:this.coordinates}},t}(ImageSource);module.exports=VideoSource;
},{"../util/ajax":221,"./image_source":114}],129:[function(_dereq_,module,exports){
"use strict";var Actor=_dereq_("../util/actor"),StyleLayerIndex=_dereq_("../style/style_layer_index"),VectorTileWorkerSource=_dereq_("./vector_tile_worker_source"),GeoJSONWorkerSource=_dereq_("./geojson_worker_source"),globalRTLTextPlugin=_dereq_("./rtl_text_plugin"),Worker=function(e){var r=this;this.self=e,this.actor=new Actor(e,this),this.layerIndexes={},this.workerSourceTypes={vector:VectorTileWorkerSource,geojson:GeoJSONWorkerSource},this.workerSources={},this.self.registerWorkerSource=function(e,o){if(r.workerSourceTypes[e])throw new Error('Worker source with name "'+e+'" already registered.');r.workerSourceTypes[e]=o},this.self.registerRTLTextPlugin=function(e){if(globalRTLTextPlugin.applyArabicShaping||globalRTLTextPlugin.processBidirectionalText)throw new Error("RTL text plugin already registered.");globalRTLTextPlugin.applyArabicShaping=e.applyArabicShaping,globalRTLTextPlugin.processBidirectionalText=e.processBidirectionalText}};Worker.prototype.setLayers=function(e,r){this.getLayerIndex(e).replace(r)},Worker.prototype.updateLayers=function(e,r){this.getLayerIndex(e).update(r.layers,r.removedIds,r.symbolOrder)},Worker.prototype.loadTile=function(e,r,o){this.getWorkerSource(e,r.type).loadTile(r,o)},Worker.prototype.reloadTile=function(e,r,o){this.getWorkerSource(e,r.type).reloadTile(r,o)},Worker.prototype.abortTile=function(e,r){this.getWorkerSource(e,r.type).abortTile(r)},Worker.prototype.removeTile=function(e,r){this.getWorkerSource(e,r.type).removeTile(r)},Worker.prototype.removeSource=function(e,r){var o=this.getWorkerSource(e,r.type);void 0!==o.removeSource&&o.removeSource(r)},Worker.prototype.redoPlacement=function(e,r,o){this.getWorkerSource(e,r.type).redoPlacement(r,o)},Worker.prototype.loadWorkerSource=function(e,r,o){try{this.self.importScripts(r.url),o()}catch(e){o(e)}},Worker.prototype.loadRTLTextPlugin=function(e,r,o){try{globalRTLTextPlugin.applyArabicShaping||globalRTLTextPlugin.processBidirectionalText||(this.self.importScripts(r),globalRTLTextPlugin.applyArabicShaping&&globalRTLTextPlugin.processBidirectionalText||o(new Error("RTL Text Plugin failed to import scripts from "+r)))}catch(e){o(e)}},Worker.prototype.getLayerIndex=function(e){var r=this.layerIndexes[e];return r||(r=this.layerIndexes[e]=new StyleLayerIndex),r},Worker.prototype.getWorkerSource=function(e,r){var o=this;if(this.workerSources[e]||(this.workerSources[e]={}),!this.workerSources[e][r]){var t={send:function(r,t,i,n){o.actor.send(r,t,i,n,e)}};this.workerSources[e][r]=new this.workerSourceTypes[r](t,this.getLayerIndex(e))}return this.workerSources[e][r]},module.exports=function(e){return new Worker(e)};
},{"../style/style_layer_index":182,"../util/actor":220,"./geojson_worker_source":112,"./rtl_text_plugin":120,"./vector_tile_worker_source":127}],130:[function(_dereq_,module,exports){
"use strict";function recalculateLayers(e,i){for(var t=0,r=e.layers;t<r.length;t+=1){r[t].recalculate(i)}}function serializeBuckets(e,i){return e.filter(function(e){return!e.isEmpty()}).map(function(e){return e.serialize(i)})}var FeatureIndex=_dereq_("../data/feature_index"),CollisionTile=_dereq_("../symbol/collision_tile"),CollisionBoxArray=_dereq_("../symbol/collision_box"),DictionaryCoder=_dereq_("../util/dictionary_coder"),util=_dereq_("../util/util"),WorkerTile=function(e){this.coord=e.coord,this.uid=e.uid,this.zoom=e.zoom,this.tileSize=e.tileSize,this.source=e.source,this.overscaling=e.overscaling,this.angle=e.angle,this.pitch=e.pitch,this.cameraToCenterDistance=e.cameraToCenterDistance,this.cameraToTileDistance=e.cameraToTileDistance,this.showCollisionBoxes=e.showCollisionBoxes};WorkerTile.prototype.parse=function(e,i,t,r){var o=this;this.status="parsing",this.data=e,this.collisionBoxArray=new CollisionBoxArray;var s=new DictionaryCoder(Object.keys(e.layers).sort()),a=new FeatureIndex(this.coord,this.overscaling);a.bucketLayerIDs=[];var n={},l={featureIndex:a,iconDependencies:{},glyphDependencies:{}},c=i.familiesBySource[this.source];for(var u in c){var h=e.layers[u];if(h){for(var y=s.encode(u),m=[],p=0;p<h.length;p++){var d=h.feature(p);m.push({feature:d,index:p,sourceLayerIndex:y})}for(var f=0,v=c[u];f<v.length;f+=1){var g=v[f],T=g[0];if(!(T.minzoom&&o.zoom<Math.floor(T.minzoom))&&!(T.maxzoom&&o.zoom>=T.maxzoom||T.layout&&"none"===T.layout.visibility)){for(var x=0,b=g;x<b.length;x+=1){b[x].recalculate(o.zoom)}(n[T.id]=T.createBucket({index:a.bucketLayerIDs.length,layers:g,zoom:o.zoom,overscaling:o.overscaling,collisionBoxArray:o.collisionBoxArray})).populate(m,l),a.bucketLayerIDs.push(g.map(function(e){return e.id}))}}}}var k=function(e){o.status="done",a.paintPropertyStatistics={};for(var i in n)util.extend(a.paintPropertyStatistics,n[i].getPaintPropertyStatistics());var t=[];r(null,{buckets:serializeBuckets(util.values(n),t),featureIndex:a.serialize(t),collisionTile:e.serialize(t),collisionBoxArray:o.collisionBoxArray.serialize()},t)};this.symbolBuckets=[];for(var B=i.symbolOrder.length-1;B>=0;B--){var z=n[i.symbolOrder[B]];z&&o.symbolBuckets.push(z)}if(0===this.symbolBuckets.length)return k(new CollisionTile(this.angle,this.pitch,this.cameraToCenterDistance,this.cameraToTileDistance,this.collisionBoxArray));var D=0,C=Object.keys(l.iconDependencies),A=util.mapObject(l.glyphDependencies,function(e){return Object.keys(e).map(Number)}),w=function(e){if(e)return r(e);if(2===++D){for(var i=new CollisionTile(o.angle,o.pitch,o.cameraToCenterDistance,o.cameraToTileDistance,o.collisionBoxArray),t=0,s=o.symbolBuckets;t<s.length;t+=1){var a=s[t];recalculateLayers(a,o.zoom),a.prepare(A,C),a.place(i,o.showCollisionBoxes)}k(i)}};Object.keys(A).length?t.send("getGlyphs",{uid:this.uid,stacks:A},function(e,i){A=i,w(e)}):w(),C.length?t.send("getIcons",{icons:C},function(e,i){C=i,w(e)}):w()},WorkerTile.prototype.redoPlacement=function(e,i,t,r,o){var s=this;if(this.angle=e,this.pitch=i,this.cameraToCenterDistance=t,this.cameraToTileDistance=r,"done"!==this.status)return{};for(var a=new CollisionTile(this.angle,this.pitch,this.cameraToCenterDistance,this.cameraToTileDistance,this.collisionBoxArray),n=0,l=s.symbolBuckets;n<l.length;n+=1){var c=l[n];recalculateLayers(c,s.zoom),c.place(a,o)}var u=[];return{result:{buckets:serializeBuckets(this.symbolBuckets,u),collisionTile:a.serialize(u)},transferables:u}},module.exports=WorkerTile;
},{"../data/feature_index":76,"../symbol/collision_box":188,"../symbol/collision_tile":190,"../util/dictionary_coder":227,"../util/util":247}],131:[function(_dereq_,module,exports){
"use strict";function deref(r,e){var f={};for(var t in r)"ref"!==t&&(f[t]=r[t]);return refProperties.forEach(function(r){r in e&&(f[r]=e[r])}),f}function derefLayers(r){r=r.slice();for(var e=Object.create(null),f=0;f<r.length;f++)e[r[f].id]=r[f];for(var t=0;t<r.length;t++)"ref"in r[t]&&(r[t]=deref(r[t],e[r[t].ref]));return r}var refProperties=_dereq_("./util/ref_properties");module.exports=derefLayers;
},{"./util/ref_properties":144}],132:[function(_dereq_,module,exports){
"use strict";function diffSources(e,r,o,a){e=e||{},r=r||{};var s;for(s in e)e.hasOwnProperty(s)&&(r.hasOwnProperty(s)||(o.push({command:operations.removeSource,args:[s]}),a[s]=!0));for(s in r)r.hasOwnProperty(s)&&(e.hasOwnProperty(s)?isEqual(e[s],r[s])||(o.push({command:operations.removeSource,args:[s]}),o.push({command:operations.addSource,args:[s,r[s]]}),a[s]=!0):o.push({command:operations.addSource,args:[s,r[s]]}))}function diffLayerPropertyChanges(e,r,o,a,s,t){e=e||{},r=r||{};var n;for(n in e)e.hasOwnProperty(n)&&(isEqual(e[n],r[n])||o.push({command:t,args:[a,n,r[n],s]}));for(n in r)r.hasOwnProperty(n)&&!e.hasOwnProperty(n)&&(isEqual(e[n],r[n])||o.push({command:t,args:[a,n,r[n],s]}))}function pluckId(e){return e.id}function indexById(e,r){return e[r.id]=r,e}function diffLayers(e,r,o){e=e||[],r=r||[];var a,s,t,n,i,p,m,u=e.map(pluckId),l=r.map(pluckId),y=e.reduce(indexById,{}),c=r.reduce(indexById,{}),d=u.slice(),h=Object.create(null);for(a=0,s=0;a<u.length;a++)t=u[a],c.hasOwnProperty(t)?s++:(o.push({command:operations.removeLayer,args:[t]}),d.splice(d.indexOf(t,s),1));for(a=0,s=0;a<l.length;a++)t=l[l.length-1-a],d[d.length-1-a]!==t&&(y.hasOwnProperty(t)?(o.push({command:operations.removeLayer,args:[t]}),d.splice(d.lastIndexOf(t,d.length-s),1)):s++,p=d[d.length-a],o.push({command:operations.addLayer,args:[c[t],p]}),d.splice(d.length-a,0,t),h[t]=!0);for(a=0;a<l.length;a++)if(t=l[a],n=y[t],i=c[t],!h[t]&&!isEqual(n,i))if(isEqual(n.source,i.source)&&isEqual(n["source-layer"],i["source-layer"])&&isEqual(n.type,i.type)){diffLayerPropertyChanges(n.layout,i.layout,o,t,null,operations.setLayoutProperty),diffLayerPropertyChanges(n.paint,i.paint,o,t,null,operations.setPaintProperty),isEqual(n.filter,i.filter)||o.push({command:operations.setFilter,args:[t,i.filter]}),isEqual(n.minzoom,i.minzoom)&&isEqual(n.maxzoom,i.maxzoom)||o.push({command:operations.setLayerZoomRange,args:[t,i.minzoom,i.maxzoom]});for(m in n)n.hasOwnProperty(m)&&"layout"!==m&&"paint"!==m&&"filter"!==m&&"metadata"!==m&&"minzoom"!==m&&"maxzoom"!==m&&(0===m.indexOf("paint.")?diffLayerPropertyChanges(n[m],i[m],o,t,m.slice(6),operations.setPaintProperty):isEqual(n[m],i[m])||o.push({command:operations.setLayerProperty,args:[t,m,i[m]]}));for(m in i)i.hasOwnProperty(m)&&!n.hasOwnProperty(m)&&"layout"!==m&&"paint"!==m&&"filter"!==m&&"metadata"!==m&&"minzoom"!==m&&"maxzoom"!==m&&(0===m.indexOf("paint.")?diffLayerPropertyChanges(n[m],i[m],o,t,m.slice(6),operations.setPaintProperty):isEqual(n[m],i[m])||o.push({command:operations.setLayerProperty,args:[t,m,i[m]]}))}else o.push({command:operations.removeLayer,args:[t]}),p=d[d.lastIndexOf(t)+1],o.push({command:operations.addLayer,args:[i,p]})}function diffStyles(e,r){if(!e)return[{command:operations.setStyle,args:[r]}];var o=[];try{if(!isEqual(e.version,r.version))return[{command:operations.setStyle,args:[r]}];isEqual(e.center,r.center)||o.push({command:operations.setCenter,args:[r.center]}),isEqual(e.zoom,r.zoom)||o.push({command:operations.setZoom,args:[r.zoom]}),isEqual(e.bearing,r.bearing)||o.push({command:operations.setBearing,args:[r.bearing]}),isEqual(e.pitch,r.pitch)||o.push({command:operations.setPitch,args:[r.pitch]}),isEqual(e.sprite,r.sprite)||o.push({command:operations.setSprite,args:[r.sprite]}),isEqual(e.glyphs,r.glyphs)||o.push({command:operations.setGlyphs,args:[r.glyphs]}),isEqual(e.transition,r.transition)||o.push({command:operations.setTransition,args:[r.transition]}),isEqual(e.light,r.light)||o.push({command:operations.setLight,args:[r.light]});var a={},s=[];diffSources(e.sources,r.sources,s,a);var t=[];e.layers&&e.layers.forEach(function(e){a[e.source]?o.push({command:operations.removeLayer,args:[e.id]}):t.push(e)}),o=o.concat(s),diffLayers(t,r.layers,o)}catch(e){console.warn("Unable to compute style diff:",e),o=[{command:operations.setStyle,args:[r]}]}return o}var isEqual=_dereq_("lodash.isequal"),operations={setStyle:"setStyle",addLayer:"addLayer",removeLayer:"removeLayer",setPaintProperty:"setPaintProperty",setLayoutProperty:"setLayoutProperty",setFilter:"setFilter",addSource:"addSource",removeSource:"removeSource",setLayerZoomRange:"setLayerZoomRange",setLayerProperty:"setLayerProperty",setCenter:"setCenter",setZoom:"setZoom",setBearing:"setBearing",setPitch:"setPitch",setSprite:"setSprite",setGlyphs:"setGlyphs",setTransition:"setTransition",setLight:"setLight"};module.exports=diffStyles,module.exports.operations=operations;
},{"lodash.isequal":31}],133:[function(_dereq_,module,exports){
"use strict";function ValidationError(r,i){for(var t=[],o=arguments.length-2;o-- >0;)t[o]=arguments[o+2];this.message=(r?r+": ":"")+format.apply(format,t),null!==i&&void 0!==i&&i.__line__&&(this.line=i.__line__)}var format=_dereq_("util").format;module.exports=ValidationError;
},{"util":42}],134:[function(_dereq_,module,exports){
"use strict";function createFilter(e){return new Function("f","var p = (f && f.properties || {}); return "+compile(e))}function compile(e){if(!e)return"true";var i=e[0];return e.length<=1?"any"===i?"false":"true":"("+("=="===i?compileComparisonOp(e[1],e[2],"===",!1):"!="===i?compileComparisonOp(e[1],e[2],"!==",!1):"<"===i||">"===i||"<="===i||">="===i?compileComparisonOp(e[1],e[2],i,!0):"any"===i?compileLogicalOp(e.slice(1),"||"):"all"===i?compileLogicalOp(e.slice(1),"&&"):"none"===i?compileNegation(compileLogicalOp(e.slice(1),"||")):"in"===i?compileInOp(e[1],e.slice(2)):"!in"===i?compileNegation(compileInOp(e[1],e.slice(2))):"has"===i?compileHasOp(e[1]):"!has"===i?compileNegation(compileHasOp(e[1])):"arrin"===i?compileArrInOp(e[1],e.slice(2)):"!arrin"===i?compileNegation(compileArrInOp(e[1],e.slice(2))):"true")+")"}function compilePropertyReference(e){return"$type"===e?"f.type":"$id"===e?"f.id":"p["+JSON.stringify(e)+"]"}function compileComparisonOp(e,i,n,r){var o=compilePropertyReference(e),t="$type"===e?types.indexOf(i):JSON.stringify(i);return(r?"typeof "+o+"=== typeof "+t+"&&":"")+o+n+t}function compileLogicalOp(e,i){return e.map(compile).join(i)}function compileInOp(e,i){"$type"===e&&(i=i.map(function(e){return types.indexOf(e)}));var n=JSON.stringify(i.sort(compare)),r=compilePropertyReference(e);return i.length<=200?n+".indexOf("+r+") !== -1":"function(v, a, i, j) {while (i <= j) { var m = (i + j) >> 1; if (a[m] === v) return true; if (a[m] > v) j = m - 1; else i = m + 1;}return false; }("+r+", "+n+",0,"+(i.length-1)+")"}function compileArrInOp(e,i){"$type"===e&&(i=i.map(function(e){return types.indexOf(e)}));var n=JSON.stringify(i.sort(compare));return'function(v, a,i, j) {while (i <= j) { if (!v)return false;var m = v.split(","); if (m.indexOf(a[i]) > -1) return true; i = i + 1;}return false; }('+compilePropertyReference(e)+", "+n+",0,"+(i.length-1)+")"}function compileHasOp(e){return"$id"===e?'"id" in f':JSON.stringify(e)+" in p"}function compileNegation(e){return"!("+e+")"}function compare(e,i){return e<i?-1:e>i?1:0}module.exports=createFilter;var types=["Unknown","Point","LineString","Polygon"];
},{}],135:[function(_dereq_,module,exports){
"use strict";function xyz2lab(r){return r>t3?Math.pow(r,1/3):r/t2+t0}function lab2xyz(r){return r>t1?r*r*r:t2*(r-t0)}function xyz2rgb(r){return 255*(r<=.0031308?12.92*r:1.055*Math.pow(r,1/2.4)-.055)}function rgb2xyz(r){return r/=255,r<=.04045?r/12.92:Math.pow((r+.055)/1.055,2.4)}function rgbToLab(r){var t=rgb2xyz(r[0]),a=rgb2xyz(r[1]),n=rgb2xyz(r[2]),b=xyz2lab((.4124564*t+.3575761*a+.1804375*n)/Xn),o=xyz2lab((.2126729*t+.7151522*a+.072175*n)/Yn);return[116*o-16,500*(b-o),200*(o-xyz2lab((.0193339*t+.119192*a+.9503041*n)/Zn)),r[3]]}function labToRgb(r){var t=(r[0]+16)/116,a=isNaN(r[1])?t:t+r[1]/500,n=isNaN(r[2])?t:t-r[2]/200;return t=Yn*lab2xyz(t),a=Xn*lab2xyz(a),n=Zn*lab2xyz(n),[xyz2rgb(3.2404542*a-1.5371385*t-.4985314*n),xyz2rgb(-.969266*a+1.8760108*t+.041556*n),xyz2rgb(.0556434*a-.2040259*t+1.0572252*n),r[3]]}function rgbToHcl(r){var t=rgbToLab(r),a=t[0],n=t[1],b=t[2],o=Math.atan2(b,n)*rad2deg;return[o<0?o+360:o,Math.sqrt(n*n+b*b),a,r[3]]}function hclToRgb(r){var t=r[0]*deg2rad,a=r[1];return labToRgb([r[2],Math.cos(t)*a,Math.sin(t)*a,r[3]])}var Xn=.95047,Yn=1,Zn=1.08883,t0=4/29,t1=6/29,t2=3*t1*t1,t3=t1*t1*t1,deg2rad=Math.PI/180,rad2deg=180/Math.PI;module.exports={lab:{forward:rgbToLab,reverse:labToRgb},hcl:{forward:rgbToHcl,reverse:hclToRgb}};
},{}],136:[function(_dereq_,module,exports){
"use strict";function identityFunction(t){return t}function createFunction(t,e){var o,n="color"===e.type;if(isFunctionDefinition(t)){var r=t.stops&&"object"==typeof t.stops[0][0],a=r||void 0!==t.property,i=r||!a,s=t.type||("interpolated"===e.function?"exponential":"interval");n&&(t=extend({},t),t.stops&&(t.stops=t.stops.map(function(t){return[t[0],parseColor(t[1])]})),t.default?t.default=parseColor(t.default):t.default=parseColor(e.default));var u,p,l;if("exponential"===s)u=evaluateExponentialFunction;else if("interval"===s)u=evaluateIntervalFunction;else if("categorical"===s){u=evaluateCategoricalFunction,p=Object.create(null);for(var c=0,f=t.stops;c<f.length;c+=1){var v=f[c];p[v[0]]=v[1]}l=typeof t.stops[0][0]}else{if("identity"!==s)throw new Error('Unknown function type "'+s+'"');u=evaluateIdentityFunction}var d;if(t.colorSpace&&"rgb"!==t.colorSpace){if(!colorSpaces[t.colorSpace])throw new Error("Unknown color space: "+t.colorSpace);var y=colorSpaces[t.colorSpace];t=JSON.parse(JSON.stringify(t));for(var F=0;F<t.stops.length;F++)t.stops[F]=[t.stops[F][0],y.forward(t.stops[F][1])];d=y.reverse}else d=identityFunction;if(r){for(var h={},g=[],m=0;m<t.stops.length;m++){var C=t.stops[m],S=C[0].zoom;void 0===h[S]&&(h[S]={zoom:S,type:t.type,property:t.property,default:t.default,stops:[]},g.push(S)),h[S].stops.push([C[0].value,C[1]])}for(var T=[],x=0,b=g;x<b.length;x+=1){var q=b[x];T.push([h[q].zoom,createFunction(h[q],e)])}o=function(o,n){return d(evaluateExponentialFunction({stops:T,base:t.base},e,o)(o,n))},o.isFeatureConstant=!1,o.isZoomConstant=!1}else i?(o=function(o){return d(u(t,e,o,p,l))},o.isFeatureConstant=!0,o.isZoomConstant=!1):(o=function(o,n){var r=n[t.property];return void 0===r?coalesce(t.default,e.default):d(u(t,e,r,p,l))},o.isFeatureConstant=!1,o.isZoomConstant=!0)}else n&&t&&(t=parseColor(t)),o=function(){return t},o.isFeatureConstant=!0,o.isZoomConstant=!0;return o}function coalesce(t,e,o){return void 0!==t?t:void 0!==e?e:void 0!==o?o:void 0}function evaluateCategoricalFunction(t,e,o,n,r){return coalesce(typeof o===r?n[o]:void 0,t.default,e.default)}function evaluateIntervalFunction(t,e,o){if("number"!==getType(o))return coalesce(t.default,e.default);var n=t.stops.length;if(1===n)return t.stops[0][1];if(o<=t.stops[0][0])return t.stops[0][1];if(o>=t.stops[n-1][0])return t.stops[n-1][1];var r=findStopLessThanOrEqualTo(t.stops,o);return t.stops[r][1]}function evaluateExponentialFunction(t,e,o){var n=void 0!==t.base?t.base:1;if("number"!==getType(o))return coalesce(t.default,e.default);var r=t.stops.length;if(1===r)return t.stops[0][1];if(o<=t.stops[0][0])return t.stops[0][1];if(o>=t.stops[r-1][0])return t.stops[r-1][1];var a=findStopLessThanOrEqualTo(t.stops,o),i=interpolationFactor(o,n,t.stops[a][0],t.stops[a+1][0]),s=t.stops[a][1],u=t.stops[a+1][1],p=interpolate[e.type]||identityFunction;return"function"==typeof s?function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var o=s.apply(void 0,t),n=u.apply(void 0,t);if(void 0!==o&&void 0!==n)return p(o,n,i)}:p(s,u,i)}function evaluateIdentityFunction(t,e,o){return"color"===e.type?o=parseColor(o):getType(o)===e.type||"enum"===e.type&&e.values[o]||(o=void 0),coalesce(o,t.default,e.default)}function findStopLessThanOrEqualTo(t,e){for(var o,n,r=t.length,a=0,i=r-1,s=0;a<=i;){if(s=Math.floor((a+i)/2),o=t[s][0],n=t[s+1][0],e===o||e>o&&e<n)return s;o<e?a=s+1:o>e&&(i=s-1)}return Math.max(s-1,0)}function isFunctionDefinition(t){return"object"==typeof t&&(t.stops||"identity"===t.type)}function interpolationFactor(t,e,o,n){var r=n-o,a=t-o;return 0===r?0:1===e?a/r:(Math.pow(e,a)-1)/(Math.pow(e,r)-1)}var colorSpaces=_dereq_("./color_spaces"),parseColor=_dereq_("../util/parse_color"),extend=_dereq_("../util/extend"),getType=_dereq_("../util/get_type"),interpolate=_dereq_("../util/interpolate");module.exports=createFunction,module.exports.isFunctionDefinition=isFunctionDefinition,module.exports.interpolationFactor=interpolationFactor,module.exports.findStopLessThanOrEqualTo=findStopLessThanOrEqualTo;
},{"../util/extend":140,"../util/get_type":141,"../util/interpolate":142,"../util/parse_color":143,"./color_spaces":135}],137:[function(_dereq_,module,exports){
"use strict";function key(r){return stringify(refProperties.map(function(e){return r[e]}))}function groupByLayout(r){for(var e={},t=0;t<r.length;t++){var i=key(r[t]),u=e[i];u||(u=e[i]=[]),u.push(r[t])}var n=[];for(var o in e)n.push(e[o]);return n}var refProperties=_dereq_("./util/ref_properties"),stringify=_dereq_("fast-stable-stringify");module.exports=groupByLayout;
},{"./util/ref_properties":144,"fast-stable-stringify":9}],138:[function(_dereq_,module,exports){
"use strict";module.exports=_dereq_("./v8.json");
},{"./v8.json":139}],139:[function(_dereq_,module,exports){
module.exports={"$version":8,"$root":{"version":{"required":true,"type":"enum","values":[8]},"name":{"type":"string"},"metadata":{"type":"*"},"center":{"type":"array","value":"number"},"zoom":{"type":"number"},"bearing":{"type":"number","default":0,"period":360,"units":"degrees"},"pitch":{"type":"number","default":0,"units":"degrees"},"light":{"type":"light"},"sources":{"required":true,"type":"sources"},"sprite":{"type":"string"},"glyphs":{"type":"string"},"transition":{"type":"transition"},"layers":{"required":true,"type":"array","value":"layer"}},"sources":{"*":{"type":"source"}},"source":["source_tile","source_geojson","source_video","source_image","source_canvas"],"source_tile":{"type":{"required":true,"type":"enum","values":{"vector":{},"raster":{}}},"url":{"type":"string"},"tiles":{"type":"array","value":"string"},"minzoom":{"type":"number","default":0},"maxzoom":{"type":"number","default":22},"tileSize":{"type":"number","default":512,"units":"pixels"},"*":{"type":"*"}},"source_geojson":{"type":{"required":true,"type":"enum","values":{"geojson":{}}},"data":{"type":"*"},"maxzoom":{"type":"number","default":18},"buffer":{"type":"number","default":128,"maximum":512,"minimum":0},"tolerance":{"type":"number","default":0.375},"cluster":{"type":"boolean","default":false},"clusterRadius":{"type":"number","default":50,"minimum":0},"clusterMaxZoom":{"type":"number"}},"source_video":{"type":{"required":true,"type":"enum","values":{"video":{}}},"urls":{"required":true,"type":"array","value":"string"},"coordinates":{"required":true,"type":"array","length":4,"value":{"type":"array","length":2,"value":"number"}}},"source_image":{"type":{"required":true,"type":"enum","values":{"image":{}}},"url":{"required":true,"type":"string"},"coordinates":{"required":true,"type":"array","length":4,"value":{"type":"array","length":2,"value":"number"}}},"source_canvas":{"type":{"required":true,"type":"enum","values":{"canvas":{}}},"coordinates":{"required":true,"type":"array","length":4,"value":{"type":"array","length":2,"value":"number"}},"animate":{"type":"boolean","default":"true"},"canvas":{"type":"string","required":true}},"layer":{"id":{"type":"string","required":true},"type":{"type":"enum","values":{"fill":{},"line":{},"symbol":{},"circle":{},"extrusion":{},"raster":{},"background":{},"sprite":{},"histogram":{},"airline":{},"tracking":{},"symtracking":{},"dynamicLine":{}}},"metadata":{"type":"*"},"ref":{"type":"string"},"source":{"type":"string"},"source-layer":{"type":"string"},"minzoom":{"type":"number","minimum":0,"maximum":24},"maxzoom":{"type":"number","minimum":0,"maximum":24},"filter":{"type":"filter"},"layout":{"type":"layout"},"paint":{"type":"paint"},"paint.*":{"type":"paint"}},"layout":["layout_fill","layout_line","layout_circle","layout_extrusion","layout_symbol","layout_raster","layout_background","layout_sprite","layout_histogram","layout_airline","layout_tracking","layout_symtracking","layout_dynamicLine"],"layout_background":{"visibility":{"type":"enum","values":{"visible":{},"none":{}},"default":"visible"}},"layout_fill":{"visibility":{"type":"enum","values":{"visible":{},"none":{}},"default":"visible"}},"layout_circle":{"visibility":{"type":"enum","values":{"visible":{},"none":{}},"default":"visible"}},"layout_extrusion":{"visibility":{"type":"enum","values":{"visible":{},"none":{}},"default":"visible"}},"layout_line":{"line-cap":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"butt":{},"round":{},"square":{}},"default":"butt"},"line-join":{"type":"enum","function":"piecewise-constant","zoom-function":true,"property-function":true,"values":{"bevel":{},"round":{},"miter":{}},"default":"miter"},"line-miter-limit":{"type":"number","default":2,"function":"interpolated","zoom-function":true,"requires":[{"line-join":"miter"}]},"line-round-limit":{"type":"number","default":1.05,"function":"interpolated","zoom-function":true,"requires":[{"line-join":"round"}]},"visibility":{"type":"enum","values":{"visible":{},"none":{}},"default":"visible"}},"layout_symbol":{"symbol-placement":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"point":{},"line":{}},"default":"point"},"symbol-spacing":{"type":"number","default":250,"minimum":1,"function":"interpolated","zoom-function":true,"units":"pixels","requires":[{"symbol-placement":"line"}]},"symbol-avoid-edges":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false},"icon-allow-overlap":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false,"requires":["icon-image"]},"icon-ignore-placement":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false,"requires":["icon-image"]},"icon-optional":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false,"requires":["icon-image","text-field"]},"icon-rotation-alignment":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{},"auto":{}},"default":"auto","requires":["icon-image"]},"icon-size":{"type":"number","default":1,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"units":"factor of the original icon size","requires":["icon-image"]},"icon-text-fit":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"none":{},"width":{},"height":{},"both":{}},"default":"none","requires":["icon-image","text-field"]},"icon-text-fit-padding":{"type":"array","value":"number","length":4,"default":[0,0,0,0],"units":"pixels","function":"interpolated","zoom-function":true,"requires":["icon-image","text-field",{"icon-text-fit":["both","width","height"]}]},"icon-image":{"type":"string","function":"piecewise-constant","zoom-function":true,"property-function":true,"tokens":true},"icon-rotate":{"type":"number","default":0,"period":360,"function":"interpolated","zoom-function":true,"property-function":true,"units":"degrees","requires":["icon-image"]},"icon-padding":{"type":"number","default":2,"minimum":0,"function":"interpolated","zoom-function":true,"units":"pixels","requires":["icon-image"]},"icon-keep-upright":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false,"requires":["icon-image",{"icon-rotation-alignment":"map"},{"symbol-placement":"line"}]},"icon-offset":{"type":"array","value":"number","length":2,"default":[0,0],"function":"interpolated","zoom-function":true,"property-function":true,"requires":["icon-image"]},"icon-pitch-alignment":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{},"auto":{}},"default":"auto","requires":["icon-image"]},"text-pitch-alignment":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{},"auto":{}},"default":"auto","requires":["text-field"]},"text-rotation-alignment":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{},"auto":{}},"default":"auto","requires":["text-field"]},"text-field":{"type":"string","function":"piecewise-constant","zoom-function":true,"property-function":true,"default":"","tokens":true},"text-font":{"type":"array","value":"string","function":"piecewise-constant","zoom-function":true,"default":["Open Sans Regular","Arial Unicode MS Regular"],"requires":["text-field"]},"text-size":{"type":"number","default":16,"minimum":0,"units":"pixels","function":"interpolated","zoom-function":true,"property-function":true,"requires":["text-field"]},"text-max-width":{"type":"number","default":10,"minimum":0,"units":"ems","function":"interpolated","zoom-function":true,"requires":["text-field"]},"text-line-height":{"type":"number","default":1.2,"units":"ems","function":"interpolated","zoom-function":true,"requires":["text-field"]},"text-letter-spacing":{"type":"number","default":0,"units":"ems","function":"interpolated","zoom-function":true,"requires":["text-field"]},"text-justify":{"type":"enum","function":"piecewise-constant","zoom-function":true,"property-function":true,"values":{"left":{},"center":{},"right":{}},"default":"center","requires":["text-field"]},"text-anchor":{"type":"enum","function":"piecewise-constant","zoom-function":true,"property-function":true,"values":{"center":{},"left":{},"right":{},"top":{},"bottom":{},"top-left":{},"top-right":{},"bottom-left":{},"bottom-right":{}},"default":"center","requires":["text-field"]},"text-max-angle":{"type":"number","default":45,"units":"degrees","function":"interpolated","zoom-function":true,"requires":["text-field",{"symbol-placement":"line"}]},"text-rotate":{"type":"number","default":0,"period":360,"units":"degrees","function":"interpolated","zoom-function":true,"property-function":true,"requires":["text-field"]},"text-padding":{"type":"number","default":2,"minimum":0,"units":"pixels","function":"interpolated","zoom-function":true,"requires":["text-field"]},"text-keep-upright":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":true,"requires":["text-field",{"text-rotation-alignment":"map"},{"symbol-placement":"line"}]},"text-transform":{"type":"enum","function":"piecewise-constant","zoom-function":true,"property-function":true,"values":{"none":{},"uppercase":{},"lowercase":{}},"default":"none","requires":["text-field"]},"text-offset":{"type":"array","value":"number","units":"ems","function":"interpolated","zoom-function":true,"property-function":true,"length":2,"default":[0,0],"requires":["text-field"]},"text-allow-overlap":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false,"requires":["text-field"]},"text-ignore-placement":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false,"requires":["text-field"]},"text-optional":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false,"requires":["text-field","icon-image"]},"visibility":{"type":"enum","values":{"visible":{},"none":{}},"default":"visible"}},"layout_raster":{"visibility":{"type":"enum","values":{"visible":{},"none":{}},"default":"visible"}},"layout_sprite":{"sprite-cap":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"butt":{},"round":{},"square":{}},"default":"butt"},"sprite-join":{"type":"enum","function":"piecewise-constant","zoom-function":true,"property-function":true,"values":{"bevel":{},"round":{},"miter":{}},"default":"miter"},"sprite-miter-limit":{"type":"number","default":2,"function":"interpolated","zoom-function":true,"requires":[{"sprite-join":"miter"}]},"sprite-round-limit":{"type":"number","default":1.05,"function":"interpolated","zoom-function":true,"requires":[{"sprite-join":"round"}]},"visibility":{"type":"enum","values":{"visible":{},"none":{}},"default":"visible"}},"layout_histogram":{"visibility":{"type":"enum","values":{"visible":{},"none":{}},"default":"visible"},"histogram-color-render":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false},"histogram-max-height-render":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false}},"layout_airline":{"airline-cap":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"butt":{},"round":{},"square":{}},"default":"butt"},"airline-join":{"type":"enum","function":"piecewise-constant","zoom-function":true,"property-function":true,"values":{"bevel":{},"round":{},"miter":{}},"default":"miter"},"airline-miter-limit":{"type":"number","default":2,"function":"interpolated","zoom-function":true,"requires":[{"airline-join":"miter"}]},"airline-round-limit":{"type":"number","default":1.05,"function":"interpolated","zoom-function":true,"requires":[{"airline-join":"round"}]},"visibility":{"type":"enum","values":{"visible":{},"none":{}},"default":"visible"}},"layout_tracking":{"tracking-cap":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"butt":{},"round":{},"square":{}},"default":"butt"},"tracking-join":{"type":"enum","function":"piecewise-constant","zoom-function":true,"property-function":true,"values":{"bevel":{},"round":{},"miter":{}},"default":"miter"},"tracking-miter-limit":{"type":"number","default":2,"function":"interpolated","zoom-function":true,"requires":[{"line-join":"miter"}]},"tracking-round-limit":{"type":"number","default":1.05,"function":"interpolated","zoom-function":true,"requires":[{"tracking-join":"round"}]},"visibility":{"type":"enum","values":{"visible":{},"none":{}},"default":"visible"},"tracking-display-mode":{"type":"enum","function":"piecewise-constant","values":["loop","reverse","loop-reserve","reverse-reserve"],"default":"loop"}},"layout_symtracking":{"symbol-placement":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"point":{},"line":{}},"default":"point"},"symbol-spacing":{"type":"number","default":250,"minimum":1,"function":"interpolated","zoom-function":true,"units":"pixels","requires":[{"symtracking-placement":"line"}]},"symbol-avoid-edges":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false},"icon-allow-overlap":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false,"requires":["icon-image"]},"icon-ignore-placement":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false,"requires":["icon-image"]},"icon-optional":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false,"requires":["icon-image","text-field"]},"icon-rotation-alignment":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{},"auto":{}},"default":"auto","requires":["icon-image"]},"icon-size":{"type":"number","default":1,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"units":"factor of the original icon size","requires":["icon-image"]},"icon-text-fit":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"none":{},"width":{},"height":{},"both":{}},"default":"none","requires":["icon-image","text-field"]},"icon-text-fit-padding":{"type":"array","value":"number","length":4,"default":[0,0,0,0],"units":"pixels","function":"interpolated","zoom-function":true,"requires":["icon-image","text-field",{"icon-text-fit":["both","width","height"]}]},"icon-image":{"type":"string","function":"piecewise-constant","zoom-function":true,"property-function":true,"tokens":true},"icon-rotate":{"type":"number","default":0,"period":360,"function":"interpolated","zoom-function":true,"property-function":true,"units":"degrees","requires":["icon-image"]},"icon-padding":{"type":"number","default":2,"minimum":0,"function":"interpolated","zoom-function":true,"units":"pixels","requires":["icon-image"]},"icon-keep-upright":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false,"requires":["icon-image",{"icon-rotation-alignment":"map"},{"symbol-placement":"line"}]},"icon-offset":{"type":"array","value":"number","length":2,"default":[0,0],"function":"interpolated","zoom-function":true,"property-function":true,"requires":["icon-image"]},"icon-pitch-alignment":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{},"auto":{}},"default":"auto","requires":["icon-image"]},"text-pitch-alignment":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{},"auto":{}},"default":"auto","requires":["text-field"]},"text-rotation-alignment":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{},"auto":{}},"default":"auto","requires":["text-field"]},"text-field":{"type":"string","function":"piecewise-constant","zoom-function":true,"property-function":true,"default":"","tokens":true},"text-font":{"type":"array","value":"string","function":"piecewise-constant","zoom-function":true,"default":["Open Sans Regular","Arial Unicode MS Regular"],"requires":["text-field"]},"text-size":{"type":"number","default":16,"minimum":0,"units":"pixels","function":"interpolated","zoom-function":true,"property-function":true,"requires":["text-field"]},"text-max-width":{"type":"number","default":10,"minimum":0,"units":"ems","function":"interpolated","zoom-function":true,"requires":["text-field"]},"text-line-height":{"type":"number","default":1.2,"units":"ems","function":"interpolated","zoom-function":true,"requires":["text-field"]},"text-letter-spacing":{"type":"number","default":0,"units":"ems","function":"interpolated","zoom-function":true,"requires":["text-field"]},"text-justify":{"type":"enum","function":"piecewise-constant","zoom-function":true,"property-function":true,"values":{"left":{},"center":{},"right":{}},"default":"center","requires":["text-field"]},"text-anchor":{"type":"enum","function":"piecewise-constant","zoom-function":true,"property-function":true,"values":{"center":{},"left":{},"right":{},"top":{},"bottom":{},"top-left":{},"top-right":{},"bottom-left":{},"bottom-right":{}},"default":"center","requires":["text-field"]},"text-max-angle":{"type":"number","default":45,"units":"degrees","function":"interpolated","zoom-function":true,"requires":["text-field",{"symbol-placement":"line"}]},"text-rotate":{"type":"number","default":0,"period":360,"units":"degrees","function":"interpolated","zoom-function":true,"property-function":true,"requires":["text-field"]},"text-padding":{"type":"number","default":2,"minimum":0,"units":"pixels","function":"interpolated","zoom-function":true,"requires":["text-field"]},"text-keep-upright":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":true,"requires":["text-field",{"text-rotation-alignment":"map"},{"symbol-placement":"line"}]},"text-transform":{"type":"enum","function":"piecewise-constant","zoom-function":true,"property-function":true,"values":{"none":{},"uppercase":{},"lowercase":{}},"default":"none","requires":["text-field"]},"text-offset":{"type":"array","value":"number","units":"ems","function":"interpolated","zoom-function":true,"property-function":true,"length":2,"default":[0,0],"requires":["text-field"]},"text-allow-overlap":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false,"requires":["text-field"]},"text-ignore-placement":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false,"requires":["text-field"]},"text-optional":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false,"requires":["text-field","icon-image"]},"visibility":{"type":"enum","values":{"visible":{},"none":{}},"default":"visible"},"symtracking-time-segment":{"type":"number","default":20,"minimum":1},"symtracking-fps":{"type":"number","default":1,"minimum":1}},"layout_dynamicLine":{"dynamicLine-cap":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"butt":{},"round":{},"square":{}},"default":"butt"},"dynamicLine-join":{"type":"enum","function":"piecewise-constant","zoom-function":true,"property-function":true,"values":{"bevel":{},"round":{},"miter":{}},"default":"miter"},"dynamicLine-miter-limit":{"type":"number","default":2,"function":"interpolated","zoom-function":true,"requires":[{"dynamicLine-join":"miter"}]},"dynamicLine-round-limit":{"type":"number","default":1.05,"function":"interpolated","zoom-function":true,"requires":[{"dynamicLine-join":"round"}]},"visibility":{"type":"enum","values":{"visible":{},"none":{}},"default":"visible"},"dynamicLine-display-mode":{"type":"enum","function":"piecewise-constant","values":["loop","reverse","loop-reserve","reverse-reserve"],"default":"loop"}},"filter":{"type":"array","value":"*"},"filter_operator":{"type":"enum","values":{"==":{},"!=":{},">":{},">=":{},"<":{},"<=":{},"in":{},"!in":{},"arrin":{},"!arrin":{},"all":{},"any":{},"none":{},"has":{},"!has":{}}},"geometry_type":{"type":"enum","values":{"Point":{},"LineString":{},"Polygon":{}}},"function":{"stops":{"type":"array","value":"function_stop"},"base":{"type":"number","default":1,"minimum":0},"property":{"type":"string","default":"$zoom"},"type":{"type":"enum","values":{"identity":{},"exponential":{},"interval":{},"categorical":{}},"default":"exponential"},"colorSpace":{"type":"enum","values":{"rgb":{},"lab":{},"hcl":{}},"default":"rgb"},"default":{"type":"*","required":false}},"function_stop":{"type":"array","minimum":0,"maximum":22,"value":["number","color"],"length":2},"light":{"anchor":{"type":"enum","default":"viewport","values":{"map":{},"viewport":{}},"transition":false,"zoom-function":true,"property-function":false,"function":"piecewise-constant"},"position":{"type":"array","default":[1.15,210,30],"length":3,"value":"number","transition":true,"function":"interpolated","zoom-function":true,"property-function":false},"color":{"type":"color","default":"#ffffff","function":"interpolated","zoom-function":true,"property-function":false,"transition":true},"intensity":{"type":"number","default":0.5,"minimum":0,"maximum":1,"function":"interpolated","zoom-function":true,"property-function":false,"transition":true}},"paint":["paint_fill","paint_line","paint_circle","paint_extrusion","paint_symbol","paint_raster","paint_background","paint_sprite","paint_histogram","paint_airline","paint_tracking","paint_symtracking","paint_dynamicLine"],"paint_fill":{"fill-antialias":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":true},"fill-opacity":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":1,"minimum":0,"maximum":1,"transition":true},"fill-color":{"type":"color","default":"#000000","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":[{"!":"fill-pattern"}]},"fill-outline-color":{"type":"color","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":[{"!":"fill-pattern"},{"fill-antialias":true}]},"fill-translate":{"type":"array","value":"number","length":2,"default":[0,0],"function":"interpolated","zoom-function":true,"transition":true,"units":"pixels"},"fill-translate-anchor":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{}},"default":"map","requires":["fill-translate"]},"fill-pattern":{"type":"string","function":"piecewise-constant","zoom-function":true,"transition":true},"fill-water":{"type":"enum","values":{"water":{},"none":{}},"default":"none"}},"paint_extrusion":{"extrusion-opacity":{"type":"number","function":"interpolated","zoom-function":true,"property-function":false,"default":1,"minimum":0,"maximum":1,"transition":true},"extrusion-color":{"type":"color","default":"#000000","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":[{"!":"extrusion-pattern"}]},"extrusion-translate":{"type":"array","value":"number","length":2,"default":[0,0],"function":"interpolated","zoom-function":true,"transition":true,"units":"pixels"},"extrusion-translate-anchor":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{}},"default":"map","requires":["extrusion-translate"]},"extrusion-pattern":{"type":"string","function":"piecewise-constant","zoom-function":true,"transition":true},"extrusion-height":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":0,"minimum":0,"maximum":65535,"units":"meters","transition":true},"extrusion-base":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":0,"minimum":0,"maximum":65535,"units":"meters","transition":true,"requires":["extrusion-height"]}},"paint_line":{"line-opacity":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":1,"minimum":0,"maximum":1,"transition":true},"line-color":{"type":"color","default":"#000000","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":[{"!":"line-pattern"}]},"line-translate":{"type":"array","value":"number","length":2,"default":[0,0],"function":"interpolated","zoom-function":true,"transition":true,"units":"pixels"},"line-translate-anchor":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{}},"default":"map","requires":["line-translate"]},"line-width":{"type":"number","default":1,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"line-gap-width":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"line-offset":{"type":"number","default":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"line-blur":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"line-dasharray":{"type":"array","value":"number","function":"piecewise-constant","zoom-function":true,"minimum":0,"transition":true,"units":"line widths","requires":[{"!":"line-pattern"}]},"line-pattern":{"type":"string","function":"piecewise-constant","zoom-function":true,"transition":true}},"paint_circle":{"circle-radius":{"type":"number","default":5,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"circle-color":{"type":"color","default":"#000000","function":"interpolated","zoom-function":true,"property-function":true,"transition":true},"circle-blur":{"type":"number","default":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true},"circle-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true},"circle-translate":{"type":"array","value":"number","length":2,"default":[0,0],"function":"interpolated","zoom-function":true,"transition":true,"units":"pixels"},"circle-translate-anchor":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{}},"default":"map","requires":["circle-translate"]},"circle-pitch-scale":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{}},"default":"map"},"circle-pitch-alignment":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{}},"default":"viewport"},"circle-stroke-width":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"circle-stroke-color":{"type":"color","default":"#000000","function":"interpolated","zoom-function":true,"property-function":true,"transition":true},"circle-stroke-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true}},"paint_symbol":{"icon-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":["icon-image"]},"icon-color":{"type":"color","default":"#000000","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":["icon-image"]},"icon-halo-color":{"type":"color","default":"rgba(0, 0, 0, 0)","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":["icon-image"]},"icon-halo-width":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels","requires":["icon-image"]},"icon-halo-blur":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels","requires":["icon-image"]},"icon-translate":{"type":"array","value":"number","length":2,"default":[0,0],"function":"interpolated","zoom-function":true,"transition":true,"units":"pixels","requires":["icon-image"]},"icon-translate-anchor":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{}},"default":"map","requires":["icon-image","icon-translate"]},"text-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":["text-field"]},"text-color":{"type":"color","default":"#000000","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":["text-field"]},"text-halo-color":{"type":"color","default":"rgba(0, 0, 0, 0)","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":["text-field"]},"text-halo-width":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels","requires":["text-field"]},"text-halo-blur":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels","requires":["text-field"]},"text-translate":{"type":"array","value":"number","length":2,"default":[0,0],"function":"interpolated","zoom-function":true,"transition":true,"units":"pixels","requires":["text-field"]},"text-translate-anchor":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{}},"default":"map","requires":["text-field","text-translate"]}},"paint_raster":{"raster-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"function":"interpolated","zoom-function":true,"transition":true},"raster-hue-rotate":{"type":"number","default":0,"period":360,"function":"interpolated","zoom-function":true,"transition":true,"units":"degrees"},"raster-brightness-min":{"type":"number","function":"interpolated","zoom-function":true,"default":0,"minimum":0,"maximum":1,"transition":true},"raster-brightness-max":{"type":"number","function":"interpolated","zoom-function":true,"default":1,"minimum":0,"maximum":1,"transition":true},"raster-saturation":{"type":"number","default":0,"minimum":-1,"maximum":1,"function":"interpolated","zoom-function":true,"transition":true},"raster-contrast":{"type":"number","default":0,"minimum":-1,"maximum":1,"function":"interpolated","zoom-function":true,"transition":true},"raster-fade-duration":{"type":"number","default":300,"minimum":0,"function":"interpolated","zoom-function":true,"transition":true,"units":"milliseconds"}},"paint_sprite":{"sprite-opacity":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":1,"minimum":0,"maximum":1,"transition":true},"sprite-color":{"type":"color","default":"#000000","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":[{"!":"sprite-pattern"}]},"sprite-translate":{"type":"array","value":"number","length":2,"default":[0,0],"function":"interpolated","zoom-function":true,"transition":true,"units":"pixels"},"sprite-translate-anchor":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{}},"default":"map","requires":["line-translate"]},"sprite-width":{"type":"number","default":1,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"sprite-gap-width":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"sprite-offset":{"type":"number","default":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"sprite-blur":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"sprite-dasharray":{"type":"array","value":"number","function":"piecewise-constant","zoom-function":true,"minimum":0,"transition":true,"units":"sprite widths","requires":[{"!":"sprite-pattern"}]},"sprite-pattern":{"type":"string","function":"piecewise-constant","zoom-function":true,"transition":true},"sprite-speed-factor":{"type":"number","default":1,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"}},"paint_histogram":{"histogram-dynamic":{"type":"boolean","function":"piecewise-constant","zoom-function":true,"default":false},"histogram-opacity":{"type":"number","function":"interpolated","zoom-function":true,"property-function":false,"default":1,"minimum":0,"maximum":1,"transition":true},"histogram-color":{"type":"color","default":"#000000","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":[{"!":"histogram-pattern"}]},"histogram-translate":{"type":"array","value":"number","length":2,"default":[0,0],"function":"interpolated","zoom-function":true,"transition":true,"units":"pixels"},"histogram-translate-anchor":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{}},"default":"map","requires":["histogram-translate"]},"histogram-pattern":{"type":"string","function":"piecewise-constant","zoom-function":true,"transition":true},"histogram-height":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":0,"minimum":0,"maximum":65535,"units":"meters","transition":true},"histogram-heightArr1":{"type":"color","function":"interpolated","zoom-function":true,"property-function":true,"default":[0,0,0,0],"units":"meters","transition":true},"histogram-heightArr2":{"type":"color","function":"interpolated","zoom-function":true,"property-function":true,"default":[0,0,0,0],"units":"meters","transition":true},"histogram-heightArr3":{"type":"color","function":"interpolated","zoom-function":true,"property-function":true,"default":[0,0,0,0],"units":"meters","transition":true},"histogram-time":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":1000,"minimum":0,"units":"millisecond","transition":true},"histogram-count":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":12,"minimum":1,"maximum":12,"units":"millisecond","transition":true},"histogram-colors":{"type":"array","value":"string","length":5,"default":["#ffc1e0","#bbffff","#00e3e3","#005757","#ea0000"],"function":"interpolated","zoom-function":true,"transition":true},"histogram-base":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":0,"minimum":0,"maximum":65535,"units":"meters","transition":true,"requires":["histogram-height"]},"histogram-max-height":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":200,"minimum":0,"units":"meters","transition":true}},"paint_airline":{"airline-opacity":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":1,"minimum":0,"maximum":1,"transition":true},"airline-color":{"type":"color","default":"#000000","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":[{"!":"airline-pattern"}]},"airline-translate":{"type":"array","value":"number","length":2,"default":[0,0],"function":"interpolated","zoom-function":true,"transition":true,"units":"pixels"},"airline-translate-anchor":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{}},"default":"map","requires":["airline-translate"]},"airline-width":{"type":"number","default":1,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"airline-gap-width":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"airline-offset":{"type":"number","default":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"airline-blur":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"airline-dasharray":{"type":"array","value":"number","function":"piecewise-constant","zoom-function":true,"minimum":0,"transition":true,"units":"","requires":[{"!":"airline-pattern"}]},"airline-pattern":{"type":"string","function":"piecewise-constant","zoom-function":true,"transition":true},"airline-seg-count":{"type":"number","function":"interpolated","zoom-function":true,"default":700,"minimum":0,"maximum":10000,"transition":true},"airline-seg-group":{"type":"number","function":"interpolated","zoom-function":true,"default":20,"minimum":1,"maximum":600,"transition":true},"airline-speed":{"type":"number","function":"interpolated","zoom-function":true,"property-function":false,"default":1,"minimum":1,"maximum":500,"transition":true},"airline-speed-factor":{"type":"number","default":1,"minimum":0,"function":"interpolated","zoom-function":true,"transition":true,"units":"pixels"},"airline-type":{"type":"enum","function":"piecewise-constant","zoom-function":true,"property-function":true,"values":["real-time","history","none"],"default":"history"}},"paint_tracking":{"tracking-opacity":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":1,"minimum":0,"maximum":1,"transition":true},"tracking-color":{"type":"color","default":"#000000","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":[{"!":"line-pattern"}]},"tracking-translate":{"type":"array","value":"number","length":2,"default":[0,0],"function":"interpolated","zoom-function":true,"transition":true,"units":"pixels"},"tracking-translate-anchor":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{}},"default":"map","requires":["tracking-translate"]},"tracking-width":{"type":"number","default":1,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"tracking-gap-width":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"tracking-offset":{"type":"number","default":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"tracking-blur":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"tracking-type":{"type":"enum","function":"piecewise-constant","zoom-function":true,"property-function":true,"values":["real-time","history","history-manual"],"default":"real-time"},"tracking-seg-count":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":700,"minimum":0,"maximum":10000,"transition":true},"tracking-seg-group":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":20,"minimum":1,"maximum":600,"transition":true},"tracking-speed":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":1,"minimum":1,"maximum":500,"transition":true},"tracking-delay":{"type":"number","zoom-function":true,"property-function":true,"default":20,"minimum":0,"maximum":120,"transition":true},"tracking-speed-factor":{"type":"number","default":1,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"}},"paint_symtracking":{"icon-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":["icon-image"]},"icon-color":{"type":"color","default":"#000000","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":["icon-image"]},"icon-halo-color":{"type":"color","default":"rgba(0, 0, 0, 0)","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":["icon-image"]},"icon-halo-width":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels","requires":["icon-image"]},"icon-halo-blur":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels","requires":["icon-image"]},"icon-translate":{"type":"array","value":"number","length":2,"default":[0,0],"function":"interpolated","zoom-function":true,"transition":true,"units":"pixels","requires":["icon-image"]},"icon-translate-anchor":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{}},"default":"map","requires":["icon-image","icon-translate"]},"text-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":["text-field"]},"text-color":{"type":"color","default":"#000000","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":["text-field"]},"text-halo-color":{"type":"color","default":"rgba(0, 0, 0, 0)","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":["text-field"]},"text-halo-width":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels","requires":["text-field"]},"text-halo-blur":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels","requires":["text-field"]},"text-translate":{"type":"array","value":"number","length":2,"default":[0,0],"function":"interpolated","zoom-function":true,"transition":true,"units":"pixels","requires":["text-field"]},"text-translate-anchor":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{}},"default":"map","requires":["text-field","text-translate"]},"symtracking-delay":{"type":"number","zoom-function":true,"default":10,"minimum":0,"maximum":120,"transition":true}},"paint_dynamicLine":{"dynamicLine-opacity":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":1,"minimum":0,"maximum":1,"transition":true},"dynamicLine-color":{"type":"color","default":"#000000","function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"requires":[{"!":"line-pattern"}]},"dynamicLine-translate":{"type":"array","value":"number","length":2,"default":[0,0],"function":"interpolated","zoom-function":true,"transition":true,"units":"pixels"},"dynamicLine-translate-anchor":{"type":"enum","function":"piecewise-constant","zoom-function":true,"values":{"map":{},"viewport":{}},"default":"map","requires":["dynamicLine-translate"]},"dynamicLine-width":{"type":"number","default":1,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"dynamicLine-gap-width":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"dynamicLine-offset":{"type":"number","default":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"dynamicLine-blur":{"type":"number","default":0,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"},"dynamicLine-dasharray":{"type":"array","value":"number","function":"piecewise-constant","zoom-function":true,"minimum":0,"transition":true,"units":"line widths","requires":[{"!":"line-pattern"}]},"dynamicLine-pattern":{"type":"string","function":"piecewise-constant","zoom-function":true,"transition":true},"dynamicLine-seg-count":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":700,"minimum":0,"maximum":10000,"transition":true},"dynamicLine-seg-group":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":20,"minimum":1,"maximum":600,"transition":true},"dynamicLine-speed":{"type":"number","function":"interpolated","zoom-function":true,"property-function":true,"default":1,"minimum":1,"maximum":500,"transition":true},"dynamicLine-speed-factor":{"type":"number","default":1,"minimum":0,"function":"interpolated","zoom-function":true,"property-function":true,"transition":true,"units":"pixels"}},"paint_background":{"background-color":{"type":"color","default":"#000000","function":"interpolated","zoom-function":true,"transition":true,"requires":[{"!":"background-pattern"}]},"background-pattern":{"type":"string","function":"piecewise-constant","zoom-function":true,"transition":true},"background-opacity":{"type":"number","default":1,"minimum":0,"maximum":1,"function":"interpolated","zoom-function":true,"transition":true}},"transition":{"duration":{"type":"number","default":300,"minimum":0,"units":"milliseconds"},"delay":{"type":"number","default":0,"minimum":0,"units":"milliseconds"}}}
},{}],140:[function(_dereq_,module,exports){
"use strict";module.exports=function(r){for(var t=[],e=arguments.length-1;e-- >0;)t[e]=arguments[e+1];for(var n=0,o=t;n<o.length;n+=1){var a=o[n];for(var f in a)r[f]=a[f]}return r};
},{}],141:[function(_dereq_,module,exports){
"use strict";module.exports=function(n){return n instanceof Number?"number":n instanceof String?"string":n instanceof Boolean?"boolean":Array.isArray(n)?"array":null===n?"null":typeof n};
},{}],142:[function(_dereq_,module,exports){
"use strict";function interpolate(t,e,n){return t*(1-n)+e*n}module.exports=interpolate,interpolate.number=interpolate,interpolate.vec2=function(t,e,n){return[interpolate(t[0],e[0],n),interpolate(t[1],e[1],n)]},interpolate.color=function(t,e,n){return[interpolate(t[0],e[0],n),interpolate(t[1],e[1],n),interpolate(t[2],e[2],n),interpolate(t[3],e[3],n)]},interpolate.array=function(t,e,n){return t.map(function(t,r){return interpolate(t,e[r],n)})};
},{}],143:[function(_dereq_,module,exports){
"use strict";var parseColorString=_dereq_("csscolorparser").parseCSSColor;module.exports=function(r){if("string"==typeof r){var e=parseColorString(r);if(!e)return;return[e[0]/255*e[3],e[1]/255*e[3],e[2]/255*e[3],e[3]]}return Array.isArray(r)?r:void 0};
},{"csscolorparser":7}],144:[function(_dereq_,module,exports){
"use strict";module.exports=["type","source","source-layer","minzoom","maxzoom","filter","layout"];
},{}],145:[function(_dereq_,module,exports){
"use strict";module.exports=function(n){return n instanceof Number||n instanceof String||n instanceof Boolean?n.valueOf():n};
},{}],146:[function(_dereq_,module,exports){
"use strict";var ValidationError=_dereq_("../error/validation_error"),getType=_dereq_("../util/get_type"),extend=_dereq_("../util/extend");module.exports=function(e){var r=_dereq_("./validate_function"),t=_dereq_("./validate_object"),i={"*":function(){return[]},array:_dereq_("./validate_array"),boolean:_dereq_("./validate_boolean"),number:_dereq_("./validate_number"),color:_dereq_("./validate_color"),constants:_dereq_("./validate_constants"),enum:_dereq_("./validate_enum"),filter:_dereq_("./validate_filter"),function:_dereq_("./validate_function"),layer:_dereq_("./validate_layer"),object:_dereq_("./validate_object"),source:_dereq_("./validate_source"),light:_dereq_("./validate_light"),string:_dereq_("./validate_string")},a=e.value,n=e.valueSpec,u=e.key,o=e.styleSpec,l=e.style;if("string"===getType(a)&&"@"===a[0]){if(o.$version>7)return[new ValidationError(u,a,"constants have been deprecated as of v8")];if(!(a in l.constants))return[new ValidationError(u,a,'constant "%s" not found',a)];e=extend({},e,{value:l.constants[a]})}return n.function&&"object"===getType(a)?r(e):n.type&&i[n.type]?i[n.type](e):t(extend({},e,{valueSpec:n.type?o[n.type]:n}))};
},{"../error/validation_error":133,"../util/extend":140,"../util/get_type":141,"./validate_array":147,"./validate_boolean":148,"./validate_color":149,"./validate_constants":150,"./validate_enum":151,"./validate_filter":152,"./validate_function":153,"./validate_layer":155,"./validate_light":157,"./validate_number":158,"./validate_object":159,"./validate_source":162,"./validate_string":163}],147:[function(_dereq_,module,exports){
"use strict";var getType=_dereq_("../util/get_type"),validate=_dereq_("./validate"),ValidationError=_dereq_("../error/validation_error");module.exports=function(e){var r=e.value,t=e.valueSpec,a=e.style,n=e.styleSpec,l=e.key,i=e.arrayElementValidator||validate;if("array"!==getType(r))return[new ValidationError(l,r,"array expected, %s found",getType(r))];if(t.length&&r.length!==t.length)return[new ValidationError(l,r,"array length %d expected, length %d found",t.length,r.length)];if(t["min-length"]&&r.length<t["min-length"])return[new ValidationError(l,r,"array length at least %d expected, length %d found",t["min-length"],r.length)];var o={type:t.value};n.$version<7&&(o.function=t.function),"object"===getType(t.value)&&(o=t.value);for(var u=[],d=0;d<r.length;d++)u=u.concat(i({array:r,arrayIndex:d,value:r[d],valueSpec:o,style:a,styleSpec:n,key:l+"["+d+"]"}));return u};
},{"../error/validation_error":133,"../util/get_type":141,"./validate":146}],148:[function(_dereq_,module,exports){
"use strict";var getType=_dereq_("../util/get_type"),ValidationError=_dereq_("../error/validation_error");module.exports=function(e){var r=e.value,o=e.key,t=getType(r);return"boolean"!==t?[new ValidationError(o,r,"boolean expected, %s found",t)]:[]};
},{"../error/validation_error":133,"../util/get_type":141}],149:[function(_dereq_,module,exports){
"use strict";var ValidationError=_dereq_("../error/validation_error"),getType=_dereq_("../util/get_type"),parseCSSColor=_dereq_("csscolorparser").parseCSSColor;module.exports=function(r){var e=r.key,o=r.value,t=getType(o);return"string"!==t?[new ValidationError(e,o,"color expected, %s found",t)]:null===parseCSSColor(o)?[new ValidationError(e,o,'color expected, "%s" found',o)]:[]};
},{"../error/validation_error":133,"../util/get_type":141,"csscolorparser":7}],150:[function(_dereq_,module,exports){
"use strict";var ValidationError=_dereq_("../error/validation_error"),getType=_dereq_("../util/get_type");module.exports=function(r){var e=r.key,t=r.value;if(r.styleSpec.$version>7)return t?[new ValidationError(e,t,"constants have been deprecated as of v8")]:[];var a=getType(t);if("object"!==a)return[new ValidationError(e,t,"object expected, %s found",a)];var o=[];for(var n in t)"@"!==n[0]&&o.push(new ValidationError(e+"."+n,t[n],'constants must start with "@"'));return o};
},{"../error/validation_error":133,"../util/get_type":141}],151:[function(_dereq_,module,exports){
"use strict";var ValidationError=_dereq_("../error/validation_error"),unbundle=_dereq_("../util/unbundle_jsonlint");module.exports=function(e){var r=e.key,n=e.value,u=e.valueSpec,o=[];return Array.isArray(u.values)?-1===u.values.indexOf(unbundle(n))&&o.push(new ValidationError(r,n,"expected one of [%s], %s found",u.values.join(", "),n)):-1===Object.keys(u.values).indexOf(unbundle(n))&&o.push(new ValidationError(r,n,"expected one of [%s], %s found",Object.keys(u.values).join(", "),n)),o};
},{"../error/validation_error":133,"../util/unbundle_jsonlint":145}],152:[function(_dereq_,module,exports){
"use strict";var ValidationError=_dereq_("../error/validation_error"),validateEnum=_dereq_("./validate_enum"),getType=_dereq_("../util/get_type"),unbundle=_dereq_("../util/unbundle_jsonlint");module.exports=function e(r){var t,a=r.value,n=r.key,l=r.styleSpec,s=[];if("array"!==getType(a))return[new ValidationError(n,a,"array expected, %s found",getType(a))];if(a.length<1)return[new ValidationError(n,a,"filter array must have at least 1 element")];switch(s=s.concat(validateEnum({key:n+"[0]",value:a[0],valueSpec:l.filter_operator,style:r.style,styleSpec:r.styleSpec})),unbundle(a[0])){case"<":case"<=":case">":case">=":a.length>=2&&"$type"===unbundle(a[1])&&s.push(new ValidationError(n,a,'"$type" cannot be use with operator "%s"',a[0]));case"==":case"!=":3!==a.length&&s.push(new ValidationError(n,a,'filter array for operator "%s" must have 3 elements',a[0]));case"in":case"!in":case"arrin":case"!arrin":a.length>=2&&"string"!==(t=getType(a[1]))&&s.push(new ValidationError(n+"[1]",a[1],"string expected, %s found",t));for(var o=2;o<a.length;o++)t=getType(a[o]),"$type"===unbundle(a[1])?s=s.concat(validateEnum({key:n+"["+o+"]",value:a[o],valueSpec:l.geometry_type,style:r.style,styleSpec:r.styleSpec})):"string"!==t&&"number"!==t&&"boolean"!==t&&s.push(new ValidationError(n+"["+o+"]",a[o],"string, number, or boolean expected, %s found",t));break;case"any":case"all":case"none":for(var i=1;i<a.length;i++)s=s.concat(e({key:n+"["+i+"]",value:a[i],style:r.style,styleSpec:r.styleSpec}));break;case"has":case"!has":t=getType(a[1]),2!==a.length?s.push(new ValidationError(n,a,'filter array for "%s" operator must have 2 elements',a[0])):"string"!==t&&s.push(new ValidationError(n+"[1]",a[1],"string expected, %s found",t))}return s};
},{"../error/validation_error":133,"../util/get_type":141,"../util/unbundle_jsonlint":145,"./validate_enum":151}],153:[function(_dereq_,module,exports){
"use strict";var ValidationError=_dereq_("../error/validation_error"),getType=_dereq_("../util/get_type"),validate=_dereq_("./validate"),validateObject=_dereq_("./validate_object"),validateArray=_dereq_("./validate_array"),validateNumber=_dereq_("./validate_number"),unbundle=_dereq_("../util/unbundle_jsonlint");module.exports=function(e){function t(e){if("identity"===p)return[new ValidationError(e.key,e.value,'identity function may not have a "stops" property')];var t=[],a=e.value;return t=t.concat(validateArray({key:e.key,value:a,valueSpec:e.valueSpec,style:e.style,styleSpec:e.styleSpec,arrayElementValidator:r})),"array"===getType(a)&&0===a.length&&t.push(new ValidationError(e.key,a,"array must have at least one stop")),t}function r(e){var t=[],r=e.value,o=e.key;if("array"!==getType(r))return[new ValidationError(o,r,"array expected, %s found",getType(r))];if(2!==r.length)return[new ValidationError(o,r,"array length %d expected, length %d found",2,r.length)];if(c){if("object"!==getType(r[0]))return[new ValidationError(o,r,"object expected, %s found",getType(r[0]))];if(void 0===r[0].zoom)return[new ValidationError(o,r,"object stop key must have zoom")];if(void 0===r[0].value)return[new ValidationError(o,r,"object stop key must have value")];if(l&&l>unbundle(r[0].zoom))return[new ValidationError(o,r[0].zoom,"stop zoom values must appear in ascending order")];unbundle(r[0].zoom)!==l&&(l=unbundle(r[0].zoom),i=void 0,s={}),t=t.concat(validateObject({key:o+"[0]",value:r[0],valueSpec:{zoom:{}},style:e.style,styleSpec:e.styleSpec,objectElementValidators:{zoom:validateNumber,value:a}}))}else t=t.concat(a({key:o+"[0]",value:r[0],valueSpec:{},style:e.style,styleSpec:e.styleSpec}));return t.concat(validate({key:o+"[1]",value:r[1],valueSpec:u,style:e.style,styleSpec:e.styleSpec}))}function a(e){var t=getType(e.value),r=unbundle(e.value);if(n){if(t!==n)return[new ValidationError(e.key,e.value,"%s stop domain type must match previous stop domain type %s",t,n)]}else n=t;if("number"!==t&&"string"!==t&&"boolean"!==t)return[new ValidationError(e.key,e.value,"stop domain value must be a number, string, or boolean")];if("number"!==t&&"categorical"!==p){var a="number expected, %s found";return u["property-function"]&&void 0===p&&(a+='\nIf you intended to use a categorical function, specify `"type": "categorical"`.'),[new ValidationError(e.key,e.value,a,t)]}return"categorical"!==p||"number"!==t||isFinite(r)&&Math.floor(r)===r?"categorical"!==p&&"number"===t&&void 0!==i&&r<i?[new ValidationError(e.key,e.value,"stop domain values must appear in ascending order")]:(i=r,"categorical"===p&&r in s?[new ValidationError(e.key,e.value,"stop domain values must be unique")]:(s[r]=!0,[])):[new ValidationError(e.key,e.value,"integer expected, found %s",r)]}function o(e){return validate({key:e.key,value:e.value,valueSpec:u,style:e.style,styleSpec:e.styleSpec})}var n,i,l,u=e.valueSpec,p=unbundle(e.value.type),s={},y="categorical"!==p&&void 0===e.value.property,d=!y,c="array"===getType(e.value.stops)&&"array"===getType(e.value.stops[0])&&"object"===getType(e.value.stops[0][0]),v=validateObject({key:e.key,value:e.value,valueSpec:e.styleSpec.function,style:e.style,styleSpec:e.styleSpec,objectElementValidators:{stops:t,default:o}});return"identity"===p&&y&&v.push(new ValidationError(e.key,e.value,'missing required property "property"')),"identity"===p||e.value.stops||v.push(new ValidationError(e.key,e.value,'missing required property "stops"')),"exponential"===p&&"piecewise-constant"===e.valueSpec.function&&v.push(new ValidationError(e.key,e.value,"exponential functions not supported")),e.styleSpec.$version>=8&&(d&&!e.valueSpec["property-function"]?v.push(new ValidationError(e.key,e.value,"property functions not supported")):y&&!e.valueSpec["zoom-function"]&&v.push(new ValidationError(e.key,e.value,"zoom functions not supported"))),"categorical"!==p&&!c||void 0!==e.value.property||v.push(new ValidationError(e.key,e.value,'"property" property is required')),v};
},{"../error/validation_error":133,"../util/get_type":141,"../util/unbundle_jsonlint":145,"./validate":146,"./validate_array":147,"./validate_number":158,"./validate_object":159}],154:[function(_dereq_,module,exports){
"use strict";var ValidationError=_dereq_("../error/validation_error"),validateString=_dereq_("./validate_string");module.exports=function(r){var e=r.value,t=r.key,a=validateString(r);return a.length?a:(-1===e.indexOf("{fontstack}")&&a.push(new ValidationError(t,e,'"glyphs" url must include a "{fontstack}" token')),-1===e.indexOf("{range}")&&a.push(new ValidationError(t,e,'"glyphs" url must include a "{range}" token')),a)};
},{"../error/validation_error":133,"./validate_string":163}],155:[function(_dereq_,module,exports){
"use strict";var ValidationError=_dereq_("../error/validation_error"),unbundle=_dereq_("../util/unbundle_jsonlint"),validateObject=_dereq_("./validate_object"),validateFilter=_dereq_("./validate_filter"),validatePaintProperty=_dereq_("./validate_paint_property"),validateLayoutProperty=_dereq_("./validate_layout_property"),extend=_dereq_("../util/extend");module.exports=function(e){var r=[],t=e.value,a=e.key,i=e.style,l=e.styleSpec;t.type||t.ref||r.push(new ValidationError(a,t,'either "type" or "ref" is required'));var u=unbundle(t.type),n=unbundle(t.ref);if(t.id)for(var o=unbundle(t.id),s=0;s<e.arrayIndex;s++){var d=i.layers[s];unbundle(d.id)===o&&r.push(new ValidationError(a,t.id,'duplicate layer id "%s", previously used at line %d',t.id,d.id.__line__))}if("ref"in t){["type","source","source-layer","filter","layout"].forEach(function(e){e in t&&r.push(new ValidationError(a,t[e],'"%s" is prohibited for ref layers',e))});var y;i.layers.forEach(function(e){unbundle(e.id)===n&&(y=e)}),y?y.ref?r.push(new ValidationError(a,t.ref,"ref cannot reference another ref layer")):u=unbundle(y.type):r.push(new ValidationError(a,t.ref,'ref layer "%s" not found',n))}else if("background"!==u)if(t.source){var c=i.sources&&i.sources[t.source],p=c&&unbundle(c.type);c?"vector"===p&&"raster"===u?r.push(new ValidationError(a,t.source,'layer "%s" requires a raster source',t.id)):"raster"===p&&"raster"!==u?r.push(new ValidationError(a,t.source,'layer "%s" requires a vector source',t.id)):"vector"!==p||t["source-layer"]||r.push(new ValidationError(a,t,'layer "%s" must specify a "source-layer"',t.id)):r.push(new ValidationError(a,t.source,'source "%s" not found',t.source))}else r.push(new ValidationError(a,t,'missing required property "source"'));return r=r.concat(validateObject({key:a,value:t,valueSpec:l.layer,style:e.style,styleSpec:e.styleSpec,objectElementValidators:{"*":function(){return[]},filter:validateFilter,layout:function(e){return validateObject({layer:t,key:e.key,value:e.value,style:e.style,styleSpec:e.styleSpec,objectElementValidators:{"*":function(e){return validateLayoutProperty(extend({layerType:u},e))}}})},paint:function(e){return validateObject({layer:t,key:e.key,value:e.value,style:e.style,styleSpec:e.styleSpec,objectElementValidators:{"*":function(e){return validatePaintProperty(extend({layerType:u},e))}}})}}}))};
},{"../error/validation_error":133,"../util/extend":140,"../util/unbundle_jsonlint":145,"./validate_filter":152,"./validate_layout_property":156,"./validate_object":159,"./validate_paint_property":160}],156:[function(_dereq_,module,exports){
"use strict";var validateProperty=_dereq_("./validate_property");module.exports=function(r){return validateProperty(r,"layout")};
},{"./validate_property":161}],157:[function(_dereq_,module,exports){
"use strict";var ValidationError=_dereq_("../error/validation_error"),getType=_dereq_("../util/get_type"),validate=_dereq_("./validate");module.exports=function(e){var t=e.value,r=e.styleSpec,a=r.light,i=e.style,n=[],o=getType(t);if(void 0===t)return n;if("object"!==o)return n=n.concat([new ValidationError("light",t,"object expected, %s found",o)]);for(var l in t){var c=l.match(/^(.*)-transition$/);n=c&&a[c[1]]&&a[c[1]].transition?n.concat(validate({key:l,value:t[l],valueSpec:r.transition,style:i,styleSpec:r})):a[l]?n.concat(validate({key:l,value:t[l],valueSpec:a[l],style:i,styleSpec:r})):n.concat([new ValidationError(l,t[l],'unknown property "%s"',l)])}return n};
},{"../error/validation_error":133,"../util/get_type":141,"./validate":146}],158:[function(_dereq_,module,exports){
"use strict";var getType=_dereq_("../util/get_type"),ValidationError=_dereq_("../error/validation_error");module.exports=function(e){var r=e.key,i=e.value,m=e.valueSpec,a=getType(i);return"number"!==a?[new ValidationError(r,i,"number expected, %s found",a)]:"minimum"in m&&i<m.minimum?[new ValidationError(r,i,"%s is less than the minimum value %s",i,m.minimum)]:"maximum"in m&&i>m.maximum?[new ValidationError(r,i,"%s is greater than the maximum value %s",i,m.maximum)]:[]};
},{"../error/validation_error":133,"../util/get_type":141}],159:[function(_dereq_,module,exports){
"use strict";var ValidationError=_dereq_("../error/validation_error"),getType=_dereq_("../util/get_type"),validateSpec=_dereq_("./validate");module.exports=function(e){var r=e.key,t=e.value,i=e.valueSpec||{},a=e.objectElementValidators||{},o=e.style,l=e.styleSpec,n=[],u=getType(t);if("object"!==u)return[new ValidationError(r,t,"object expected, %s found",u)];for(var d in t){var p=d.split(".")[0],s=i[p]||i["*"],c=void 0;if(a[p])c=a[p];else if(i[p])c=validateSpec;else if(a["*"])c=a["*"];else{if(!i["*"]){n.push(new ValidationError(r,t[d],'unknown property "%s"',d));continue}c=validateSpec}n=n.concat(c({key:(r?r+".":r)+d,value:t[d],valueSpec:s,style:o,styleSpec:l,object:t,objectKey:d}))}for(var v in i)i[v].required&&void 0===i[v].default&&void 0===t[v]&&n.push(new ValidationError(r,t,'missing required property "%s"',v));return n};
},{"../error/validation_error":133,"../util/get_type":141,"./validate":146}],160:[function(_dereq_,module,exports){
"use strict";var validateProperty=_dereq_("./validate_property");module.exports=function(r){return validateProperty(r,"paint")};
},{"./validate_property":161}],161:[function(_dereq_,module,exports){
"use strict";var validate=_dereq_("./validate"),ValidationError=_dereq_("../error/validation_error"),getType=_dereq_("../util/get_type");module.exports=function(e,t){var r=e.key,i=e.style,a=e.styleSpec,n=e.value,o=e.objectKey,l=a[t+"_"+e.layerType];if(!l)return[];var y=o.match(/^(.*)-transition$/);if("paint"===t&&y&&l[y[1]]&&l[y[1]].transition)return validate({key:r,value:n,valueSpec:a.transition,style:i,styleSpec:a});var p=e.valueSpec||l[o];if(!p)return[new ValidationError(r,n,'unknown property "%s"',o)];var s;if("string"===getType(n)&&p["property-function"]&&!p.tokens&&(s=/^{([^}]+)}$/.exec(n)))return[new ValidationError(r,n,'"%s" does not support interpolation syntax\nUse an identity property function instead: `{ "type": "identity", "property": %s` }`.',o,JSON.stringify(s[1]))];var u=[];return"symbol"===e.layerType&&"text-field"===o&&i&&!i.glyphs&&u.push(new ValidationError(r,n,'use of "text-field" requires a style "glyphs" property')),u.concat(validate({key:e.key,value:n,valueSpec:p,style:i,styleSpec:a}))};
},{"../error/validation_error":133,"../util/get_type":141,"./validate":146}],162:[function(_dereq_,module,exports){
"use strict";var ValidationError=_dereq_("../error/validation_error"),unbundle=_dereq_("../util/unbundle_jsonlint"),validateObject=_dereq_("./validate_object"),validateEnum=_dereq_("./validate_enum");module.exports=function(e){var a=e.value,t=e.key,r=e.styleSpec,l=e.style;if(!a.type)return[new ValidationError(t,a,'"type" is required')];var u=unbundle(a.type),i=[];switch(u){case"vector":case"raster":if(i=i.concat(validateObject({key:t,value:a,valueSpec:r.source_tile,style:e.style,styleSpec:r})),"url"in a)for(var s in a)["type","url","tileSize"].indexOf(s)<0&&i.push(new ValidationError(t+"."+s,a[s],'a source with a "url" property may not include a "%s" property',s));return i;case"geojson":return validateObject({key:t,value:a,valueSpec:r.source_geojson,style:l,styleSpec:r});case"video":return validateObject({key:t,value:a,valueSpec:r.source_video,style:l,styleSpec:r});case"image":return validateObject({key:t,value:a,valueSpec:r.source_image,style:l,styleSpec:r});case"canvas":return validateObject({key:t,value:a,valueSpec:r.source_canvas,style:l,styleSpec:r});default:return validateEnum({key:t+".type",value:a.type,valueSpec:{values:["vector","raster","geojson","video","image","canvas"]},style:l,styleSpec:r})}};
},{"../error/validation_error":133,"../util/unbundle_jsonlint":145,"./validate_enum":151,"./validate_object":159}],163:[function(_dereq_,module,exports){
"use strict";var getType=_dereq_("../util/get_type"),ValidationError=_dereq_("../error/validation_error");module.exports=function(r){var e=r.value,t=r.key,i=getType(e);return"string"!==i?[new ValidationError(t,e,"string expected, %s found",i)]:[]};
},{"../error/validation_error":133,"../util/get_type":141}],164:[function(_dereq_,module,exports){
"use strict";function validateStyleMin(e,a){a=a||latestStyleSpec;var t=[];return t=t.concat(validate({key:"",value:e,valueSpec:a.$root,styleSpec:a,style:e,objectElementValidators:{glyphs:validateGlyphsURL,"*":function(){return[]}}})),a.$version>7&&e.constants&&(t=t.concat(validateConstants({key:"constants",value:e.constants,style:e,styleSpec:a}))),sortErrors(t)}function sortErrors(e){return[].concat(e).sort(function(e,a){return e.line-a.line})}function wrapCleanErrors(e){return function(){return sortErrors(e.apply(this,arguments))}}var validateConstants=_dereq_("./validate/validate_constants"),validate=_dereq_("./validate/validate"),latestStyleSpec=_dereq_("./reference/latest"),validateGlyphsURL=_dereq_("./validate/validate_glyphs_url");validateStyleMin.source=wrapCleanErrors(_dereq_("./validate/validate_source")),validateStyleMin.light=wrapCleanErrors(_dereq_("./validate/validate_light")),validateStyleMin.layer=wrapCleanErrors(_dereq_("./validate/validate_layer")),validateStyleMin.filter=wrapCleanErrors(_dereq_("./validate/validate_filter")),validateStyleMin.paintProperty=wrapCleanErrors(_dereq_("./validate/validate_paint_property")),validateStyleMin.layoutProperty=wrapCleanErrors(_dereq_("./validate/validate_layout_property")),module.exports=validateStyleMin;
},{"./reference/latest":138,"./validate/validate":146,"./validate/validate_constants":150,"./validate/validate_filter":152,"./validate/validate_glyphs_url":154,"./validate/validate_layer":155,"./validate/validate_layout_property":156,"./validate/validate_light":157,"./validate/validate_paint_property":160,"./validate/validate_source":162}],165:[function(_dereq_,module,exports){
"use strict";var AnimationLoop=function(){this.n=0,this.times=[]};AnimationLoop.prototype.stopped=function(){return this.times=this.times.filter(function(t){return t.time>=(new Date).getTime()}),!this.times.length},AnimationLoop.prototype.set=function(t){return this.times.push({id:this.n,time:t+(new Date).getTime()}),this.n++},AnimationLoop.prototype.cancel=function(t){this.times=this.times.filter(function(i){return i.id!==t})},module.exports=AnimationLoop;
},{}],166:[function(_dereq_,module,exports){
"use strict";var Evented=_dereq_("../util/evented"),ajax=_dereq_("../util/ajax"),browser=_dereq_("../util/browser"),normalizeURL=_dereq_("../util/minemap").normalizeSpriteURL,SpritePosition=function(){this.x=0,this.y=0,this.width=0,this.height=0,this.pixelRatio=1,this.sdf=!1},ImageSprite=function(t){function e(e,i,r){var a=this;t.call(this),this.base=e,this.retina=browser.devicePixelRatio>1,this.setEventedParent(r),this.transformRequestFn=i;var o=this.retina?"@2x":"",n=normalizeURL(e,o,".json"),s=i(n,ajax.ResourceType.SpriteJSON);ajax.getJSON(s,function(t,e){t?a.fire("error",{error:t}):e&&(a.data=e,a.imgData&&a.fire("data",{dataType:"style"}))}),n=normalizeURL(e,o,".png");var p=i(n,ajax.ResourceType.SpriteImage);ajax.getImage(p,function(t,e){t?a.fire("error",{error:t}):e&&(a.imgData=browser.getImageData(e),a.width=e.width,a.data&&a.fire("data",{dataType:"style"}))})}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.toJSON=function(){return this.base},e.prototype.loaded=function(){return!(!this.data||!this.imgData)},e.prototype.resize=function(){var t=this;if(browser.devicePixelRatio>1!==this.retina){var i=new e(this.base,this.transformRequestFn);i.on("data",function(){t.data=i.data,t.imgData=i.imgData,t.width=i.width,t.retina=i.retina})}},e.prototype.getSpritePosition=function(t){if(!this.loaded())return new SpritePosition;var e=this.data&&this.data[t];return e&&this.imgData?e:new SpritePosition},e}(Evented);module.exports=ImageSprite;
},{"../util/ajax":221,"../util/browser":222,"../util/evented":231,"../util/minemap":240}],167:[function(_dereq_,module,exports){
"use strict";var styleSpec=_dereq_("../style-spec/reference/latest"),util=_dereq_("../util/util"),Evented=_dereq_("../util/evented"),validateStyle=_dereq_("./validate_style"),StyleDeclaration=_dereq_("./style_declaration"),StyleTransition=_dereq_("./style_transition"),TRANSITION_SUFFIX="-transition",Light=function(t){function i(i){t.call(this),this.properties=["anchor","color","position","intensity"],this._specifications=styleSpec.light,this.set(i)}return t&&(i.__proto__=t),i.prototype=Object.create(t&&t.prototype),i.prototype.constructor=i,i.prototype.set=function(t){var i=this;if(!this._validate(validateStyle.light,t)){this._declarations={},this._transitions={},this._transitionOptions={},this.calculated={},t=util.extend({anchor:this._specifications.anchor.default,color:this._specifications.color.default,position:this._specifications.position.default,intensity:this._specifications.intensity.default},t);for(var e=0,o=i.properties;e<o.length;e+=1){var n=o[e];i._declarations[n]=new StyleDeclaration(i._specifications[n],t[n])}return this}},i.prototype.getLight=function(){return{anchor:this.getLightProperty("anchor"),color:this.getLightProperty("color"),position:this.getLightProperty("position"),intensity:this.getLightProperty("intensity")}},i.prototype.getLightProperty=function(t){return util.endsWith(t,TRANSITION_SUFFIX)?this._transitionOptions[t]:this._declarations[t]&&this._declarations[t].value},i.prototype.getLightValue=function(t,i){if("position"===t){var e=this._transitions[t].calculate(i),o=util.sphericalToCartesian(e);return{x:o[0],y:o[1],z:o[2]}}return this._transitions[t].calculate(i)},i.prototype.setLight=function(t){var i=this;if(!this._validate(validateStyle.light,t))for(var e in t){var o=t[e];util.endsWith(e,TRANSITION_SUFFIX)?i._transitionOptions[e]=o:null===o||void 0===o?delete i._declarations[e]:i._declarations[e]=new StyleDeclaration(i._specifications[e],o)}},i.prototype.recalculate=function(t){var i=this;for(var e in i._declarations)i.calculated[e]=i.getLightValue(e,{zoom:t})},i.prototype._applyLightDeclaration=function(t,i,e,o,n){var r=e.transition?this._transitions[t]:void 0,a=this._specifications[t];if(null!==i&&void 0!==i||(i=new StyleDeclaration(a,a.default)),!r||r.declaration.json!==i.json){var s=util.extend({duration:300,delay:0},o,this.getLightProperty(t+TRANSITION_SUFFIX)),l=this._transitions[t]=new StyleTransition(a,i,r,s);l.instant()||(l.loopID=n.set(l.endTime-Date.now())),r&&n.cancel(r.loopID)}},i.prototype.updateLightTransitions=function(t,i,e){var o,n=this;for(o in n._declarations)n._applyLightDeclaration(o,n._declarations[o],t,i,e)},i.prototype._validate=function(t,i){return validateStyle.emitErrors(this,t.call(validateStyle,util.extend({value:i,style:{glyphs:!0,sprite:!0},styleSpec:styleSpec})))},i}(Evented);module.exports=Light;
},{"../style-spec/reference/latest":138,"../util/evented":231,"../util/util":247,"./style_declaration":169,"./style_transition":183,"./validate_style":184}],168:[function(_dereq_,module,exports){
"use strict";var Evented=_dereq_("../util/evented"),StyleLayer=_dereq_("./style_layer"),ImageSprite=_dereq_("./image_sprite"),Light=_dereq_("./light"),GlyphSource=_dereq_("../symbol/glyph_source"),SpriteAtlas=_dereq_("../symbol/sprite_atlas"),LineAtlas=_dereq_("../render/line_atlas"),util=_dereq_("../util/util"),ajax=_dereq_("../util/ajax"),minemap=_dereq_("../util/minemap"),browser=_dereq_("../util/browser"),Dispatcher=_dereq_("../util/dispatcher"),AnimationLoop=_dereq_("./animation_loop"),validateStyle=_dereq_("./validate_style"),getSourceType=_dereq_("../source/source").getType,setSourceType=_dereq_("../source/source").setType,QueryFeatures=_dereq_("../source/query_features"),SourceCache=_dereq_("../source/source_cache"),styleSpec=_dereq_("../style-spec/reference/latest"),MinemapFunction=_dereq_("../style-spec/function"),getWorkerPool=_dereq_("../util/global_worker_pool"),deref=_dereq_("../style-spec/deref"),diff=_dereq_("../style-spec/diff"),rtlTextPlugin=_dereq_("../source/rtl_text_plugin"),supportedDiffOperations=util.pick(diff.operations,["addLayer","removeLayer","setPaintProperty","setLayoutProperty","setFilter","addSource","removeSource","setLayerZoomRange","setLight","setTransition"]),ignoredDiffOperations=util.pick(diff.operations,["setCenter","setZoom","setBearing","setPitch"]),Style=function(e){function t(t,r,i){var s=this;e.call(this),this.map=r,this.animationLoop=r&&r.animationLoop||new AnimationLoop,this.dispatcher=new Dispatcher(getWorkerPool(),this),this.spriteAtlas=new SpriteAtlas(1024,1024),this.spriteAtlas.setEventedParent(this),this.lineAtlas=new LineAtlas(256,512),this._layers={},this._order=[],this.sourceCaches={},this.zoomHistory={},this._loaded=!1,util.bindAll(["_redoPlacement"],this),this._resetUpdates(),i=util.extend({validate:"string"!=typeof t||!minemap.isMinemapURL(t)},i),this.setEventedParent(r),this.fire("dataloading",{dataType:"style"});var o=this;this._rtlTextPluginCallback=rtlTextPlugin.registerForPluginAvailability(function(e){o.dispatcher.broadcast("loadRTLTextPlugin",e.pluginBlobURL,e.errorCallback);for(var t in o.sourceCaches)o.sourceCaches[t].reload()});var a=function(e,t){return s.map?s.map._transformRequest(e,t):{url:e}},n=function(e,t){if(e)s.fire("error",{error:e});else if(t){if(i.validate&&validateStyle.emitErrors(s,validateStyle(t)))return;s._loaded=!0,s.stylesheet=t,s.updateClasses();for(var r in t.sources)s.addSource(r,t.sources[r],i);t.sprite&&(s.sprite=new ImageSprite(t.sprite,a,s)),s.glyphSource=new GlyphSource(t.glyphs,i.localIdeographFontFamily,a,s),s._resolve(),s.fire("data",{dataType:"style"}),s.fire("style.load")}};"string"==typeof t?ajax.getJSON(a(minemap.normalizeStyleURL(t),ajax.ResourceType.Style),n):browser.frame(function(){return n(null,t)}),this.on("data",function(e){if("source"===e.dataType&&"metadata"===e.sourceDataType){var t=s.sourceCaches[e.sourceId];if(t){var r=t.getSource();if(r&&r.vectorLayerIds)for(var i in s._layers){var o=s._layers[i];o.source===r.id&&s._validateLayer(o)}}}})}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._validateLayer=function(e){var t=this.sourceCaches[e.source];if(t){var r=e.sourceLayer;if(r){var i=t.getSource();("geojson"===i.type||i.vectorLayerIds&&-1===i.vectorLayerIds.indexOf(r))&&this.fire("error",{error:new Error('Source layer "'+r+'" does not exist on source "'+i.id+'" as specified by style layer "'+e.id+'"')})}}},t.prototype.loaded=function(){var e=this;if(!this._loaded)return!1;if(Object.keys(this._updatedSources).length)return!1;for(var t in e.sourceCaches)if(!e.sourceCaches[t].loaded())return!1;return!(this.sprite&&!this.sprite.loaded())},t.prototype._resolve=function(){var e=this,t=deref(this.stylesheet.layers);this._order=t.map(function(e){return e.id}),this._layers={};for(var r=0,i=t;r<i.length;r+=1){var s=i[r];s=StyleLayer.create(s),s.setEventedParent(e,{layer:{id:s.id}}),e._layers[s.id]=s}this.dispatcher.broadcast("setLayers",this._serializeLayers(this._order)),this.light=new Light(this.stylesheet.light)},t.prototype._serializeLayers=function(e){var t=this;return e.map(function(e){return t._layers[e].serialize()})},t.prototype._applyClasses=function(e,t){var r=this;if(this._loaded){e=e||[],t=t||{transition:!0};var i=this.stylesheet.transition||{},s=this._updatedAllPaintProps?this._layers:this._updatedPaintProps;for(var o in s){var a=r._layers[o],n=r._updatedPaintProps[o];if(r._updatedAllPaintProps||n.all)a.updatePaintTransitions(e,t,i,r.animationLoop,r.zoomHistory);else for(var l in n)r._layers[o].updatePaintTransition(l,e,t,i,r.animationLoop,r.zoomHistory)}this.light.updateLightTransitions(t,i,this.animationLoop)}},t.prototype._recalculate=function(e){var t=this;if(this._loaded){for(var r in t.sourceCaches)t.sourceCaches[r].used=!1;this._updateZoomHistory(e);for(var i=0,s=t._order;i<s.length;i+=1){var o=s[i],a=t._layers[o];a.recalculate(e),!a.isHidden(e)&&a.source&&(t.sourceCaches[a.source].used=!0)}this.light.recalculate(e);Math.floor(this.z)!==Math.floor(e)&&this.animationLoop.set(300),this.z=e}},t.prototype._updateZoomHistory=function(e){var t=this.zoomHistory;void 0===t.lastIntegerZoom&&(t.lastIntegerZoom=Math.floor(e),t.lastIntegerZoomTime=0,t.lastZoom=e),Math.floor(t.lastZoom)<Math.floor(e)?(t.lastIntegerZoom=Math.floor(e),t.lastIntegerZoomTime=Date.now()):Math.floor(t.lastZoom)>Math.floor(e)&&(t.lastIntegerZoom=Math.floor(e+1),t.lastIntegerZoomTime=Date.now()),t.lastZoom=e},t.prototype._checkLoaded=function(){if(!this._loaded)throw new Error("Style is not done loading")},t.prototype.update=function(e,t){var r=this;if(this._changed){var i=Object.keys(this._updatedLayers),s=Object.keys(this._removedLayers);(i.length||s.length||this._updatedSymbolOrder)&&this._updateWorkerLayers(i,s);for(var o in r._updatedSources){var a=r._updatedSources[o];"reload"===a?r._reloadSource(o):"clear"===a&&r._clearSource(o)}this._applyClasses(e,t),this._resetUpdates(),this.fire("data",{dataType:"style"})}},t.prototype._updateWorkerLayers=function(e,t){var r=this,i=this._updatedSymbolOrder?this._order.filter(function(e){return"symbol"===r._layers[e].type||"symtracking"===r._layers[e].type}):null;this.dispatcher.broadcast("updateLayers",{layers:this._serializeLayers(e),removedIds:t,symbolOrder:i})},t.prototype._resetUpdates=function(){this._changed=!1,this._updatedLayers={},this._removedLayers={},this._updatedSymbolOrder=!1,this._updatedSources={},this._updatedPaintProps={},this._updatedAllPaintProps=!1},t.prototype.setState=function(e){var t=this;if(this._checkLoaded(),validateStyle.emitErrors(this,validateStyle(e)))return!1;e=util.clone(e),e.layers=deref(e.layers);var r=diff(this.serialize(),e).filter(function(e){return!(e.command in ignoredDiffOperations)});if(0===r.length)return!1;var i=r.filter(function(e){return!(e.command in supportedDiffOperations)});if(i.length>0)throw new Error("Unimplemented: "+i.map(function(e){return e.command}).join(", ")+".");return r.forEach(function(e){"setTransition"!==e.command&&t[e.command].apply(t,e.args)}),this.stylesheet=e,!0},t.prototype.addSource=function(e,t,r){var i=this;if(this._checkLoaded(),void 0!==this.sourceCaches[e])throw new Error("There is already a source with this ID");if(!t.type)throw new Error("The type property must be defined, but the only the following properties were given: "+Object.keys(t).join(", ")+".");if(!(["vector","raster","geojson","video","image","canvas"].indexOf(t.type)>=0&&this._validate(validateStyle.source,"sources."+e,t,null,r))){var s=this.sourceCaches[e]=new SourceCache(e,t,this.dispatcher);s.style=this,s.setEventedParent(this,function(){return{isSourceLoaded:i.loaded(),source:s.serialize(),sourceId:e}}),s.onAdd(this.map),this._changed=!0}},t.prototype.removeSource=function(e){if(this._checkLoaded(),void 0===this.sourceCaches[e])throw new Error("There is no source with this ID");var t=this.sourceCaches[e];delete this.sourceCaches[e],delete this._updatedSources[e],t.fire("data",{sourceDataType:"metadata",dataType:"source",sourceId:e}),t.setEventedParent(null),t.clearTiles(),t.onRemove&&t.onRemove(this.map),this._changed=!0},t.prototype.getSource=function(e){return this.sourceCaches[e]&&this.sourceCaches[e].getSource()},t.prototype.addLayer=function(e,t,r){this._checkLoaded();var i=e.id;if("object"==typeof e.source&&(this.addSource(i,e.source),e=util.extend(e,{source:i})),!this._validate(validateStyle.layer,"layers."+i,e,{arrayIndex:-1},r)){var s=StyleLayer.create(e);this._validateLayer(s),s.setEventedParent(this,{layer:{id:i}});var o=t?this._order.indexOf(t):this._order.length;if(this._order.splice(o,0,i),this._layers[i]=s,this._removedLayers[i]&&s.source){var a=this._removedLayers[i];delete this._removedLayers[i],a.type!==s.type?this._updatedSources[s.source]="clear":(this._updatedSources[s.source]="reload",this.sourceCaches[s.source].pause())}this._updateLayer(s),"symbol"!==s.type&&"symtracking"!==s.type||(this._updatedSymbolOrder=!0),this.updateClasses(i)}},t.prototype.moveLayer=function(e,t){this._checkLoaded(),this._changed=!0;var r=this._layers[e];if(!r)return void this.fire("error",{error:new Error("The layer '"+e+"' does not exist in the map's style and cannot be moved.")});var i=this._order.indexOf(e);this._order.splice(i,1);var s=t?this._order.indexOf(t):this._order.length;this._order.splice(s,0,e),"symbol"!==r.type&&"symtracking"!==r.type||(this._updatedSymbolOrder=!0,r.source&&!this._updatedSources[r.source]&&(this._updatedSources[r.source]="reload",this.sourceCaches[r.source].pause()))},t.prototype.removeLayer=function(e){this._checkLoaded();var t=this._layers[e];if(!t)return void this.fire("error",{error:new Error("The layer '"+e+"' does not exist in the map's style and cannot be removed.")});t.setEventedParent(null);var r=this._order.indexOf(e);this._order.splice(r,1),"symbol"!==t.type&&"symtracking"!==t.type||(this._updatedSymbolOrder=!0),this._changed=!0,this._removedLayers[e]=t,delete this._layers[e],delete this._updatedLayers[e],delete this._updatedPaintProps[e]},t.prototype.getLayer=function(e){return this._layers[e]},t.prototype.setLayerZoomRange=function(e,t,r){this._checkLoaded();var i=this.getLayer(e);if(!i)return void this.fire("error",{error:new Error("The layer '"+e+"' does not exist in the map's style and cannot have zoom extent.")});i.minzoom===t&&i.maxzoom===r||(null!=t&&(i.minzoom=t),null!=r&&(i.maxzoom=r),this._updateLayer(i))},t.prototype.setFilter=function(e,t){this._checkLoaded();var r=this.getLayer(e);if(!r)return void this.fire("error",{error:new Error("The layer '"+e+"' does not exist in the map's style and cannot be filtered.")});null!==t&&void 0!==t&&this._validate(validateStyle.filter,"layers."+r.id+".filter",t)||util.deepEqual(r.filter,t)||(r.filter=util.clone(t),this._updateLayer(r))},t.prototype.getFilter=function(e){return util.clone(this.getLayer(e).filter)},t.prototype.setLayoutProperty=function(e,t,r){this._checkLoaded();var i=this.getLayer(e);if(!i)return void this.fire("error",{error:new Error("The layer '"+e+"' does not exist in the map's style and cannot be styled.")});util.deepEqual(i.getLayoutProperty(t),r)||(i.setLayoutProperty(t,r),this._updateLayer(i))},t.prototype.getLayoutProperty=function(e,t){return this.getLayer(e).getLayoutProperty(t)},t.prototype.setPaintProperty=function(e,t,r,i){this._checkLoaded();var s=this.getLayer(e);if(!s)return void this.fire("error",{error:new Error("The layer '"+e+"' does not exist in the map's style and cannot be styled.")});if(!util.deepEqual(s.getPaintProperty(t,i),r)){var o=s.isPaintValueFeatureConstant(t);s.setPaintProperty(t,r,i);!(r&&MinemapFunction.isFunctionDefinition(r)&&"$zoom"!==r.property&&void 0!==r.property)&&o||this._updateLayer(s),this.updateClasses(e,t)}},t.prototype.getPaintProperty=function(e,t,r){return this.getLayer(e).getPaintProperty(t,r)},t.prototype.getTransition=function(){return util.extend({duration:300,delay:0},this.stylesheet&&this.stylesheet.transition)},t.prototype.updateClasses=function(e,t){if(this._changed=!0,e){var r=this._updatedPaintProps;r[e]||(r[e]={}),r[e][t||"all"]=!0}else this._updatedAllPaintProps=!0},t.prototype.serialize=function(){var e=this;return util.filterObject({version:this.stylesheet.version,name:this.stylesheet.name,metadata:this.stylesheet.metadata,light:this.stylesheet.light,center:this.stylesheet.center,zoom:this.stylesheet.zoom,bearing:this.stylesheet.bearing,pitch:this.stylesheet.pitch,sprite:this.stylesheet.sprite,glyphs:this.stylesheet.glyphs,transition:this.stylesheet.transition,sources:util.mapObject(this.sourceCaches,function(e){return e.serialize()}),layers:this._order.map(function(t){return e._layers[t].serialize()})},function(e){return void 0!==e})},t.prototype._updateLayer=function(e){this._updatedLayers[e.id]=!0,e.source&&!this._updatedSources[e.source]&&(this._updatedSources[e.source]="reload",this.sourceCaches[e.source].pause()),this._changed=!0},t.prototype._flattenRenderedFeatures=function(e){for(var t=this,r=[],i=this._order.length-1;i>=0;i--)for(var s=t._order[i],o=0,a=e;o<a.length;o+=1){var n=a[o],l=n[s];if(l)for(var u=0,h=l;u<h.length;u+=1){var d=h[u];r.push(d)}}return r},t.prototype.queryRenderedFeatures=function(e,t,r,i){var s=this;t&&t.filter&&this._validate(validateStyle.filter,"queryRenderedFeatures.filter",t.filter);var o={};if(t&&t.layers){if(!Array.isArray(t.layers))return this.fire("error",{error:"parameters.layers must be an Array."}),[];for(var a=0,n=t.layers;a<n.length;a+=1){var l=n[a],u=s._layers[l];if(!u)return s.fire("error",{error:"The layer '"+l+"' does not exist in the map's style and cannot be queried for features."}),[];o[u.source]=!0}}var h=[];for(var d in s.sourceCaches)if(!t.layers||o[d]){var c=QueryFeatures.rendered(s.sourceCaches[d],s._layers,e,t,r,i);h.push(c)}return this._flattenRenderedFeatures(h)},t.prototype.querySourceFeatures=function(e,t){t&&t.filter&&this._validate(validateStyle.filter,"querySourceFeatures.filter",t.filter);var r=this.sourceCaches[e];return r?QueryFeatures.source(r,t):[]},t.prototype.addSourceType=function(e,t,r){return getSourceType(e)?r(new Error('A source type called "'+e+'" already exists.')):(setSourceType(e,t),t.workerSourceURL?void this.dispatcher.broadcast("loadWorkerSource",{name:e,url:t.workerSourceURL},r):r(null,null))},t.prototype.getLight=function(){return this.light.getLight()},t.prototype.setLight=function(e,t){this._checkLoaded();var r=this.light.getLight(),i=!1;for(var s in e)if(!util.deepEqual(e[s],r[s])){i=!0;break}if(i){var o=this.stylesheet.transition||{};this.light.setLight(e),this.light.updateLightTransitions(t||{transition:!0},o,this.animationLoop)}},t.prototype._validate=function(e,t,r,i,s){return(!s||!1!==s.validate)&&validateStyle.emitErrors(this,e.call(validateStyle,util.extend({key:t,style:this.serialize(),value:r,styleSpec:styleSpec},i)))},t.prototype._remove=function(){var e=this;rtlTextPlugin.evented.off("pluginAvailable",this._rtlTextPluginCallback);for(var t in e.sourceCaches)e.sourceCaches[t].clearTiles();this.dispatcher.remove()},t.prototype._clearSource=function(e){this.sourceCaches[e].clearTiles()},t.prototype._reloadSource=function(e){this.sourceCaches[e].resume(),this.sourceCaches[e].reload()},t.prototype._updateSources=function(e){var t=this;for(var r in t.sourceCaches)t.sourceCaches[r].update(e)},t.prototype._redoPlacement=function(){var e=this;for(var t in e.sourceCaches)e.sourceCaches[t].redoPlacement()},t.prototype.getIcons=function(e,t,r){var i=this,s=function(){i.spriteAtlas.setSprite(i.sprite),i.spriteAtlas.addIcons(t.icons,r)};!this.sprite||this.sprite.loaded()?s():this.sprite.on("data",s)},t.prototype.getGlyphs=function(e,t,r){function i(e,t,i){e&&console.error(e),n[i]=t,0===--a&&r(null,n)}var s=this,o=t.stacks,a=Object.keys(o).length,n={};for(var l in o)s.glyphSource.getSimpleGlyphs(l,o[l],t.uid,i)},t}(Evented);module.exports=Style;
},{"../render/line_atlas":103,"../source/query_features":117,"../source/rtl_text_plugin":120,"../source/source":121,"../source/source_cache":122,"../style-spec/deref":131,"../style-spec/diff":132,"../style-spec/function":136,"../style-spec/reference/latest":138,"../symbol/glyph_source":193,"../symbol/sprite_atlas":198,"../util/ajax":221,"../util/browser":222,"../util/dispatcher":228,"../util/evented":231,"../util/global_worker_pool":233,"../util/minemap":240,"../util/util":247,"./animation_loop":165,"./image_sprite":166,"./light":167,"./style_layer":170,"./validate_style":184}],169:[function(_dereq_,module,exports){
"use strict";var createFunction=_dereq_("../style-spec/function"),util=_dereq_("../util/util"),StyleDeclaration=function(t,i){var o=this;if(this.value=util.clone(i),this.isFunction=createFunction.isFunctionDefinition(i),this.json=JSON.stringify(this.value),this.minimum=t.minimum,this.function=createFunction(this.value,t),this.isFeatureConstant=this.function.isFeatureConstant,this.isZoomConstant=this.function.isZoomConstant,this.isFeatureConstant||this.isZoomConstant){if(!this.isZoomConstant){this.stopZoomLevels=[];for(var n=0,s=o.value.stops;n<s.length;n+=1){var e=s[n];o.stopZoomLevels.indexOf(e[0])<0&&o.stopZoomLevels.push(e[0])}}}else{this.stopZoomLevels=[];for(var a=[],u=0,l=o.value.stops;u<l.length;u+=1){var r=l[u],c=r[0].zoom;o.stopZoomLevels.indexOf(c)<0&&(o.stopZoomLevels.push(c),a.push([c,a.length]))}this._functionInterpolationT=createFunction({type:"exponential",stops:a,base:i.base},{type:"number"})}};StyleDeclaration.prototype.calculate=function(t,i){var o=this.function(t&&t.zoom,i||{});return void 0!==this.minimum&&o<this.minimum?this.minimum:o},StyleDeclaration.prototype.calculateInterpolationT=function(t){return this.isFeatureConstant||this.isZoomConstant?0:this._functionInterpolationT(t&&t.zoom,{})},module.exports=StyleDeclaration;
},{"../style-spec/function":136,"../util/util":247}],170:[function(_dereq_,module,exports){
"use strict";function getDeclarationValue(t){return t.value}var util=_dereq_("../util/util"),StyleTransition=_dereq_("./style_transition"),StyleDeclaration=_dereq_("./style_declaration"),styleSpec=_dereq_("../style-spec/reference/latest"),validateStyle=_dereq_("./validate_style"),parseColor=_dereq_("./../style-spec/util/parse_color"),Evented=_dereq_("../util/evented"),TRANSITION_SUFFIX="-transition",StyleLayer=function(t){function i(i){var e=this;t.call(this),this.id=i.id,this.metadata=i.metadata,this.type=i.type,this.minzoom=i.minzoom,this.maxzoom=i.maxzoom,"background"!==i.type&&(this.source=i.source,this.sourceLayer=i["source-layer"],this.filter=i.filter),this.paint={},this.layout={},this._paintSpecifications=styleSpec["paint_"+this.type],this._layoutSpecifications=styleSpec["layout_"+this.type],this._paintTransitions={},this._paintTransitionOptions={},this._paintDeclarations={},this._layoutDeclarations={},this._layoutFunctions={};var a,n,o={validate:!1};for(var r in i){var s=r.match(/^paint(?:\.(.*))?$/);if(s){var l=s[1]||"";for(a in i[r])e.setPaintProperty(a,i[r][a],l,o)}}for(n in i.layout)e.setLayoutProperty(n,i.layout[n],o);for(a in e._paintSpecifications)e.paint[a]=e.getPaintValue(a);for(n in e._layoutSpecifications)e._updateLayoutValue(n)}return t&&(i.__proto__=t),i.prototype=Object.create(t&&t.prototype),i.prototype.constructor=i,i.prototype.setLayoutProperty=function(t,i,e){if(null==i)delete this._layoutDeclarations[t];else{var a="layers."+this.id+".layout."+t;if(this._validate(validateStyle.layoutProperty,a,t,i,e))return;this._layoutDeclarations[t]=new StyleDeclaration(this._layoutSpecifications[t],i)}this._updateLayoutValue(t)},i.prototype.getLayoutProperty=function(t){return this._layoutDeclarations[t]&&this._layoutDeclarations[t].value},i.prototype.getLayoutValue=function(t,i,e){var a=this._layoutSpecifications[t],n=this._layoutDeclarations[t];return n?n.calculate(i,e):a.default},i.prototype.setPaintProperty=function(t,i,e,a){var n="layers."+this.id+(e?'["paint.'+e+'"].':".paint.")+t;if(util.endsWith(t,TRANSITION_SUFFIX))if(this._paintTransitionOptions[e||""]||(this._paintTransitionOptions[e||""]={}),null===i||void 0===i)delete this._paintTransitionOptions[e||""][t];else{if(this._validate(validateStyle.paintProperty,n,t,i,a))return;this._paintTransitionOptions[e||""][t]=i}else if(this._paintDeclarations[e||""]||(this._paintDeclarations[e||""]={}),null===i||void 0===i)delete this._paintDeclarations[e||""][t];else{if(this._validate(validateStyle.paintProperty,n,t,i,a))return;this._paintDeclarations[e||""][t]=new StyleDeclaration(this._paintSpecifications[t],i)}},i.prototype.getPaintProperty=function(t,i){return i=i||"",util.endsWith(t,TRANSITION_SUFFIX)?this._paintTransitionOptions[i]&&this._paintTransitionOptions[i][t]:this._paintDeclarations[i]&&this._paintDeclarations[i][t]&&this._paintDeclarations[i][t].value},i.prototype.getPaintValue=function(t,i,e){var a=this._paintSpecifications[t],n=this._paintTransitions[t];return n?n.calculate(i,e):"color"===a.type&&a.default?parseColor(a.default):a.default},i.prototype.getPaintValueStopZoomLevels=function(t){var i=this._paintTransitions[t];return i?i.declaration.stopZoomLevels:[]},i.prototype.getLayoutValueStopZoomLevels=function(t){var i=this._layoutDeclarations[t];return i?i.stopZoomLevels:[]},i.prototype.getPaintInterpolationT=function(t,i){return this._paintTransitions[t].declaration.calculateInterpolationT(i)},i.prototype.getLayoutInterpolationT=function(t,i){return this._layoutDeclarations[t].calculateInterpolationT(i)},i.prototype.isPaintValueFeatureConstant=function(t){var i=this._paintTransitions[t];return!i||i.declaration.isFeatureConstant},i.prototype.isLayoutValueFeatureConstant=function(t){var i=this._layoutDeclarations[t];return!i||i.isFeatureConstant},i.prototype.isPaintValueZoomConstant=function(t){var i=this._paintTransitions[t];return!i||i.declaration.isZoomConstant},i.prototype.isLayoutValueZoomConstant=function(t){var i=this._layoutDeclarations[t];return!i||i.isZoomConstant},i.prototype.isHidden=function(t){return!!(this.minzoom&&t<this.minzoom)||(!!(this.maxzoom&&t>=this.maxzoom)||"none"===this.layout.visibility)},i.prototype.updatePaintTransitions=function(t,i,e,a,n){for(var o=this,r=util.extend({},this._paintDeclarations[""]),s=0;s<t.length;s++)util.extend(r,o._paintDeclarations[t[s]]);var l;for(l in r)o._applyPaintDeclaration(l,r[l],i,e,a,n);for(l in o._paintTransitions)l in r||o._applyPaintDeclaration(l,null,i,e,a,n)},i.prototype.updatePaintTransition=function(t,i,e,a,n,o){for(var r=this,s=this._paintDeclarations[""][t],l=0;l<i.length;l++){var u=r._paintDeclarations[i[l]];u&&u[t]&&(s=u[t])}this._applyPaintDeclaration(t,s,e,a,n,o)},i.prototype.recalculate=function(t){var i=this;for(var e in i._paintTransitions)i.paint[e]=i.getPaintValue(e,{zoom:t});for(var a in i._layoutFunctions)i.layout[a]=i.getLayoutValue(a,{zoom:t})},i.prototype.serialize=function(){var t=this,i={id:this.id,type:this.type,source:this.source,"source-layer":this.sourceLayer,metadata:this.metadata,minzoom:this.minzoom,maxzoom:this.maxzoom,filter:this.filter,layout:util.mapObject(this._layoutDeclarations,getDeclarationValue)};for(var e in t._paintDeclarations){i[""===e?"paint":"paint."+e]=util.mapObject(t._paintDeclarations[e],getDeclarationValue)}return util.filterObject(i,function(t,i){return void 0!==t&&!("layout"===i&&!Object.keys(t).length)})},i.prototype._applyPaintDeclaration=function(t,i,e,a,n,o){var r=e.transition?this._paintTransitions[t]:void 0,s=this._paintSpecifications[t];if(null!==i&&void 0!==i||(i=new StyleDeclaration(s,s.default)),!r||r.declaration.json!==i.json){var l=util.extend({duration:300,delay:0},a,this.getPaintProperty(t+TRANSITION_SUFFIX)),u=this._paintTransitions[t]=new StyleTransition(s,i,r,l,o);u.instant()||(u.loopID=n.set(u.endTime-Date.now())),r&&n.cancel(r.loopID)}},i.prototype._updateLayoutValue=function(t){var i=this._layoutDeclarations[t];i&&i.isFunction?this._layoutFunctions[t]=!0:(delete this._layoutFunctions[t],this.layout[t]=this.getLayoutValue(t))},i.prototype._validate=function(t,i,e,a,n){return(!n||!1!==n.validate)&&validateStyle.emitErrors(this,t.call(validateStyle,{key:i,layerType:this.type,objectKey:e,value:a,styleSpec:styleSpec,style:{glyphs:!0,sprite:!0}}))},i}(Evented);module.exports=StyleLayer;var subclasses={circle:_dereq_("./style_layer/circle_style_layer"),fill:_dereq_("./style_layer/fill_style_layer"),extrusion:_dereq_("./style_layer/extrusion_style_layer"),line:_dereq_("./style_layer/line_style_layer"),symbol:_dereq_("./style_layer/symbol_style_layer"),background:StyleLayer,raster:StyleLayer,sprite:_dereq_("./style_layer/sprite_style_layer"),histogram:_dereq_("./style_layer/histogram_style_layer"),airline:_dereq_("./style_layer/airline_style_layer"),tracking:_dereq_("./style_layer/tracking_style_layer"),symtracking:_dereq_("./style_layer/symtracking_style_layer"),dynamicLine:_dereq_("./style_layer/dynamic_line_style_layer")};StyleLayer.create=function(t){return new subclasses[t.type](t)};
},{"../style-spec/reference/latest":138,"../util/evented":231,"../util/util":247,"./../style-spec/util/parse_color":143,"./style_declaration":169,"./style_layer/airline_style_layer":171,"./style_layer/circle_style_layer":172,"./style_layer/dynamic_line_style_layer":173,"./style_layer/extrusion_style_layer":174,"./style_layer/fill_style_layer":175,"./style_layer/histogram_style_layer":176,"./style_layer/line_style_layer":177,"./style_layer/sprite_style_layer":178,"./style_layer/symbol_style_layer":179,"./style_layer/symtracking_style_layer":180,"./style_layer/tracking_style_layer":181,"./style_transition":183,"./validate_style":184}],171:[function(_dereq_,module,exports){
"use strict";var StyleLayer=_dereq_("../style_layer"),AirlineBucket=_dereq_("../../data/bucket/airline_bucket"),AirlineStyleLayer=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.createBucket=function(e){return new AirlineBucket(e)},t}(StyleLayer);module.exports=AirlineStyleLayer;
},{"../../data/bucket/airline_bucket":61,"../style_layer":170}],172:[function(_dereq_,module,exports){
"use strict";var StyleLayer=_dereq_("../style_layer"),CircleBucket=_dereq_("../../data/bucket/circle_bucket"),CircleStyleLayer=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.createBucket=function(e){return new CircleBucket(e)},t}(StyleLayer);module.exports=CircleStyleLayer;
},{"../../data/bucket/circle_bucket":62,"../style_layer":170}],173:[function(_dereq_,module,exports){
"use strict";var StyleLayer=_dereq_("../style_layer"),DynamicLineBucket=_dereq_("../../data/bucket/dynamic_line_bucket"),DynamicLineStyleLayer=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.createBucket=function(e){return new DynamicLineBucket(e)},t}(StyleLayer);module.exports=DynamicLineStyleLayer;
},{"../../data/bucket/dynamic_line_bucket":63,"../style_layer":170}],174:[function(_dereq_,module,exports){
"use strict";var StyleLayer=_dereq_("../style_layer"),ExtrusionBucket=_dereq_("../../data/bucket/extrusion_bucket"),ExtrusionStyleLayer=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getPaintValue=function(e,r,o){var u=t.prototype.getPaintValue.call(this,e,r,o);return"extrusion-color"===e&&u&&(u[3]=1),u},e.prototype.createBucket=function(t){return new ExtrusionBucket(t)},e}(StyleLayer);module.exports=ExtrusionStyleLayer;
},{"../../data/bucket/extrusion_bucket":64,"../style_layer":170}],175:[function(_dereq_,module,exports){
"use strict";var StyleLayer=_dereq_("../style_layer"),FillBucket=_dereq_("../../data/bucket/fill_bucket"),FillStyleLayer=function(t){function o(){t.apply(this,arguments)}return t&&(o.__proto__=t),o.prototype=Object.create(t&&t.prototype),o.prototype.constructor=o,o.prototype.getPaintValue=function(o,l,e){var i=this;if("fill-outline-color"===o){if(void 0===this.getPaintProperty("fill-outline-color"))return t.prototype.getPaintValue.call(this,"fill-color",l,e);for(var r=this._paintTransitions["fill-outline-color"];r;){if(!(r&&r.declaration&&r.declaration.value))return t.prototype.getPaintValue.call(i,"fill-color",l,e);r=r.oldTransition}}return t.prototype.getPaintValue.call(this,o,l,e)},o.prototype.getPaintValueStopZoomLevels=function(o){return"fill-outline-color"===o&&void 0===this.getPaintProperty("fill-outline-color")?t.prototype.getPaintValueStopZoomLevels.call(this,"fill-color"):t.prototype.getPaintValueStopZoomLevels.call(this,o)},o.prototype.getPaintInterpolationT=function(o,l){return"fill-outline-color"===o&&void 0===this.getPaintProperty("fill-outline-color")?t.prototype.getPaintInterpolationT.call(this,"fill-color",l):t.prototype.getPaintInterpolationT.call(this,o,l)},o.prototype.isPaintValueFeatureConstant=function(o){return"fill-outline-color"===o&&void 0===this.getPaintProperty("fill-outline-color")?t.prototype.isPaintValueFeatureConstant.call(this,"fill-color"):t.prototype.isPaintValueFeatureConstant.call(this,o)},o.prototype.isPaintValueZoomConstant=function(o){return"fill-outline-color"===o&&void 0===this.getPaintProperty("fill-outline-color")?t.prototype.isPaintValueZoomConstant.call(this,"fill-color"):t.prototype.isPaintValueZoomConstant.call(this,o)},o.prototype.createBucket=function(t){return new FillBucket(t)},o}(StyleLayer);module.exports=FillStyleLayer;
},{"../../data/bucket/fill_bucket":65,"../style_layer":170}],176:[function(_dereq_,module,exports){
"use strict";var StyleLayer=_dereq_("../style_layer"),HistogramBucket=_dereq_("../../data/bucket/histogram_bucket"),HistogramStyleLayer=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getPaintValue=function(e,r,o){var a=t.prototype.getPaintValue.call(this,e,r,o);return"histogram-color"===e&&a&&(a[3]=1),a},e.prototype.createBucket=function(t){return new HistogramBucket(t)},e}(StyleLayer);module.exports=HistogramStyleLayer;
},{"../../data/bucket/histogram_bucket":66,"../style_layer":170}],177:[function(_dereq_,module,exports){
"use strict";var StyleLayer=_dereq_("../style_layer"),LineBucket=_dereq_("../../data/bucket/line_bucket"),LineStyleLayer=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.createBucket=function(e){return new LineBucket(e)},t}(StyleLayer);module.exports=LineStyleLayer;
},{"../../data/bucket/line_bucket":67,"../style_layer":170}],178:[function(_dereq_,module,exports){
"use strict";var StyleLayer=_dereq_("../style_layer"),SpriteBucket=_dereq_("../../data/bucket/sprite_bucket"),SpriteStyleLayer=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.createBucket=function(e){return new SpriteBucket(e)},t}(StyleLayer);module.exports=SpriteStyleLayer;
},{"../../data/bucket/sprite_bucket":68,"../style_layer":170}],179:[function(_dereq_,module,exports){
"use strict";var StyleLayer=_dereq_("../style_layer"),SymbolBucket=_dereq_("../../data/bucket/symbol_bucket"),SymbolStyleLayer=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getLayoutValue=function(e,o,r){var a=t.prototype.getLayoutValue.call(this,e,o,r);if("auto"!==a)return a;switch(e){case"text-rotation-alignment":case"icon-rotation-alignment":return"line"===this.getLayoutValue("symbol-placement",o,r)?"map":"viewport";case"text-pitch-alignment":return this.getLayoutValue("text-rotation-alignment",o,r);case"icon-pitch-alignment":return this.getLayoutValue("icon-rotation-alignment",o,r);default:return a}},e.prototype.createBucket=function(t){return new SymbolBucket(t)},e}(StyleLayer);module.exports=SymbolStyleLayer;
},{"../../data/bucket/symbol_bucket":69,"../style_layer":170}],180:[function(_dereq_,module,exports){
"use strict";var StyleLayer=_dereq_("../style_layer"),SymtrackingBucket=_dereq_("../../data/bucket/symtracking_bucket"),SymtrackingStyleLayer=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getLayoutValue=function(e,r,a){var n=t.prototype.getLayoutValue.call(this,e,r,a);if("auto"!==n)return n;switch(e){case"text-rotation-alignment":case"icon-rotation-alignment":return"line"===this.getLayoutValue("symbol-placement",r,a)?"map":"viewport";case"text-pitch-alignment":return this.getLayoutValue("text-rotation-alignment",r,a);case"icon-pitch-alignment":return this.getLayoutValue("icon-rotation-alignment",r,a);default:return n}},e.prototype.createBucket=function(t){return new SymtrackingBucket(t)},e}(StyleLayer);module.exports=SymtrackingStyleLayer;
},{"../../data/bucket/symtracking_bucket":70,"../style_layer":170}],181:[function(_dereq_,module,exports){
"use strict";var StyleLayer=_dereq_("../style_layer"),TrackingBucket=_dereq_("../../data/bucket/tracking_bucket"),TrackingStyleLayer=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createBucket=function(t){return new TrackingBucket(t)},e}(StyleLayer);module.exports=TrackingStyleLayer;
},{"../../data/bucket/tracking_bucket":71,"../style_layer":170}],182:[function(_dereq_,module,exports){
"use strict";var StyleLayer=_dereq_("./style_layer"),util=_dereq_("../util/util"),featureFilter=_dereq_("../style-spec/feature_filter"),groupByLayout=_dereq_("../style-spec/group_by_layout"),StyleLayerIndex=function(e){e&&this.replace(e)};StyleLayerIndex.prototype.replace=function(e){var r=this;this.symbolOrder=[];for(var t=0,i=e;t<i.length;t+=1){var a=i[t];"symbol"!==a.type&&"symtracking"!==a.type||r.symbolOrder.push(a.id)}this._layerConfigs={},this._layers={},this.update(e,[])},StyleLayerIndex.prototype.update=function(e,r,t){for(var i=this,a=0,l=e;a<l.length;a+=1){var y=l[a];i._layerConfigs[y.id]=y;var s=i._layers[y.id]=StyleLayer.create(y);s.updatePaintTransitions({},{transition:!1}),s.filter=featureFilter(s.filter)}for(var o=0,u=r;o<u.length;o+=1){var n=u[o];delete i._layerConfigs[n],delete i._layers[n]}t&&(this.symbolOrder=t),this.familiesBySource={};for(var f=groupByLayout(util.values(this._layerConfigs)),p=0,d=f;p<d.length;p+=1){var c=d[p],h=c.map(function(e){return i._layers[e.id]}),v=h[0];if(!v.layout||"none"!==v.layout.visibility){var g=v.source||"",_=i.familiesBySource[g];_||(_=i.familiesBySource[g]={});var m=v.sourceLayer||"_geojsonTileLayer",L=_[m];L||(L=_[m]=[]),L.push(h)}}},module.exports=StyleLayerIndex;
},{"../style-spec/feature_filter":134,"../style-spec/group_by_layout":137,"../util/util":247,"./style_layer":170}],183:[function(_dereq_,module,exports){
"use strict";function interpZoomTransitioned(t,i,e){if(void 0!==t&&void 0!==i)return{from:t.to,fromScale:t.toScale,to:i.to,toScale:i.toScale,t:e}}var util=_dereq_("../util/util"),interpolate=_dereq_("../style-spec/util/interpolate"),fakeZoomHistory={lastIntegerZoom:0,lastIntegerZoomTime:0,lastZoom:0},StyleTransition=function(t,i,e,o,a){this.declaration=i,this.startTime=this.endTime=(new Date).getTime(),this.oldTransition=e,this.duration=o.duration||0,this.delay=o.delay||0,this.zoomTransitioned="piecewise-constant"===t.function&&t.transition,this.interp=this.zoomTransitioned?interpZoomTransitioned:interpolate[t.type],this.zoomHistory=a||fakeZoomHistory,this.instant()||(this.endTime=this.startTime+this.duration+this.delay),e&&e.endTime<=this.startTime&&delete e.oldTransition};StyleTransition.prototype.instant=function(){return!this.oldTransition||!this.interp||0===this.duration&&0===this.delay},StyleTransition.prototype.calculate=function(t,i,e){var o=this._calculateTargetValue(t,i);if(this.instant())return o;if((e=e||Date.now())>=this.endTime)return o;var a=this.oldTransition.calculate(t,i,this.startTime),n=util.easeCubicInOut((e-this.startTime-this.delay)/this.duration);return this.interp(a,o,n)},StyleTransition.prototype._calculateTargetValue=function(t,i){if(!this.zoomTransitioned)return this.declaration.calculate(t,i);var e=t.zoom,o=this.zoomHistory.lastIntegerZoom,a=e>o?2:.5,n=this.declaration.calculate({zoom:e>o?e-1:e+1},i),r=this.declaration.calculate({zoom:e},i),s=Math.min((Date.now()-this.zoomHistory.lastIntegerZoomTime)/this.duration,1),l=Math.abs(e-o),u=interpolate(s,1,l);return void 0!==n&&void 0!==r?{from:n,fromScale:a,to:r,toScale:1,t:u}:void 0},module.exports=StyleTransition;
},{"../style-spec/util/interpolate":142,"../util/util":247}],184:[function(_dereq_,module,exports){
"use strict";module.exports=_dereq_("../style-spec/validate_style.min"),module.exports.emitErrors=function(r,e){if(e&&e.length){for(var t=0;t<e.length;t++)r.fire("error",{error:new Error(e[t].message)});return!0}return!1};
},{"../style-spec/validate_style.min":164}],185:[function(_dereq_,module,exports){
"use strict";var Point=_dereq_("../@minemap/point-geometry"),Anchor=function(t){function e(e,o,n,r){t.call(this,e,o),this.angle=n,void 0!==r&&(this.segment=r)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.clone=function(){return new e(this.x,this.y,this.angle,this.segment)},e}(Point);module.exports=Anchor;
},{"../@minemap/point-geometry":50}],186:[function(_dereq_,module,exports){
"use strict";function checkMaxAngle(e,t,a,r,n){if(void 0===t.segment)return!0;for(var i=t,s=t.segment+1,f=0;f>-a/2;){if(--s<0)return!1;f-=e[s].dist(i),i=e[s]}f+=e[s].dist(e[s+1]),s++;for(var l=[],o=0;f<a/2;){var u=e[s-1],c=e[s],g=e[s+1];if(!g)return!1;var h=u.angleTo(c)-c.angleTo(g);for(h=Math.abs((h+3*Math.PI)%(2*Math.PI)-Math.PI),l.push({distance:f,angleDelta:h}),o+=h;f-l[0].distance>r;)o-=l.shift().angleDelta;if(o>n)return!1;s++,f+=c.dist(g)}return!0}module.exports=checkMaxAngle;
},{}],187:[function(_dereq_,module,exports){
"use strict";function clipLine(n,x,y,o,e,i){for(var t=[],r=0;r<n.length;r++)for(var u=n[r],d=void 0,P=0;P<u.length-1;P++){var w=u[P],_=u[P+1];if(i)w.x<x?w=new Point(x,w.y+(_.y-w.y)*((x-w.x)/(_.x-w.x)))._round():_.x<x&&(_=new Point(x,w.y+(_.y-w.y)*((x-w.x)/(_.x-w.x)))._round()),w.y<y?w=new Point(w.x+(_.x-w.x)*((y-w.y)/(_.y-w.y)),y)._round():_.y<y&&(_=new Point(w.x+(_.x-w.x)*((y-w.y)/(_.y-w.y)),y)._round()),w.x>=o?w=new Point(o,w.y+(_.y-w.y)*((o-w.x)/(_.x-w.x)))._round():_.x>=o&&(_=new Point(o,w.y+(_.y-w.y)*((o-w.x)/(_.x-w.x)))._round()),w.y>=e?w=new Point(w.x+(_.x-w.x)*((e-w.y)/(_.y-w.y)),e)._round():_.y>=e&&(_=new Point(w.x+(_.x-w.x)*((e-w.y)/(_.y-w.y)),e)._round());else{if(w.x<x&&_.x<x)continue;if(w.x<x?w=new Point(x,w.y+(_.y-w.y)*((x-w.x)/(_.x-w.x)))._round():_.x<x&&(_=new Point(x,w.y+(_.y-w.y)*((x-w.x)/(_.x-w.x)))._round()),w.y<y&&_.y<y)continue;if(w.y<y?w=new Point(w.x+(_.x-w.x)*((y-w.y)/(_.y-w.y)),y)._round():_.y<y&&(_=new Point(w.x+(_.x-w.x)*((y-w.y)/(_.y-w.y)),y)._round()),w.x>=o&&_.x>=o)continue;if(w.x>=o?w=new Point(o,w.y+(_.y-w.y)*((o-w.x)/(_.x-w.x)))._round():_.x>=o&&(_=new Point(o,w.y+(_.y-w.y)*((o-w.x)/(_.x-w.x)))._round()),w.y>=e&&_.y>=e)continue;w.y>=e?w=new Point(w.x+(_.x-w.x)*((e-w.y)/(_.y-w.y)),e)._round():_.y>=e&&(_=new Point(w.x+(_.x-w.x)*((e-w.y)/(_.y-w.y)),e)._round())}d&&w.equals(d[d.length-1])||(d=[w],t.push(d)),d.push(_)}return t}var Point=_dereq_("../@minemap/point-geometry");module.exports=clipLine;
},{"../@minemap/point-geometry":50}],188:[function(_dereq_,module,exports){
"use strict";var createStructArrayType=_dereq_("../util/struct_array"),Point=_dereq_("../@minemap/point-geometry"),CollisionBoxArray=createStructArrayType({members:[{type:"Int16",name:"anchorPointX"},{type:"Int16",name:"anchorPointY"},{type:"Int16",name:"offsetX"},{type:"Int16",name:"offsetY"},{type:"Int16",name:"x1"},{type:"Int16",name:"y1"},{type:"Int16",name:"x2"},{type:"Int16",name:"y2"},{type:"Float32",name:"unadjustedMaxScale"},{type:"Float32",name:"maxScale"},{type:"Uint32",name:"featureIndex"},{type:"Uint16",name:"sourceLayerIndex"},{type:"Uint16",name:"bucketIndex"},{type:"Int16",name:"bbox0"},{type:"Int16",name:"bbox1"},{type:"Int16",name:"bbox2"},{type:"Int16",name:"bbox3"},{type:"Float32",name:"placementScale"}]});Object.defineProperty(CollisionBoxArray.prototype.StructType.prototype,"anchorPoint",{get:function(){return new Point(this.anchorPointX,this.anchorPointY)}}),module.exports=CollisionBoxArray;
},{"../@minemap/point-geometry":50,"../util/struct_array":244}],189:[function(_dereq_,module,exports){
"use strict";var CollisionFeature=function(t,e,i,o,a,n,s,l,r,d,u){var h=s.top*l-r,f=s.bottom*l+r,x=s.left*l-r,m=s.right*l+r;if(this.boxStartIndex=t.length,d){var _=f-h,b=m-x;if(_>0)if(_=Math.max(10*l,_),u){var v=e[i.segment+1].sub(e[i.segment])._unit()._mult(b),c=[i.sub(v),i.add(v)];this._addLineCollisionBoxes(t,c,i,0,b,_,o,a,n)}else this._addLineCollisionBoxes(t,e,i,i.segment,b,_,o,a,n)}else t.emplaceBack(i.x,i.y,0,0,x,h,m,f,1/0,1/0,o,a,n,0,0,0,0,0);this.boxEndIndex=t.length};CollisionFeature.prototype._addLineCollisionBoxes=function(t,e,i,o,a,n,s,l,r){var d=n/2,u=Math.floor(a/d),h=Math.floor(u/2),f=-n/2,x=i,m=o+1,_=f,b=-a/2,v=b-a/8;do{if(--m<0){if(_>b)return;m=0;break}_-=e[m].dist(x),x=e[m]}while(_>v);for(var c=e[m].dist(e[m+1]),g=-h;g<u+h;g++){var p=g*d,C=b+p;if(p<0&&(C+=p),p>a&&(C+=p-a),!(C<_)){for(;_+c<C;){if(_+=c,++m+1>=e.length)return;c=e[m].dist(e[m+1])}var M=C-_,y=e[m],B=e[m+1],k=B.sub(y)._unit()._mult(M)._add(y)._round(),F=Math.max(Math.abs(C-f)-d/2,0),L=a/2/F;(g<0||g>=u)&&(L=Math.min(L,.99)),t.emplaceBack(k.x,k.y,k.x-i.x,k.y-i.y,-n/2,-n/2,n/2,n/2,L,L,s,l,r,0,0,0,0,0)}}},module.exports=CollisionFeature;
},{}],190:[function(_dereq_,module,exports){
"use strict";var Point=_dereq_("../@minemap/point-geometry"),EXTENT=_dereq_("../data/extent"),Grid=_dereq_("grid-index"),intersectionTests=_dereq_("../util/intersection_tests"),CollisionTile=function(e,t,i,a,r,o,n){void 0===o&&(o=new Grid(EXTENT,12,6)),void 0===n&&(n=new Grid(EXTENT,12,0)),this.angle=e,this.pitch=t,this.cameraToCenterDistance=i,this.cameraToTileDistance=a,this.grid=o,this.ignoredGrid=n,this.perspectiveRatio=1+.5*(a/i-1),this.minScale=.5/this.perspectiveRatio,this.maxScale=2/this.perspectiveRatio;var s=Math.sin(this.angle),l=Math.cos(this.angle);this.rotationMatrix=[l,-s,s,l],this.reverseRotationMatrix=[l,s,-s,l],this.yStretch=Math.max(1,a/(i*Math.cos(t/180*Math.PI))),this.collisionBoxArray=r,0===r.length&&(r.emplaceBack(),r.emplaceBack(0,0,0,0,0,-EXTENT,0,EXTENT,1/0,1/0,0,0,0,0,0,0,0,0,0),r.emplaceBack(EXTENT,0,0,0,0,-EXTENT,0,EXTENT,1/0,1/0,0,0,0,0,0,0,0,0,0),r.emplaceBack(0,0,0,0,-EXTENT,0,EXTENT,0,1/0,1/0,0,0,0,0,0,0,0,0,0),r.emplaceBack(0,EXTENT,0,0,-EXTENT,0,EXTENT,0,1/0,1/0,0,0,0,0,0,0,0,0,0)),this.tempCollisionBox=r.get(0),this.edges=[r.get(1),r.get(2),r.get(3),r.get(4)]};CollisionTile.deserialize=function(e,t){return new CollisionTile(e.angle,e.pitch,e.cameraToCenterDistance,e.cameraToTileDistance,t,new Grid(e.grid),new Grid(e.ignoredGrid))},CollisionTile.prototype.serialize=function(e){var t=this.grid.toArrayBuffer(),i=this.ignoredGrid.toArrayBuffer();return e&&(e.push(t),e.push(i)),{angle:this.angle,pitch:this.pitch,cameraToCenterDistance:this.cameraToCenterDistance,cameraToTileDistance:this.cameraToTileDistance,grid:t,ignoredGrid:i}},CollisionTile.prototype.placeCollisionFeature=function(e,t,i){for(var a=this,r=this.collisionBoxArray,o=this.minScale,n=this.rotationMatrix,s=this.yStretch,l=e.boxStartIndex;l<e.boxEndIndex;l++){var c=r.get(l),h=c.anchorPoint._matMult(n),x=h.x,m=h.y,p=x+c.x1*a.perspectiveRatio,y=m+c.y1*s*a.perspectiveRatio,g=x+c.x2*a.perspectiveRatio,d=m+c.y2*s*a.perspectiveRatio;c.bbox0=p,c.bbox1=y,c.bbox2=g,c.bbox3=d;var T=new Point(c.offsetX,c.offsetY)._matMult(n),u=T.x*T.x,v=T.y*T.y,M=v*s*s,f=Math.sqrt((u+M)/(u+v))||1;if(c.maxScale=c.unadjustedMaxScale*f,!t)for(var E=a.grid.query(p,y,g,d),S=0;S<E.length;S++){var P=r.get(E[S]),N=P.anchorPoint._matMult(n);if((o=a.getPlacementScale(o,h,c,N,P))>=a.maxScale)return o}if(i){var b=void 0;if(a.angle){var C=a.reverseRotationMatrix,w=new Point(c.x1,c.y1).matMult(C),X=new Point(c.x2,c.y1).matMult(C),B=new Point(c.x1,c.y2).matMult(C),G=new Point(c.x2,c.y2).matMult(C);b=a.tempCollisionBox,b.anchorPointX=c.anchorPoint.x,b.anchorPointY=c.anchorPoint.y,b.x1=Math.min(w.x,X.x,B.x,G.x),b.y1=Math.min(w.y,X.x,B.x,G.x),b.x2=Math.max(w.x,X.x,B.x,G.x),b.y2=Math.max(w.y,X.x,B.x,G.x),b.maxScale=c.maxScale}else b=c;for(var R=0;R<this.edges.length;R++){var q=a.edges[R];if((o=a.getPlacementScale(o,c.anchorPoint,b,q.anchorPoint,q))>=a.maxScale)return o}}}return o},CollisionTile.prototype.queryRenderedSymbols=function(e,t){var i={},a=[];if(0===e.length||0===this.grid.keys.length&&0===this.ignoredGrid.keys.length)return a;for(var r=this.collisionBoxArray,o=this.rotationMatrix,n=this.yStretch,s=[],l=1/0,c=1/0,h=-1/0,x=-1/0,m=0;m<e.length;m++)for(var p=e[m],y=0;y<p.length;y++){var g=p[y].matMult(o);l=Math.min(l,g.x),c=Math.min(c,g.y),h=Math.max(h,g.x),x=Math.max(x,g.y),s.push(g)}for(var d=this.grid.query(l,c,h,x),T=this.ignoredGrid.query(l,c,h,x),u=0;u<T.length;u++)d.push(T[u]);for(var v=t/this.perspectiveRatio,M=Math.pow(2,Math.ceil(Math.log(v)/Math.LN2*10)/10),f=0;f<d.length;f++){var E=r.get(d[f]),S=E.sourceLayerIndex,P=E.featureIndex;if(void 0===i[S]&&(i[S]={}),!i[S][P]&&!(M<E.placementScale||M>E.maxScale)){var N=E.anchorPoint.matMult(o),b=N.x+E.x1/v,C=N.y+E.y1/v*n,w=N.x+E.x2/v,X=N.y+E.y2/v*n,B=[new Point(b,C),new Point(w,C),new Point(w,X),new Point(b,X)];intersectionTests.polygonIntersectsPolygon(s,B)&&(i[S][P]=!0,a.push(d[f]))}}return a},CollisionTile.prototype.getPlacementScale=function(e,t,i,a,r){var o=t.x-a.x,n=t.y-a.y,s=(r.x1-i.x2)/o,l=(r.x2-i.x1)/o,c=(r.y1-i.y2)*this.yStretch/n,h=(r.y2-i.y1)*this.yStretch/n;(isNaN(s)||isNaN(l))&&(s=l=1),(isNaN(c)||isNaN(h))&&(c=h=1);var x=Math.min(Math.max(s,l),Math.max(c,h)),m=r.maxScale,p=i.maxScale;return x>m&&(x=m),x>p&&(x=p),x>e&&x>=r.placementScale&&(e=x),e},CollisionTile.prototype.insertCollisionFeature=function(e,t,i){for(var a=this,r=i?this.ignoredGrid:this.grid,o=this.collisionBoxArray,n=e.boxStartIndex;n<e.boxEndIndex;n++){var s=o.get(n);s.placementScale=t,t<a.maxScale&&(1===a.perspectiveRatio||s.maxScale>=1)&&r.insert(n,s.bbox0,s.bbox1,s.bbox2,s.bbox3)}},module.exports=CollisionTile;
},{"../@minemap/point-geometry":50,"../data/extent":75,"../util/intersection_tests":237,"grid-index":20}],191:[function(_dereq_,module,exports){
"use strict";function getAnchors(e,r,t,n,a,l,o,c,h,i){var s=n?.6*l*o:0,u=Math.max(n?n.right-n.left:0,a?a.right-a.left:0),g=0===e[0].x||e[0].x===h||0===e[0].y||e[0].y===h;r-u*o<r/4&&(r=u*o+r/4);var p=2*l;return resample(e,g?r/2*c%r:(u/2+p)*o*c%r,r,s,t,u*o,g,!1,h,i)}function resample(e,r,t,n,a,l,o,c,h,i){for(var s=l/2,u=0,g=0;g<e.length-1;g++)u+=e[g].dist(e[g+1]);for(var p=0,x=r-t,f=[],v=0;v<e.length-1;v++){for(var A=e[v],m=e[v+1],y=A.dist(m),d=m.angleTo(A);x+t<p+y;){x+=t;var k=(x-p)/y,M=interpolate(A.x,m.x,k),_=interpolate(A.y,m.y,k);if(!i&&M>=0&&M<h&&_>=0&&_<h&&x-s>=0&&x+s<=u){var q=new Anchor(M,_,d,v)._round();n&&!checkMaxAngle(e,q,l,n,a)||f.push(q)}if(i&&M>=0&&M<h&&_>=0&&_<h){var w=new Anchor(M,_,d,v)._round();n&&!checkMaxAngle(e,w,l,n,a)||f.push(w)}}p+=y}return c||f.length||o||(f=resample(e,p/2,t,n,a,l,o,!0,h,i)),f}var interpolate=_dereq_("../style-spec/util/interpolate"),Anchor=_dereq_("../symbol/anchor"),checkMaxAngle=_dereq_("./check_max_angle");module.exports=getAnchors;
},{"../style-spec/util/interpolate":142,"../symbol/anchor":185,"./check_max_angle":186}],192:[function(_dereq_,module,exports){
"use strict";var ShelfPack=_dereq_("../@minemap/shelf-pack"),util=_dereq_("../util/util"),SIZE_GROWTH_RATE=4,DEFAULT_SIZE=128,MAX_SIZE=2048,GlyphAtlas=function(){this.width=DEFAULT_SIZE,this.height=DEFAULT_SIZE,this.atlas=new ShelfPack(this.width,this.height),this.index={},this.ids={},this.data=new Uint8Array(this.width*this.height)};GlyphAtlas.prototype.getGlyphs=function(){var t,i,e,h=this,r={};for(var s in h.ids)t=s.split("#"),i=t[0],e=t[1],r[i]||(r[i]=[]),r[i].push(e);return r},GlyphAtlas.prototype.getRects=function(){var t,i,e,h=this,r={};for(var s in h.ids)t=s.split("#"),i=t[0],e=t[1],r[i]||(r[i]={}),r[i][e]=h.index[s];return r},GlyphAtlas.prototype.addGlyph=function(t,i,e,h){var r=this;if(!e)return null;var s=i+"#"+e.id;if(this.index[s])return this.ids[s].indexOf(t)<0&&this.ids[s].push(t),this.index[s];if(!e.bitmap)return null;var a=e.width+2*h,n=e.height+2*h,E=a+2,l=n+2,T=this.atlas.packOne(E,l);if(T||(this.resize(),T=this.atlas.packOne(E,l)),!T)return util.warnOnce("glyph bitmap overflow"),null;this.index[s]=T,this.ids[s]=[t];for(var u=this.data,d=e.bitmap,p=0;p<n;p++)for(var A=r.width*(T.y+p+1)+T.x+1,_=a*p,o=0;o<a;o++)u[A+o]=d[_+o];return this.dirty=!0,T},GlyphAtlas.prototype.resize=function(){var t=this,i=this.width,e=this.height;if(!(i>=MAX_SIZE||e>=MAX_SIZE)){this.texture&&(this.gl&&this.gl.deleteTexture(this.texture),this.texture=null),this.width*=SIZE_GROWTH_RATE,this.height*=SIZE_GROWTH_RATE,this.atlas.resize(this.width,this.height);for(var h=new ArrayBuffer(this.width*this.height),r=0;r<e;r++){var s=new Uint8Array(t.data.buffer,e*r,i);new Uint8Array(h,e*r*SIZE_GROWTH_RATE,i).set(s)}this.data=new Uint8Array(h)}},GlyphAtlas.prototype.bind=function(t){this.gl=t,this.texture?t.bindTexture(t.TEXTURE_2D,this.texture):(this.texture=t.createTexture(),t.bindTexture(t.TEXTURE_2D,this.texture),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,t.LINEAR),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,t.LINEAR),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,t.CLAMP_TO_EDGE),t.texImage2D(t.TEXTURE_2D,0,t.ALPHA,this.width,this.height,0,t.ALPHA,t.UNSIGNED_BYTE,null))},GlyphAtlas.prototype.updateTexture=function(t){this.bind(t),this.dirty&&(t.texSubImage2D(t.TEXTURE_2D,0,0,0,this.width,this.height,t.ALPHA,t.UNSIGNED_BYTE,this.data),this.dirty=!1)},module.exports=GlyphAtlas;
},{"../@minemap/shelf-pack":51,"../util/util":247}],193:[function(_dereq_,module,exports){
"use strict";function glyphUrl(t,e,r,a){return a=a||"abc",r.replace("{s}",a[t.length%a.length]).replace("{fontstack}",t).replace("{range}",e)}var normalizeURL=_dereq_("../util/minemap").normalizeGlyphsURL,ajax=_dereq_("../util/ajax"),Glyphs=_dereq_("../util/glyphs"),GlyphAtlas=_dereq_("../symbol/glyph_atlas"),Protobuf=_dereq_("pbf"),TinySDF=_dereq_("../@minemap/tiny-sdf"),isChar=_dereq_("../util/is_char_in_unicode_block"),Evented=_dereq_("../util/evented"),SimpleGlyph=function(t,e,r){this.advance=t.advance,this.left=t.left-r-1,this.top=t.top+r+1,this.rect=e},GlyphSource=function(t){function e(e,r,a,i){t.call(this),this.url=e&&normalizeURL(e),this.atlases={},this.stacks={},this.loading={},this.localIdeographFontFamily=r,this.tinySDFs={},this.setEventedParent(i),this.transformRequestCallback=a}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getSimpleGlyphs=function(t,e,r,a){var i=this;void 0===this.stacks[t]&&(this.stacks[t]={ranges:{},cjkGlyphs:{}}),void 0===this.atlases[t]&&(this.atlases[t]=new GlyphAtlas);for(var l={},s=this.stacks[t],o=this.atlases[t],n={},h=0,p=0,y=e;p<y.length;p+=1){var u=y[p];!function(e){var a=Math.floor(e/256);if(i.localIdeographFontFamily&&(isChar["CJK Unified Ideographs"](e)||isChar["Hangul Syllables"](e))){s.cjkGlyphs[e]||(s.cjkGlyphs[e]=i.loadCJKGlyph(t,e));var p=s.cjkGlyphs[e],y=o.addGlyph(r,t,p,3);p&&(l[e]=new SimpleGlyph(p,y,3))}else if(s.ranges[a]){var u=s.ranges[a].glyphs[e],c=o.addGlyph(r,t,u,3);u&&(l[e]=new SimpleGlyph(u,c,3))}else void 0===n[a]&&(n[a]=[],h++),n[a].push(e)}(u)}h||a(void 0,l,t);var c=function(e,s,p){if(e)i.fire("error",{error:e});else if("number"==typeof s&&p){for(var y=i.stacks[t].ranges[s]=p.stacks[0],u=0;u<n[s].length;u++){var c=n[s][u],d=y.glyphs[c],f=o.addGlyph(r,t,d,3);d&&(l[c]=new SimpleGlyph(d,f,3))}h--,h||a(void 0,l,t)}};for(var d in n)i.loadRange(t,+d,c)},e.prototype.createTinySDF=function(t,e){return new TinySDF(22,4,8,.25,t,e)},e.prototype.loadCJKGlyph=function(t,e){var r=this.tinySDFs[t];if(!r){var a="500";/NORMAL/i.test(t)?a="500":/REGULAR/i.test(t)?a="400":/BOLD/i.test(t)&&(a="900"),r=this.tinySDFs[t]=this.createTinySDF(this.localIdeographFontFamily,a)}return{id:e,bitmap:r.draw(String.fromCharCode(e)),width:24,height:24,left:0,top:-3,advance:22}},e.prototype.loadPBF=function(t,e){var r=this.transformRequestCallback?this.transformRequestCallback(t,ajax.ResourceType.Glyphs):{url:t};ajax.getArrayBuffer(r,e)},e.prototype.loadRange=function(t,e,r){if(256*e>65535)return void r(new Error("glyphs > 65535 not supported"));void 0===this.loading[t]&&(this.loading[t]={});var a=this.loading[t];if(a[e])a[e].push(r);else{a[e]=[r];var i=256*e+"-"+(256*e+255),l=glyphUrl(t,i,this.url);this.loadPBF(l,function(t,r){if(t)for(var i=0,l=a[e];i<l.length;i+=1){var s=l[i];s(t)}else if(r)for(var o=new Glyphs(new Protobuf(r.data)),n=0,h=a[e];n<h.length;n+=1){var p=h[n];p(null,e,o)}delete a[e]})}},e.prototype.getGlyphAtlas=function(t){return this.atlases[t]},e}(Evented);module.exports=GlyphSource;
},{"../@minemap/tiny-sdf":52,"../symbol/glyph_atlas":192,"../util/ajax":221,"../util/evented":231,"../util/glyphs":234,"../util/is_char_in_unicode_block":238,"../util/minemap":240,"pbf":35}],194:[function(_dereq_,module,exports){
"use strict";module.exports=function(e){function t(t){g.push(e[t]),l++}function r(e,t,r){var n=u[e];return delete u[e],u[t]=n,g[n].geometry[0].pop(),g[n].geometry[0]=g[n].geometry[0].concat(r[0]),n}function n(e,t,r){var n=i[t];return delete i[t],i[e]=n,g[n].geometry[0].shift(),g[n].geometry[0]=r[0].concat(g[n].geometry[0]),n}function o(e,t,r){var n=r?t[0][t[0].length-1]:t[0][0];return e+":"+n.x+":"+n.y}for(var i={},u={},g=[],l=0,m=0;m<e.length;m++){var y=e[m],c=y.geometry,f=y.text;if(f){var a=o(f,c),s=o(f,c,!0);if(a in u&&s in i&&u[a]!==i[s]){var v=n(a,s,c),d=r(a,s,g[v].geometry);delete i[a],delete u[s],u[o(f,g[d].geometry,!0)]=d,g[v].geometry=null}else a in u?r(a,s,c):s in i?n(a,s,c):(t(m),i[a]=l-1,u[s]=l-1)}else t(m)}return g.filter(function(e){return e.geometry})};
},{}],195:[function(_dereq_,module,exports){
"use strict";function getLabelPlaneMatrix(e,t,a,n,r){var i=mat4.identity(new Float32Array(16));return t?(mat4.identity(i),mat4.scale(i,i,[1/r,1/r,1]),a||mat4.rotateZ(i,i,n.angle)):(mat4.scale(i,i,[n.width/2,-n.height/2,1]),mat4.translate(i,i,[1,-1,0]),mat4.multiply(i,i,e)),i}function getGlCoordMatrix(e,t,a,n,r){var i=mat4.identity(new Float32Array(16));return t?(mat4.multiply(i,i,e),mat4.scale(i,i,[r,r,1]),a||mat4.rotateZ(i,i,-n.angle)):(mat4.scale(i,i,[1,-1,1]),mat4.translate(i,i,[-1,-1,0]),mat4.scale(i,i,[2/n.width,2/n.height,1])),i}function project(e,t){var a=[e.x,e.y,0,1];return vec4.transformMat4(a,a,t),new Point(a[0]/a[3],a[1]/a[3])}function isVisible(e,t,a,n){var r=e[0]/e[3],i=e[1]/e[3];return r>=-a[0]&&r<=a[0]&&i>=-a[1]&&i<=a[1]&&n.frameHistory.isVisible(t)}function updateLineLabels(e,t,a,n,r,i,l,o,s,m){var p=n?e.textSizeData:e.iconSizeData,u=symbolSize.evaluateSizeForZoom(p,a.transform,m,n),y=[256/a.width*2+1,256/a.height*2+1],c=n?e.buffers.glyph.dynamicLayoutVertexArray:e.buffers.icon.dynamicLayoutVertexArray;c.clear();for(var f=e.lineVertexArray,g=n?e.placedGlyphArray:e.placedIconArray,h=0;h<g.length;h++){var d=g.get(h),v=[d.anchorX,d.anchorY,0,1];if(vec4.transformMat4(v,v,t),isVisible(v,d.placementZoom,y,a)){var x=v[3],b=1+.5*(x/a.transform.cameraToCenterDistance-1),L=symbolSize.evaluateSizeForFeature(p,u,d),A=l?L*b:L/b,G=project(new Point(d.anchorX,d.anchorY),r),S={},I=placeGlyphsAlongLine(d,A,!1,o,t,r,i,e.glyphOffsetArray,f,c,G,S);(I.notEnoughRoom||I.needsFlipping&&placeGlyphsAlongLine(d,A,!0,o,t,r,i,e.glyphOffsetArray,f,c,G,S).notEnoughRoom)&&hideGlyphs(d.numGlyphs,c)}else hideGlyphs(d.numGlyphs,c)}n?e.buffers.glyph.dynamicLayoutVertexBuffer.updateData(c.serialize()):e.buffers.icon.dynamicLayoutVertexBuffer.updateData(c.serialize())}function placeGlyphsAlongLine(e,t,a,n,r,i,l,o,s,m,p,u){var y,c=t/24,f=e.lineOffsetX*t,g=e.lineOffsetY*t;if(e.numGlyphs>1){var h=e.glyphStartIndex+e.numGlyphs,d=o.get(e.glyphStartIndex).offsetX,v=o.get(h-1).offsetX,x=e.lineStartIndex,b=e.lineStartIndex+e.lineLength,L=placeGlyphAlongLine(c*d,f,g,a,p,e.segment,x,b,s,i,u);if(!L)return{notEnoughRoom:!0};var A=placeGlyphAlongLine(c*v,f,g,a,p,e.segment,x,b,s,i,u);if(!A)return{notEnoughRoom:!0};var G=project(L.point,l),S=project(A.point,l);if(n&&!a&&(e.vertical?G.y<S.y:G.x>S.x))return{needsFlipping:!0};y=[L];for(var I=e.glyphStartIndex+1;I<h-1;I++){var M=o.get(I);y.push(placeGlyphAlongLine(c*M.offsetX,f,g,a,p,e.segment,x,b,s,i,u))}y.push(A)}else{if(n&&!a){var P=project(s.get(e.lineStartIndex+e.segment),r),z=project(s.get(e.lineStartIndex+e.segment+1),r);if(e.vertical?z.y>P.y:z.x<P.x)return{needsFlipping:!0}}var D=o.get(e.glyphStartIndex),w=placeGlyphAlongLine(c*D.offsetX,f,g,a,p,e.segment,e.lineStartIndex,e.lineStartIndex+e.lineLength,s,i,u);if(!w)return{notEnoughRoom:!0};y=[w]}for(var F=e.placementZoom,V=0,j=y;V<j.length;V+=1){var X=j[V];addDynamicAttributes(m,X.point,X.angle,F)}return{}}function placeGlyphAlongLine(e,t,a,n,r,i,l,o,s,m,p){var u=n?e-t:e+t,y=u>0?1:-1,c=0;n&&(y*=-1,c=Math.PI),y<0&&(c+=Math.PI);for(var f=y>0?l+i:l+i+1,g=r,h=r,d=0,v=0,x=Math.abs(u);d+v<=x;){if((f+=y)<l||f>=o)return null;h=g,g=p[f],void 0===g&&(g=p[f]=project(s.get(f),m)),d+=v,v=h.dist(g)}var b=(x-d)/v,L=g.sub(h),A=L.mult(b)._add(h);return A._add(L._unit()._perp()._mult(a*y)),{point:A,angle:c+Math.atan2(g.y-h.y,g.x-h.x)}}function hideGlyphs(e,t){for(var a=0;a<e;a++)addDynamicAttributes(t,offscreenPoint,0,25)}var Point=_dereq_("../@minemap/point-geometry"),mat4=_dereq_("../@minemap/gl-matrix").mat4,vec4=_dereq_("../@minemap/gl-matrix").vec4,symbolSize=_dereq_("./symbol_size"),addDynamicAttributes=_dereq_("../data/bucket/symbol_bucket").addDynamicAttributes;module.exports={updateLineLabels:updateLineLabels,getLabelPlaneMatrix:getLabelPlaneMatrix,getGlCoordMatrix:getGlCoordMatrix};var offscreenPoint=new Point(-1/0,-1/0);
},{"../@minemap/gl-matrix":49,"../@minemap/point-geometry":50,"../data/bucket/symbol_bucket":69,"./symbol_size":199}],196:[function(_dereq_,module,exports){
"use strict";function SymbolQuad(t,e,i,n,o,a,u){this.tl=t,this.tr=e,this.bl=i,this.br=n,this.tex=o,this.writingMode=a,this.glyphOffset=u}function getIconQuads(t,e,i,n,o,a,u){var l,r,d,h,s=e.image,c=i.layout,g=e.top-1/s.pixelRatio,f=e.left-1/s.pixelRatio,x=e.bottom+1/s.pixelRatio,p=e.right+1/s.pixelRatio;if("none"!==c["icon-text-fit"]&&o){var w=p-f,m=x-g,y=c["text-size"]/24,_=o.left*y,M=o.right*y,P=o.top*y,b=o.bottom*y,v=M-_,Q=b-P,R=c["icon-text-fit-padding"][0],I=c["icon-text-fit-padding"][1],S=c["icon-text-fit-padding"][2],G=c["icon-text-fit-padding"][3],L="width"===c["icon-text-fit"]?.5*(Q-m):0,V="height"===c["icon-text-fit"]?.5*(v-w):0,q="width"===c["icon-text-fit"]||"both"===c["icon-text-fit"]?v:w,z="height"===c["icon-text-fit"]||"both"===c["icon-text-fit"]?Q:m;l=new Point(_+V-G,P+L-R),r=new Point(_+V+I+q,P+L-R),d=new Point(_+V+I+q,P+L+S+z),h=new Point(_+V-G,P+L+S+z)}else l=new Point(f,g),r=new Point(p,g),d=new Point(p,x),h=new Point(f,x);var O=i.getLayoutValue("icon-rotate",a,u)*Math.PI/180;if(O){var j=Math.sin(O),k=Math.cos(O),A=[k,-j,j,k];l._matMult(A),r._matMult(A),h._matMult(A),d._matMult(A)}return[new SymbolQuad(l,r,h,d,{x:s.textureRect.x-1,y:s.textureRect.y-1,w:s.textureRect.w+2,h:s.textureRect.h+2},void 0,[0,0])]}function getGlyphQuads(t,e,i,n,o,a){for(var u=i.getLayoutValue("text-rotate",o,a)*Math.PI/180,l=i.getLayoutValue("text-offset",o,a).map(function(t){return 24*t}),r=e.positionedGlyphs,d=[],h=0;h<r.length;h++){var s=r[h],c=s.glyph;if(c){var g=c.rect;if(g){var f=c.advance/2,x=n?[s.x+f,s.y]:[0,0],p=n?[0,0]:[s.x+f+l[0],s.y+l[1]],w=c.left-f+p[0],m=-c.top+p[1],y=w+g.w,_=m+g.h,M=new Point(w,m),P=new Point(y,m),b=new Point(w,_),v=new Point(y,_),Q=new Point(p[0]-f,c.advance/2);if(0!==s.angle&&(M._sub(Q)._rotate(s.angle)._add(Q),P._sub(Q)._rotate(s.angle)._add(Q),b._sub(Q)._rotate(s.angle)._add(Q),v._sub(Q)._rotate(s.angle)._add(Q)),u){var R=Math.sin(u),I=Math.cos(u),S=[I,-R,R,I];M._matMult(S),P._matMult(S),b._matMult(S),v._matMult(S)}d.push(new SymbolQuad(M,P,b,v,g,e.writingMode,x))}}}return d}var Point=_dereq_("../@minemap/point-geometry");module.exports={getIconQuads:getIconQuads,getGlyphQuads:getGlyphQuads,SymbolQuad:SymbolQuad};
},{"../@minemap/point-geometry":50}],197:[function(_dereq_,module,exports){
"use strict";function PositionedGlyph(t,e,i,n,a){this.codePoint=t,this.x=e,this.y=i,this.glyph=n||null,this.angle=a}function Shaping(t,e,i,n,a,r,o){this.positionedGlyphs=t,this.text=e,this.top=i,this.bottom=n,this.left=a,this.right=r,this.writingMode=o}function breakLines(t,e){for(var i=[],n=0,a=0,r=e;a<r.length;a+=1){var o=r[a];i.push(t.substring(n,o)),n=o}return n<t.length&&i.push(t.substring(n,t.length)),i}function shapeText(t,e,i,n,a,r,o,s,l,c){var h=t.trim();c===WritingMode.vertical&&(h=verticalizePunctuation(h));var u,g=[],p=new Shaping(g,h,s[1],s[1],s[0],s[0],c);return u=rtlTextPlugin.processBidirectionalText?rtlTextPlugin.processBidirectionalText(h,determineLineBreaks(h,o,i,e)):breakLines(h,determineLineBreaks(h,o,i,e)),shapeLines(p,e,u,n,a,r,s,c,o,l),!!g.length&&p}function determineAverageLineWidth(t,e,i,n){var a=0;for(var r in t){var o=n[t.charCodeAt(r)];o&&(a+=o.advance+e)}return a/Math.max(1,Math.ceil(a/i))}function calculateBadness(t,e,i,n){var a=Math.pow(t-e,2);return n?t<e?a/2:2*a:a+Math.abs(i)*i}function calculatePenalty(t,e){var i=0;return 10===t&&(i-=1e4),40!==t&&65288!==t||(i+=50),41!==e&&65289!==e||(i+=50),i}function evaluateBreak(t,e,i,n,a,r){for(var o=null,s=calculateBadness(e,i,a,r),l=0,c=n;l<c.length;l+=1){var h=c[l],u=e-h.x,g=calculateBadness(u,i,a,r)+h.badness;g<=s&&(o=h,s=g)}return{index:t,x:e,priorBreak:o,badness:s}}function leastBadBreaks(t){return t?leastBadBreaks(t.priorBreak).concat(t.index):[]}function determineLineBreaks(t,e,i,n){if(!i)return[];if(!t)return[];for(var a=[],r=determineAverageLineWidth(t,e,i,n),o=0,s=0;s<t.length;s++){var l=t.charCodeAt(s),c=n[l];c&&!whitespace[l]&&(o+=c.advance+e),s<t.length-1&&(breakable[l]||scriptDetection.charAllowsIdeographicBreaking(l))&&a.push(evaluateBreak(s+1,o,r,a,calculatePenalty(l,t.charCodeAt(s+1)),!1))}return leastBadBreaks(evaluateBreak(t.length,o,r,a,0,!0))}function getAnchorAlignment(t){var e=.5,i=.5;switch(t){case"right":case"top-right":case"bottom-right":e=1;break;case"left":case"top-left":case"bottom-left":e=0}switch(t){case"bottom":case"bottom-right":case"bottom-left":i=1;break;case"top":case"top-right":case"top-left":i=0}return{horizontalAlign:e,verticalAlign:i}}function shapeLines(t,e,i,n,a,r,o,s,l,c){var h=0,u=-17,g=0,p=t.positionedGlyphs,d="right"===r?1:"left"===r?0:.5;for(var v in i){var f=i[v].trim();if(f.length){for(var b=p.length,m=0;m<f.length;m++){var x=f.charCodeAt(m),B=e[x];B&&(scriptDetection.charHasUprightVerticalOrientation(x)&&s!==WritingMode.horizontal?(p.push(new PositionedGlyph(x,h,0,B,-Math.PI/2)),h+=c+l):(p.push(new PositionedGlyph(x,h,u,B,0)),h+=B.advance+l))}if(p.length!==b){var k=h-l;g=Math.max(k,g),justifyLine(p,e,b,p.length-1,d)}h=0,u+=n}else u+=n}var A=getAnchorAlignment(a);align(p,d,A.horizontalAlign,A.verticalAlign,g,n,i.length);var y=i.length*n;t.top+=-A.verticalAlign*y,t.bottom=t.top+y,t.left+=-A.horizontalAlign*g,t.right=t.left+g}function justifyLine(t,e,i,n,a){if(a)for(var r=e[t[n].codePoint].advance,o=(t[n].x+r)*a,s=i;s<=n;s++)t[s].x-=o}function align(t,e,i,n,a,r,o){for(var s=(e-i)*a,l=(-n*o+.5)*r,c=0;c<t.length;c++)t[c].x+=s,t[c].y+=l}function shapeIcon(t,e){var i=e[0],n=e[1],a=i-t.displaySize[0]/2,r=a+t.displaySize[0],o=n-t.displaySize[1]/2;return new PositionedIcon(t,o,o+t.displaySize[1],a,r)}function PositionedIcon(t,e,i,n,a){this.image=t,this.top=e,this.bottom=i,this.left=n,this.right=a}var scriptDetection=_dereq_("../util/script_detection"),verticalizePunctuation=_dereq_("../util/verticalize_punctuation"),rtlTextPlugin=_dereq_("../source/rtl_text_plugin"),WritingMode={horizontal:1,vertical:2};module.exports={shapeText:shapeText,shapeIcon:shapeIcon,WritingMode:WritingMode};var whitespace={9:!0,10:!0,11:!0,12:!0,13:!0,32:!0},breakable={10:!0,32:!0,38:!0,40:!0,41:!0,43:!0,45:!0,47:!0,173:!0,183:!0,8203:!0,8208:!0,8211:!0,8231:!0};
},{"../source/rtl_text_plugin":120,"../util/script_detection":241,"../util/verticalize_punctuation":249}],198:[function(_dereq_,module,exports){
"use strict";function spriteAtlasElement(t){var e={x:t.rect.x+padding,y:t.rect.y+padding,w:t.rect.w-2*padding,h:t.rect.h-2*padding};return{sdf:t.sdf,pixelRatio:t.pixelRatio,isNativePixelRatio:t.pixelRatio===browser.devicePixelRatio,textureRect:e,tl:[e.x,e.y],br:[e.x+e.w,e.y+e.h],displaySize:[e.w/t.pixelRatio,e.h/t.pixelRatio]}}function copyBitmap(t,e,i,r,a,h,s,o,n,l,p){var d,f,u=r*e+i,g=o*h+s;if(p)for(g-=h,f=-1;f<=l;f++,g+=h)for(u=((f+l)%l+r)*e+i,d=-1;d<=n;d++)a[g+d]=t[u+(d+n)%n];else for(f=0;f<l;f++,u+=e,g+=h)for(d=0;d<n;d++)a[g+d]=t[u+d]}var ShelfPack=_dereq_("../@minemap/shelf-pack"),browser=_dereq_("../util/browser"),util=_dereq_("../util/util"),ref=_dereq_("../util/window"),HTMLImageElement=ref.HTMLImageElement,Evented=_dereq_("../util/evented"),padding=1,SpriteAtlas=function(t){function e(e,i){t.call(this),this.images={},this.filter=0,this.width=Math.ceil(e*browser.devicePixelRatio),this.height=Math.ceil(i*browser.devicePixelRatio),this.shelfPack=new ShelfPack(this.width,this.height),this.dirty=!0}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getPixelSize=function(){return[this.width,this.height]},e.prototype.allocateImage=function(t,e){var i=t+2*padding,r=e+2*padding,a=this.shelfPack.packOne(i,r);return a||(util.warnOnce("SpriteAtlas out of space."),null)},e.prototype.addImage=function(t,e,i){var r,a,h;if(e instanceof HTMLImageElement?(r=e.width,a=e.height,e=browser.getImageData(e),h=1):(r=i.width,a=i.height,h=i.pixelRatio||1),ArrayBuffer.isView(e)&&(e=new Uint32Array(e.buffer)),!(e instanceof Uint32Array))return this.fire("error",{error:new Error("Image provided in an invalid format. Supported formats are HTMLImageElement and ArrayBufferView.")});if(this.images[t])return this.fire("error",{error:new Error("An image with this name already exists.")});var s=this.allocateImage(r,a);if(!s)return this.fire("error",{error:new Error("There is not enough space to add this image.")});this.images[t]={rect:s,width:r,height:a,pixelRatio:h,sdf:!1},this.copy(e,r,s,{x:0,y:0,width:r,height:a},!1),this.fire("data",{dataType:"style"})},e.prototype.removeImage=function(t){var e=this.images[t];if(delete this.images[t],!e)return this.fire("error",{error:new Error("No image with this name exists.")});this.shelfPack.unref(e.rect),this.fire("data",{dataType:"style"})},e.prototype.getIcon=function(t){return this._getImage(t,!1)},e.prototype.getPattern=function(t){return this._getImage(t,!0)},e.prototype._getImage=function(t,e){if(this.images[t])return spriteAtlasElement(this.images[t]);if(!this.sprite)return null;var i=this.sprite.getSpritePosition(t);if(!i.width||!i.height)return null;var r=this.allocateImage(i.width,i.height);if(!r)return null;var a={rect:r,width:i.width,height:i.height,sdf:i.sdf,pixelRatio:i.pixelRatio};if(this.images[t]=a,!this.sprite.imgData||!this.sprite.width)return null;var h=new Uint32Array(this.sprite.imgData.buffer);return this.copy(h,this.sprite.width,r,i,e),spriteAtlasElement(a)},e.prototype.allocate=function(){var t=this;if(!this.data){this.data=new Uint32Array(this.width*this.height);for(var e=0;e<this.data.length;e++)t.data[e]=0}},e.prototype.copy=function(t,e,i,r,a){this.allocate();var h=this.data;copyBitmap(t,e,r.x,r.y,h,this.getPixelSize()[0],i.x+padding,i.y+padding,r.width,r.height,a),this.dirty=!0},e.prototype.setSprite=function(t){this.sprite=t},e.prototype.addIcons=function(t,e){for(var i=this,r={},a=0,h=t;a<h.length;a+=1){var s=h[a];r[s]=i.getIcon(s)}e(null,r)},e.prototype.bind=function(t,e){var i=!1;this.texture?t.bindTexture(t.TEXTURE_2D,this.texture):(this.texture=t.createTexture(),t.bindTexture(t.TEXTURE_2D,this.texture),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,t.CLAMP_TO_EDGE),t.pixelStorei(t.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0),i=!0);var r=e?t.LINEAR:t.NEAREST;r!==this.filter&&(t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,r),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,r),this.filter=r),this.dirty&&(this.allocate(),i?t.texImage2D(t.TEXTURE_2D,0,t.RGBA,this.width,this.height,0,t.RGBA,t.UNSIGNED_BYTE,new Uint8Array(this.data.buffer)):t.texSubImage2D(t.TEXTURE_2D,0,0,0,this.width,this.height,t.RGBA,t.UNSIGNED_BYTE,new Uint8Array(this.data.buffer)),this.dirty=!1)},e}(Evented);module.exports=SpriteAtlas;
},{"../@minemap/shelf-pack":51,"../util/browser":222,"../util/evented":231,"../util/util":247,"../util/window":224}],199:[function(_dereq_,module,exports){
"use strict";function evaluateSizeForFeature(e,o,t){var i=o;return e.isFeatureConstant?i.uSize:e.isZoomConstant?t.lowerSize/10:interpolate.number(t.lowerSize/10,t.upperSize/10,i.uSizeT)}function evaluateSizeForZoom(e,o,t,i){var a={};if(e.isZoomConstant||e.isFeatureConstant)if(e.isFeatureConstant&&!e.isZoomConstant){var n;if("interval"===e.functionType)n=t.getLayoutValue(i?"text-size":"icon-size",{zoom:o.zoom});else{var r="interval"===e.functionType?0:interpolationFactor(o.zoom,e.functionBase,e.coveringZoomRange[0],e.coveringZoomRange[1]),u=e.coveringStopValues[0],l=e.coveringStopValues[1];n=u+(l-u)*util.clamp(r,0,1)}a.uSize=n}else e.isFeatureConstant&&e.isZoomConstant&&(a.uSize=e.layoutSize);else{var s=interpolationFactor(o.zoom,e.functionBase,e.coveringZoomRange[0],e.coveringZoomRange[1]);a.uSizeT=util.clamp(s,0,1)}return a}var interpolate=_dereq_("../style-spec/util/interpolate"),util=_dereq_("../util/util"),interpolationFactor=_dereq_("../style-spec/function").interpolationFactor;module.exports={evaluateSizeForFeature:evaluateSizeForFeature,evaluateSizeForZoom:evaluateSizeForZoom};
},{"../style-spec/function":136,"../style-spec/util/interpolate":142,"../util/util":247}],200:[function(_dereq_,module,exports){
"use strict";var rtlTextPlugin=_dereq_("../source/rtl_text_plugin");module.exports=function(e,r,t,a){var l=r.getLayoutValue("text-transform",t,a);return"uppercase"===l?e=e.toLocaleUpperCase():"lowercase"===l&&(e=e.toLocaleLowerCase()),rtlTextPlugin.applyArabicShaping&&(e=rtlTextPlugin.applyArabicShaping(e)),e};
},{"../source/rtl_text_plugin":120}],201:[function(_dereq_,module,exports){
"use strict";var DOM=_dereq_("../util/dom"),Point=_dereq_("../@minemap/point-geometry"),handlers={scrollZoom:_dereq_("./handler/scroll_zoom"),boxZoom:_dereq_("./handler/box_zoom"),dragRotate:_dereq_("./handler/drag_rotate"),dragPan:_dereq_("./handler/drag_pan"),keyboard:_dereq_("./handler/keyboard"),doubleClickZoom:_dereq_("./handler/dblclick_zoom"),touchZoomRotate:_dereq_("./handler/touch_zoom_rotate")};module.exports=function(e,t){function n(e){h("mouseout",e)}function o(t){e.stop(),L=DOM.mousePos(g,t),h("mousedown",t),E=!0}function r(t){var n=e.dragRotate&&e.dragRotate.isActive();p&&!n&&h("contextmenu",p),p=null,E=!1,h("mouseup",t)}function a(t){if(!(e.dragPan&&e.dragPan.isActive()||e.dragRotate&&e.dragRotate.isActive())){for(var n=t.toElement||t.target;n&&n!==g;)n=n.parentNode;n===g&&h("mousemove",t)}}function u(t){e.stop(),f("touchstart",t),!t.touches||t.touches.length>1||(b?(clearTimeout(b),b=null,h("dblclick",t)):b=setTimeout(l,300))}function i(e){f("touchmove",e)}function c(e){f("touchend",e)}function d(e){f("touchcancel",e)}function l(){b=null}function s(e){DOM.mousePos(g,e).equals(L)&&h("click",e)}function m(e){h("dblclick",e),e.preventDefault()}function v(t){var n=e.dragRotate&&e.dragRotate.isActive();E||n?E&&(p=t):h("contextmenu",t),t.preventDefault()}function h(t,n){var o=DOM.mousePos(g,n);return e.fire(t,{lngLat:e.unproject(o),point:o,originalEvent:n})}function f(t,n){var o=DOM.touchPos(g,n),r=o.reduce(function(e,t,n,o){return e.add(t.div(o.length))},new Point(0,0));return e.fire(t,{lngLat:e.unproject(r),point:r,lngLats:o.map(function(t){return e.unproject(t)},this),points:o,originalEvent:n})}var g=e.getCanvasContainer(),p=null,E=!1,L=null,b=null;for(var q in handlers)e[q]=new handlers[q](e,t),t.interactive&&t[q]&&e[q].enable(t[q]);g.addEventListener("mouseout",n,!1),g.addEventListener("mousedown",o,!1),g.addEventListener("mouseup",r,!1),g.addEventListener("mousemove",a,!1),g.addEventListener("touchstart",u,!1),g.addEventListener("touchend",c,!1),g.addEventListener("touchmove",i,!1),g.addEventListener("touchcancel",d,!1),g.addEventListener("click",s,!1),g.addEventListener("dblclick",m,!1),g.addEventListener("contextmenu",v,!1)};
},{"../@minemap/point-geometry":50,"../util/dom":229,"./handler/box_zoom":209,"./handler/dblclick_zoom":210,"./handler/drag_pan":211,"./handler/drag_rotate":212,"./handler/keyboard":213,"./handler/scroll_zoom":214,"./handler/touch_zoom_rotate":215}],202:[function(_dereq_,module,exports){
"use strict";var util=_dereq_("../util/util"),interpolate=_dereq_("../style-spec/util/interpolate"),browser=_dereq_("../util/browser"),LngLat=_dereq_("../geo/lng_lat"),LngLatBounds=_dereq_("../geo/lng_lat_bounds"),Point=_dereq_("../@minemap/point-geometry"),Evented=_dereq_("../util/evented"),Camera=function(t){function e(e,i){t.call(this),this.moving=!1,this.transform=e,this._bearingSnap=i.bearingSnap}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getCenter=function(){return this.transform.center},e.prototype.setCenter=function(t,e){return this.jumpTo({center:t},e)},e.prototype.panBy=function(t,e,i){return t=Point.convert(t).mult(-1),this.panTo(this.transform.center,util.extend({offset:t},e),i)},e.prototype.panTo=function(t,e,i){return this.easeTo(util.extend({center:t},e),i)},e.prototype.getZoom=function(){return this.transform.zoom},e.prototype.setZoom=function(t,e){return this.jumpTo({zoom:t},e),this},e.prototype.zoomTo=function(t,e,i){return this.easeTo(util.extend({zoom:t},e),i)},e.prototype.zoomIn=function(t,e){return this.zoomTo(this.getZoom()+1,t,e),this},e.prototype.zoomOut=function(t,e){return this.zoomTo(this.getZoom()-1,t,e),this},e.prototype.getBearing=function(){return this.transform.bearing},e.prototype.setBearing=function(t,e){return this.jumpTo({bearing:t},e),this},e.prototype.rotateTo=function(t,e,i){return this.easeTo(util.extend({bearing:t},e),i)},e.prototype.resetNorth=function(t,e){return this.rotateTo(0,util.extend({duration:1e3},t),e),this},e.prototype.snapToNorth=function(t,e){return Math.abs(this.getBearing())<this._bearingSnap?this.resetNorth(t,e):this},e.prototype.getPitch=function(){return this.transform.pitch},e.prototype.setPitch=function(t,e){return this.jumpTo({pitch:t},e),this},e.prototype.fitBounds=function(t,e,i){if(e=util.extend({padding:{top:0,bottom:0,right:0,left:0},offset:[0,0],maxZoom:this.transform.maxZoom},e),"number"==typeof e.padding){var o=e.padding;e.padding={top:o,bottom:o,right:o,left:o}}if(!util.deepEqual(Object.keys(e.padding).sort(function(t,e){return t<e?-1:t>e?1:0}),["bottom","left","right","top"]))return void util.warnOnce("options.padding must be a positive number, or an Object with keys 'bottom', 'left', 'right', 'top'");t=LngLatBounds.convert(t);var n=[e.padding.left-e.padding.right,e.padding.top-e.padding.bottom],r=Math.min(e.padding.right,e.padding.left),a=Math.min(e.padding.top,e.padding.bottom);e.offset=[e.offset[0]+n[0],e.offset[1]+n[1]];var s=Point.convert(e.offset),h=this.transform,p=h.project(t.getNorthWest()),u=h.project(t.getSouthEast()),c=u.sub(p),m=(h.width-2*r-2*Math.abs(s.x))/c.x,f=(h.height-2*a-2*Math.abs(s.y))/c.y;return f<0||m<0?void util.warnOnce("Map cannot fit within canvas with the given bounds, padding, and/or offset."):(e.center=h.unproject(p.add(u).div(2)),e.zoom=Math.min(h.scaleZoom(h.scale*Math.min(m,f)),e.maxZoom),e.bearing=0,e.linear?this.easeTo(e,i):this.flyTo(e,i))},e.prototype.jumpTo=function(t,e){this.stop();var i=this.transform,o=!1,n=!1,r=!1;return"zoom"in t&&i.zoom!==+t.zoom&&(o=!0,i.zoom=+t.zoom),"center"in t&&(i.center=LngLat.convert(t.center)),"bearing"in t&&i.bearing!==+t.bearing&&(n=!0,i.bearing=+t.bearing),"pitch"in t&&i.pitch!==+t.pitch&&(r=!0,i.pitch=+t.pitch),this.fire("movestart",e).fire("move",e),o&&this.fire("zoomstart",e).fire("zoom",e).fire("zoomend",e),n&&this.fire("rotate",e),r&&this.fire("pitchstart",e).fire("pitch",e).fire("pitchend",e),this.fire("moveend",e)},e.prototype.easeTo=function(t,e){var i=this;this.stop(),t=util.extend({offset:[0,0],duration:500,easing:util.ease},t),!1===t.animate&&(t.duration=0),t.smoothEasing&&0!==t.duration&&(t.easing=this._smoothOutEasing(t.duration));var o=this.transform,n=this.getZoom(),r=this.getBearing(),a=this.getPitch(),s="zoom"in t?+t.zoom:n,h="bearing"in t?this._normalizeBearing(t.bearing,r):r,p="pitch"in t?+t.pitch:a,u=o.centerPoint.add(Point.convert(t.offset)),c=o.pointLocation(u),m=LngLat.convert(t.center||c);this._normalizeCenter(m);var f,g,d=o.project(c),l=o.project(m).sub(d),v=o.zoomScale(s-n);return t.around&&(f=LngLat.convert(t.around),g=o.locationPoint(f)),this.zooming=s!==n,this.rotating=r!==h,this.pitching=p!==a,this._prepareEase(e,t.noMoveStart),clearTimeout(this._onEaseEnd),this._ease(function(t){if(this.zooming&&(o.zoom=interpolate(n,s,t)),this.rotating&&(o.bearing=interpolate(r,h,t)),this.pitching&&(o.pitch=interpolate(a,p,t)),f)o.setLocationAtPoint(f,g);else{var i=o.zoomScale(o.zoom-n),c=s>n?Math.min(2,v):Math.max(.5,v),m=Math.pow(c,1-t),b=o.unproject(d.add(l.mult(t*m)).mult(i));o.setLocationAtPoint(o.renderWorldCopies?b.wrap():b,u)}this._fireMoveEvents(e)},function(){t.delayEndEvents?i._onEaseEnd=setTimeout(function(){return i._easeToEnd(e)},t.delayEndEvents):i._easeToEnd(e)},t),this},e.prototype._prepareEase=function(t,e){this.moving=!0,e||this.fire("movestart",t),this.zooming&&this.fire("zoomstart",t),this.pitching&&this.fire("pitchstart",t)},e.prototype._fireMoveEvents=function(t){this.fire("move",t),this.zooming&&this.fire("zoom",t),this.rotating&&this.fire("rotate",t),this.pitching&&this.fire("pitch",t)},e.prototype._easeToEnd=function(t){var e=this.zooming,i=this.pitching;this.moving=!1,this.zooming=!1,this.rotating=!1,this.pitching=!1,e&&this.fire("zoomend",t),i&&this.fire("pitchend",t),this.fire("moveend",t)},e.prototype.flyTo=function(t,e){function i(t){var e=(M*M-z*z+(t?-1:1)*L*L*E*E)/(2*(t?M:z)*L*E);return Math.log(Math.sqrt(e*e+1)-e)}function o(t){return(Math.exp(t)-Math.exp(-t))/2}function n(t){return(Math.exp(t)+Math.exp(-t))/2}function r(t){return o(t)/n(t)}var a=this;this.stop(),t=util.extend({offset:[0,0],speed:1.2,curve:1.42,easing:util.ease},t);var s=this.transform,h=this.getZoom(),p=this.getBearing(),u=this.getPitch(),c="zoom"in t?util.clamp(+t.zoom,s.minZoom,s.maxZoom):h,m="bearing"in t?this._normalizeBearing(t.bearing,p):p,f="pitch"in t?+t.pitch:u,g=s.zoomScale(c-h),d=s.centerPoint.add(Point.convert(t.offset)),l=s.pointLocation(d),v=LngLat.convert(t.center||l);this._normalizeCenter(v);var b=s.project(l),y=s.project(v).sub(b),_=t.curve,z=Math.max(s.width,s.height),M=z/g,E=y.mag();if("minZoom"in t){var T=util.clamp(Math.min(t.minZoom,h,c),s.minZoom,s.maxZoom),x=z/s.zoomScale(T-h);_=Math.sqrt(x/E*2)}var L=_*_,j=i(0),Z=function(t){return n(j)/n(j+_*t)},w=function(t){return z*((n(j)*r(j+_*t)-o(j))/L)/E},P=(i(1)-j)/_;if(Math.abs(E)<1e-6||isNaN(P)){if(Math.abs(z-M)<1e-6)return this.easeTo(t,e);var q=M<z?-1:1;P=Math.abs(Math.log(M/z))/_,w=function(){return 0},Z=function(t){return Math.exp(q*_*t)}}if("duration"in t)t.duration=+t.duration;else{var B="screenSpeed"in t?+t.screenSpeed/_:+t.speed;t.duration=1e3*P/B}return this.zooming=!0,this.rotating=p!==m,this.pitching=f!==u,this._prepareEase(e,!1),this._ease(function(t){var i=t*P,o=1/Z(i);s.zoom=h+s.scaleZoom(o),this.rotating&&(s.bearing=interpolate(p,m,t)),this.pitching&&(s.pitch=interpolate(u,f,t));var n=s.unproject(b.add(y.mult(w(i))).mult(o));s.setLocationAtPoint(s.renderWorldCopies?n.wrap():n,d),this._fireMoveEvents(e)},function(){return a._easeToEnd(e)},t),this},e.prototype.isEasing=function(){return!!this._abortFn},e.prototype.isMoving=function(){return this.moving},e.prototype.stop=function(){return this._abortFn&&(this._abortFn(),this._finishEase()),this},e.prototype._ease=function(t,e,i){this._finishFn=e,this._abortFn=browser.timed(function(e){t.call(this,i.easing(e)),1===e&&this._finishEase()},!1===i.animate?0:i.duration,this)},e.prototype._finishEase=function(){delete this._abortFn;var t=this._finishFn;delete this._finishFn,t.call(this)},e.prototype._normalizeBearing=function(t,e){t=util.wrap(t,-180,180);var i=Math.abs(t-e);return Math.abs(t-360-e)<i&&(t-=360),Math.abs(t+360-e)<i&&(t+=360),t},e.prototype._normalizeCenter=function(t){var e=this.transform;if(e.renderWorldCopies&&!e.lngRange){var i=t.lng-e.center.lng;t.lng+=i>180?-360:i<-180?360:0}},e.prototype._smoothOutEasing=function(t){var e=util.ease;if(this._prevEase){var i=this._prevEase,o=(Date.now()-i.start)/i.duration,n=i.easing(o+.01)-i.easing(o),r=.27/Math.sqrt(n*n+1e-4)*.01,a=Math.sqrt(.0729-r*r);e=util.bezier(r,a,.25,1)}return this._prevEase={start:(new Date).getTime(),duration:t,easing:e},e},e}(Evented);module.exports=Camera;
},{"../@minemap/point-geometry":50,"../geo/lng_lat":83,"../geo/lng_lat_bounds":84,"../style-spec/util/interpolate":142,"../util/browser":222,"../util/evented":231,"../util/util":247}],203:[function(_dereq_,module,exports){
"use strict";var DOM=_dereq_("../../util/dom"),util=_dereq_("../../util/util"),config=_dereq_("../../util/config"),AttributionControl=function(t){this.options=t,util.bindAll(["_updateEditLink","_updateData","_updateCompact"],this)};AttributionControl.prototype.getDefaultPosition=function(){return"bottom-right"},AttributionControl.prototype.onAdd=function(t){var i=this.options&&this.options.compact;return this._map=t,this._container=DOM.create("div","minemap-ctrl minemap-ctrl-attrib"),i&&this._container.classList.add("minemap-compact"),this._updateAttributions(),this._updateEditLink(),this._map.on("sourcedata",this._updateData),this._map.on("moveend",this._updateEditLink),void 0===i&&(this._map.on("resize",this._updateCompact),this._updateCompact()),this._container},AttributionControl.prototype.onRemove=function(){this._container.parentNode.removeChild(this._container),this._map.off("sourcedata",this._updateData),this._map.off("moveend",this._updateEditLink),this._map.off("resize",this._updateCompact),this._map=void 0},AttributionControl.prototype._updateEditLink=function(){this._editLink||(this._editLink=this._container.querySelector(".minemap-improve-map"));var t=[{key:"owner",value:this.styleOwner},{key:"id",value:this.styleId},{key:"access_token",value:config.ACCESS_TOKEN}];if(this._editLink){var i=t.reduce(function(i,e,o){return void 0!==e.value&&(i+=e.key+"="+e.value+(o<t.length-1?"&":"")),i},"?");this._editLink.href="https://www.minedata.cn/feedback/"+i+(this._map._hash?this._map._hash.getHashString(!0):"")}},AttributionControl.prototype._updateData=function(t){t&&"metadata"===t.sourceDataType&&(this._updateAttributions(),this._updateEditLink())},AttributionControl.prototype._updateAttributions=function(){if(this._map.style){var t=[];if(this._map.style.stylesheet){var i=this._map.style.stylesheet;this.styleOwner=i.owner,this.styleId=i.id}var e=this._map.style.sourceCaches;for(var o in e){var n=e[o].getSource();n.attribution&&t.indexOf(n.attribution)<0&&t.push(n.attribution)}t.sort(function(t,i){return t.length-i.length}),t=t.filter(function(i,e){for(var o=e+1;o<t.length;o++)if(t[o].indexOf(i)>=0)return!1;return!0}),this._container.innerHTML=t.join(" | "),this._editLink=null}},AttributionControl.prototype._updateCompact=function(){var t=this._map.getCanvasContainer().offsetWidth<=640;this._container.classList[t?"add":"remove"]("minemap-compact")},module.exports=AttributionControl;
},{"../../util/config":226,"../../util/dom":229,"../../util/util":247}],204:[function(_dereq_,module,exports){
"use strict";var DOM=_dereq_("../../util/dom"),util=_dereq_("../../util/util"),window=_dereq_("../../util/window"),FullscreenControl=function(){this._fullscreen=!1,util.bindAll(["_onClickFullscreen","_changeIcon"],this),"onfullscreenchange"in window.document?this._fullscreenchange="fullscreenchange":"onmozfullscreenchange"in window.document?this._fullscreenchange="mozfullscreenchange":"onwebkitfullscreenchange"in window.document?this._fullscreenchange="webkitfullscreenchange":"onmsfullscreenchange"in window.document&&(this._fullscreenchange="MSFullscreenChange"),this._className="minemap-ctrl"};FullscreenControl.prototype.onAdd=function(e){return this._map=e,this._mapContainer=this._map.getContainer(),this._container=DOM.create("div",this._className+" minemap-ctrl-group"),this._checkFullscreenSupport()?this._setupUI():(this._container.style.display="none",util.warnOnce("This device does not support fullscreen mode.")),this._container},FullscreenControl.prototype.onRemove=function(){this._container.parentNode.removeChild(this._container),this._map=null,window.document.removeEventListener(this._fullscreenchange,this._changeIcon)},FullscreenControl.prototype._checkFullscreenSupport=function(){return!!(window.document.fullscreenEnabled||window.document.mozFullscreenEnabled||window.document.msFullscreenEnabled||window.document.webkitFullscreenEnabled)},FullscreenControl.prototype._setupUI=function(){var e=this._fullscreenButton=DOM.create("button",this._className+"-icon "+this._className+"-fullscreen",this._container);e.setAttribute("aria-label","Toggle fullscreen"),e.type="button",this._fullscreenButton.addEventListener("click",this._onClickFullscreen),window.document.addEventListener(this._fullscreenchange,this._changeIcon)},FullscreenControl.prototype._isFullscreen=function(){return this._fullscreen},FullscreenControl.prototype._changeIcon=function(){(window.document.fullscreenElement||window.document.mozFullScreenElement||window.document.webkitFullscreenElement||window.document.msFullscreenElement)===this._mapContainer!==this._fullscreen&&(this._fullscreen=!this._fullscreen,this._fullscreenButton.classList.toggle(this._className+"-shrink"),this._fullscreenButton.classList.toggle(this._className+"-fullscreen"))},FullscreenControl.prototype._onClickFullscreen=function(){this._isFullscreen()?window.document.exitFullscreen?window.document.exitFullscreen():window.document.mozCancelFullScreen?window.document.mozCancelFullScreen():window.document.msExitFullscreen?window.document.msExitFullscreen():window.document.webkitCancelFullScreen&&window.document.webkitCancelFullScreen():this._mapContainer.requestFullscreen?this._mapContainer.requestFullscreen():this._mapContainer.mozRequestFullScreen?this._mapContainer.mozRequestFullScreen():this._mapContainer.msRequestFullscreen?this._mapContainer.msRequestFullscreen():this._mapContainer.webkitRequestFullscreen&&this._mapContainer.webkitRequestFullscreen()},module.exports=FullscreenControl;
},{"../../util/dom":229,"../../util/util":247,"../../util/window":224}],205:[function(_dereq_,module,exports){
"use strict";function checkGeolocationSupport(t){void 0!==supportsGeolocation?t(supportsGeolocation):void 0!==window.navigator.permissions?window.navigator.permissions.query({name:"geolocation"}).then(function(o){supportsGeolocation="denied"!==o.state,t(supportsGeolocation)}):(supportsGeolocation=!!window.navigator.geolocation,t(supportsGeolocation))}var Evented=_dereq_("../../util/evented"),DOM=_dereq_("../../util/dom"),window=_dereq_("../../util/window"),util=_dereq_("../../util/util"),LngLat=_dereq_("../../geo/lng_lat"),Marker=_dereq_("../marker"),defaultOptions={positionOptions:{enableHighAccuracy:!1,timeout:6e3},fitBoundsOptions:{maxZoom:15},trackUserLocation:!1,showUserLocation:!0},className="minemap-ctrl",supportsGeolocation,GeolocateControl=function(t){function o(o){t.call(this),this.options=util.extend({},defaultOptions,o),util.bindAll(["_onSuccess","_onError","_finish","_setupUI","_updateCamera","_updateMarker","_onClickGeolocate"],this)}return t&&(o.__proto__=t),o.prototype=Object.create(t&&t.prototype),o.prototype.constructor=o,o.prototype.onAdd=function(t){return this._map=t,this._container=DOM.create("div",className+" "+className+"-group"),checkGeolocationSupport(this._setupUI),this._container},o.prototype.onRemove=function(){void 0!==this._geolocationWatchID&&(window.navigator.geolocation.clearWatch(this._geolocationWatchID),this._geolocationWatchID=void 0),this.options.showUserLocation&&this._userLocationDotMarker.remove(),this._container.parentNode.removeChild(this._container),this._map=void 0},o.prototype._onSuccess=function(t){if(this.options.trackUserLocation)switch(this._lastKnownPosition=t,this._watchState){case"WAITING_ACTIVE":case"ACTIVE_LOCK":case"ACTIVE_ERROR":this._watchState="ACTIVE_LOCK",this._geolocateButton.classList.remove("minemap-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("minemap-ctrl-geolocate-active-error"),this._geolocateButton.classList.add("minemap-ctrl-geolocate-active");break;case"BACKGROUND":case"BACKGROUND_ERROR":this._watchState="BACKGROUND",this._geolocateButton.classList.remove("minemap-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("minemap-ctrl-geolocate-background-error"),this._geolocateButton.classList.add("minemap-ctrl-geolocate-background")}this.options.showUserLocation&&"OFF"!==this._watchState&&this._updateMarker(t),this.options.trackUserLocation&&"ACTIVE_LOCK"!==this._watchState||this._updateCamera(t),this.options.showUserLocation&&this._dotElement.classList.remove("minemap-user-location-dot-stale"),this.fire("geolocate",t),this._finish()},o.prototype._updateCamera=function(t){var o=new LngLat(t.coords.longitude,t.coords.latitude),e=t.coords.accuracy;this._map.fitBounds(o.toBounds(e),this.options.fitBoundsOptions,{geolocateSource:!0})},o.prototype._updateMarker=function(t){t?this._userLocationDotMarker.setLngLat([t.coords.longitude,t.coords.latitude]).addTo(this._map):this._userLocationDotMarker.remove()},o.prototype._onError=function(t){if(this.options.trackUserLocation)if(1===t.code)this._watchState="OFF",this._geolocateButton.classList.remove("minemap-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("minemap-ctrl-geolocate-active"),this._geolocateButton.classList.remove("minemap-ctrl-geolocate-active-error"),this._geolocateButton.classList.remove("minemap-ctrl-geolocate-background"),this._geolocateButton.classList.remove("minemap-ctrl-geolocate-background-error"),void 0!==this._geolocationWatchID&&this._clearWatch();else switch(this._watchState){case"WAITING_ACTIVE":this._watchState="ACTIVE_ERROR",this._geolocateButton.classList.remove("minemap-ctrl-geolocate-active"),this._geolocateButton.classList.add("minemap-ctrl-geolocate-active-error");break;case"ACTIVE_LOCK":this._watchState="ACTIVE_ERROR",this._geolocateButton.classList.remove("minemap-ctrl-geolocate-active"),this._geolocateButton.classList.add("minemap-ctrl-geolocate-active-error"),this._geolocateButton.classList.add("minemap-ctrl-geolocate-waiting");break;case"BACKGROUND":this._watchState="BACKGROUND_ERROR",this._geolocateButton.classList.remove("minemap-ctrl-geolocate-background"),this._geolocateButton.classList.add("minemap-ctrl-geolocate-background-error"),this._geolocateButton.classList.add("minemap-ctrl-geolocate-waiting")}"OFF"!==this._watchState&&this.options.showUserLocation&&this._dotElement.classList.add("minemap-user-location-dot-stale"),this.fire("error",t),this._finish()},o.prototype._finish=function(){this._timeoutId&&clearTimeout(this._timeoutId),this._timeoutId=void 0},o.prototype._setupUI=function(t){var o=this;!1!==t&&(this._container.addEventListener("contextmenu",function(t){return t.preventDefault()}),this._geolocateButton=DOM.create("button",className+"-icon "+className+"-geolocate",this._container),this._geolocateButton.type="button",this._geolocateButton.setAttribute("aria-label","Geolocate"),this.options.trackUserLocation&&(this._geolocateButton.setAttribute("aria-pressed",!1),this._watchState="OFF"),this.options.showUserLocation&&(this._dotElement=DOM.create("div","minemap-user-location-dot"),this._userLocationDotMarker=new Marker(this._dotElement),this.options.trackUserLocation&&(this._watchState="OFF")),this._geolocateButton.addEventListener("click",this._onClickGeolocate.bind(this)),this.options.trackUserLocation&&this._map.on("movestart",function(t){t.geolocateSource||"ACTIVE_LOCK"!==o._watchState||(o._watchState="BACKGROUND",o._geolocateButton.classList.add("minemap-ctrl-geolocate-background"),o._geolocateButton.classList.remove("minemap-ctrl-geolocate-active"),o.fire("trackuserlocationend"))}))},o.prototype._onClickGeolocate=function(){if(this.options.trackUserLocation){switch(this._watchState){case"OFF":this._watchState="WAITING_ACTIVE",this.fire("trackuserlocationstart");break;case"WAITING_ACTIVE":case"ACTIVE_LOCK":case"ACTIVE_ERROR":case"BACKGROUND_ERROR":this._watchState="OFF",this._geolocateButton.classList.remove("minemap-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("minemap-ctrl-geolocate-active"),this._geolocateButton.classList.remove("minemap-ctrl-geolocate-active-error"),this._geolocateButton.classList.remove("minemap-ctrl-geolocate-background"),this._geolocateButton.classList.remove("minemap-ctrl-geolocate-background-error"),this.fire("trackuserlocationend");break;case"BACKGROUND":this._watchState="ACTIVE_LOCK",this._geolocateButton.classList.remove("minemap-ctrl-geolocate-background"),this._lastKnownPosition&&this._updateCamera(this._lastKnownPosition),this.fire("trackuserlocationstart")}switch(this._watchState){case"WAITING_ACTIVE":this._geolocateButton.classList.add("minemap-ctrl-geolocate-waiting"),this._geolocateButton.classList.add("minemap-ctrl-geolocate-active");break;case"ACTIVE_LOCK":this._geolocateButton.classList.add("minemap-ctrl-geolocate-active");break;case"ACTIVE_ERROR":this._geolocateButton.classList.add("minemap-ctrl-geolocate-waiting"),this._geolocateButton.classList.add("minemap-ctrl-geolocate-active-error");break;case"BACKGROUND":this._geolocateButton.classList.add("minemap-ctrl-geolocate-background");break;case"BACKGROUND_ERROR":this._geolocateButton.classList.add("minemap-ctrl-geolocate-waiting"),this._geolocateButton.classList.add("minemap-ctrl-geolocate-background-error")}"OFF"===this._watchState&&void 0!==this._geolocationWatchID?this._clearWatch():void 0===this._geolocationWatchID&&(this._geolocateButton.classList.add("minemap-ctrl-geolocate-waiting"),this._geolocateButton.setAttribute("aria-pressed",!0),this._geolocationWatchID=window.navigator.geolocation.watchPosition(this._onSuccess,this._onError,this.options.positionOptions))}else window.navigator.geolocation.getCurrentPosition(this._onSuccess,this._onError,this.options.positionOptions),this._timeoutId=setTimeout(this._finish,1e4)},o.prototype._clearWatch=function(){window.navigator.geolocation.clearWatch(this._geolocationWatchID),this._geolocationWatchID=void 0,this._geolocateButton.classList.remove("minemap-ctrl-geolocate-waiting"),this._geolocateButton.setAttribute("aria-pressed",!1),this.options.showUserLocation&&this._updateMarker(null)},o}(Evented);module.exports=GeolocateControl;
},{"../../geo/lng_lat":83,"../../util/dom":229,"../../util/evented":231,"../../util/util":247,"../../util/window":224,"../marker":218}],206:[function(_dereq_,module,exports){
"use strict";var DOM=_dereq_("../../util/dom"),util=_dereq_("../../util/util"),LogoControl=function(){util.bindAll(["_updateLogo"],this)};LogoControl.prototype.onAdd=function(o){this._map=o,this._container=DOM.create("div","minemap-ctrl");var t=DOM.create("a","minemap-ctrl-logo");return t.target="_blank",t.href="https://www.minedata.com.cn/",t.setAttribute("aria-label","Minemap logo"),this._container.appendChild(t),this._container.style.display="none",this._map.on("sourcedata",this._updateLogo),this._updateLogo(),this._container},LogoControl.prototype.onRemove=function(){this._container.parentNode.removeChild(this._container),this._map.off("sourcedata",this._updateLogo)},LogoControl.prototype.getDefaultPosition=function(){return"bottom-left"},LogoControl.prototype._updateLogo=function(o){o&&"metadata"!==o.sourceDataType||(this._container.style.display=this._logoRequired()?"block":"none"),this._container.style.display="block"},LogoControl.prototype._logoRequired=function(){if(this._map.style){var o=this._map.style.sourceCaches;for(var t in o){if(o[t].getSource().minemap_logo)return!0}return!1}},module.exports=LogoControl;
},{"../../util/dom":229,"../../util/util":247}],207:[function(_dereq_,module,exports){
"use strict";function copyMouseEvent(t){return new window.MouseEvent(t.type,{button:2,buttons:2,bubbles:!0,cancelable:!0,detail:t.detail,view:t.view,screenX:t.screenX,screenY:t.screenY,clientX:t.clientX,clientY:t.clientY,movementX:t.movementX,movementY:t.movementY,ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey})}var DOM=_dereq_("../../util/dom"),window=_dereq_("../../util/window"),util=_dereq_("../../util/util"),className="minemap-ctrl",NavigationControl=function(){util.bindAll(["_rotateCompassArrow"],this)};NavigationControl.prototype._rotateCompassArrow=function(){var t="rotate("+this._map.transform.angle*(180/Math.PI)+"deg)";this._compassArrow.style.transform=t},NavigationControl.prototype.onAdd=function(t){return this._map=t,this._container=DOM.create("div",className+" "+className+"-group",t.getContainer()),this._container.addEventListener("contextmenu",this._onContextMenu.bind(this)),this._zoomInButton=this._createButton(className+"-icon "+className+"-zoom-in","Zoom In",t.zoomIn.bind(t)),this._zoomOutButton=this._createButton(className+"-icon "+className+"-zoom-out","Zoom Out",t.zoomOut.bind(t)),this._compass=this._createButton(className+"-icon "+className+"-compass","Reset North",t.resetNorth.bind(t)),this._compassArrow=DOM.create("span",className+"-compass-arrow",this._compass),this._compass.addEventListener("mousedown",this._onCompassDown.bind(this)),this._onCompassMove=this._onCompassMove.bind(this),this._onCompassUp=this._onCompassUp.bind(this),this._map.on("rotate",this._rotateCompassArrow),this._rotateCompassArrow(),this._container},NavigationControl.prototype.onRemove=function(){this._container.parentNode.removeChild(this._container),this._map.off("rotate",this._rotateCompassArrow),this._map=void 0},NavigationControl.prototype._onContextMenu=function(t){t.preventDefault()},NavigationControl.prototype._onCompassDown=function(t){0===t.button&&(DOM.disableDrag(),window.document.addEventListener("mousemove",this._onCompassMove),window.document.addEventListener("mouseup",this._onCompassUp),this._map.getCanvasContainer().dispatchEvent(copyMouseEvent(t)),t.stopPropagation())},NavigationControl.prototype._onCompassMove=function(t){0===t.button&&(this._map.getCanvasContainer().dispatchEvent(copyMouseEvent(t)),t.stopPropagation())},NavigationControl.prototype._onCompassUp=function(t){0===t.button&&(window.document.removeEventListener("mousemove",this._onCompassMove),window.document.removeEventListener("mouseup",this._onCompassUp),DOM.enableDrag(),this._map.getCanvasContainer().dispatchEvent(copyMouseEvent(t)),t.stopPropagation())},NavigationControl.prototype._createButton=function(t,o,e){var n=DOM.create("button",t,this._container);return n.type="button",n.setAttribute("aria-label",o),n.addEventListener("click",function(){e()}),n},module.exports=NavigationControl;
},{"../../util/dom":229,"../../util/util":247,"../../util/window":224}],208:[function(_dereq_,module,exports){
"use strict";function updateScale(t,e,n,i){var o=i&&i.maxWidth||100,a=t._container.clientHeight/2,r=getDistance(t.unproject([0,a]),t.unproject([o,a]));if(i&&"imperial"===i.unit){var c=3.2808*r;if(c>5280){setScale(e,n,o,c/5280,"mi")}else setScale(e,n,o,c,"ft")}else setScale(e,n,o,r,"m")}function setScale(t,e,n,i,o){var a=getRoundNum(i),r=a/i;"m"===o&&a>=1e3&&(a/=1e3,o="km"),t.style.width=n*r+"px",e.innerHTML=a+o}function getDistance(t,e){var n=Math.PI/180,i=t.lat*n,o=e.lat*n,a=Math.sin(i)*Math.sin(o)+Math.cos(i)*Math.cos(o)*Math.cos((e.lng-t.lng)*n);return 6371e3*Math.acos(Math.min(a,1))}function getRoundNum(t){var e=Math.pow(10,(""+Math.floor(t)).length-1),n=t/e;return n=n>=10?10:n>=5?5:n>=3?3:n>=2?2:1,e*n}var DOM=_dereq_("../../util/dom"),util=_dereq_("../../util/util"),ScaleControl=function(t){this.options=t,util.bindAll(["_onMove"],this)};ScaleControl.prototype.getDefaultPosition=function(){return"bottom-left"},ScaleControl.prototype._onMove=function(){updateScale(this._map,this._container,this._content,this.options)},ScaleControl.prototype.onAdd=function(t){this._map=t,this._container=DOM.create("div","minemap-ctrl minemap-ctrl-scale",t.getContainer()),this._content=DOM.create("div","minemap-ctrl-scale-text",this._container),this._container.appendChild(this._content);var e=DOM.create("div","minemap-ctrl-scale-left-bar",this._container),n=DOM.create("div","minemap-ctrl-scale-right-bar",this._container),i=DOM.create("div","minemap-ctrl-scale-bottom-bar",this._container);return this._container.appendChild(e),this._container.appendChild(n),this._container.appendChild(i),this._map.on("move",this._onMove),this._onMove(),this._container},ScaleControl.prototype.onRemove=function(){this._container.parentNode.removeChild(this._container),this._map.off("move",this._onMove),this._map=void 0},module.exports=ScaleControl;
},{"../../util/dom":229,"../../util/util":247}],209:[function(_dereq_,module,exports){
"use strict";var DOM=_dereq_("../../util/dom"),LngLatBounds=_dereq_("../../geo/lng_lat_bounds"),util=_dereq_("../../util/util"),window=_dereq_("../../util/window"),BoxZoomHandler=function(o){this._map=o,this._el=o.getCanvasContainer(),this._container=o.getContainer(),util.bindAll(["_onMouseDown","_onMouseMove","_onMouseUp","_onKeyDown"],this)};BoxZoomHandler.prototype.isEnabled=function(){return!!this._enabled},BoxZoomHandler.prototype.isActive=function(){return!!this._active},BoxZoomHandler.prototype.enable=function(){this.isEnabled()||(this._map.dragPan&&this._map.dragPan.disable(),this._el.addEventListener("mousedown",this._onMouseDown,!1),this._map.dragPan&&this._map.dragPan.enable(),this._enabled=!0)},BoxZoomHandler.prototype.disable=function(){this.isEnabled()&&(this._el.removeEventListener("mousedown",this._onMouseDown),this._enabled=!1)},BoxZoomHandler.prototype._onMouseDown=function(o){o.shiftKey&&0===o.button&&(window.document.addEventListener("mousemove",this._onMouseMove,!1),window.document.addEventListener("keydown",this._onKeyDown,!1),window.document.addEventListener("mouseup",this._onMouseUp,!1),DOM.disableDrag(),this._startPos=DOM.mousePos(this._el,o),this._active=!0)},BoxZoomHandler.prototype._onMouseMove=function(o){var e=this._startPos,t=DOM.mousePos(this._el,o);this._box||(this._box=DOM.create("div","minemap-boxzoom",this._container),this._container.classList.add("minemap-crosshair"),this._fireEvent("boxzoomstart",o));var n=Math.min(e.x,t.x),i=Math.max(e.x,t.x),s=Math.min(e.y,t.y),a=Math.max(e.y,t.y);DOM.setTransform(this._box,"translate("+n+"px,"+s+"px)"),this._box.style.width=i-n+"px",this._box.style.height=a-s+"px"},BoxZoomHandler.prototype._onMouseUp=function(o){if(0===o.button){var e=this._startPos,t=DOM.mousePos(this._el,o),n=(new LngLatBounds).extend(this._map.unproject(e)).extend(this._map.unproject(t));this._finish(),e.x===t.x&&e.y===t.y?this._fireEvent("boxzoomcancel",o):this._map.fitBounds(n,{linear:!0}).fire("boxzoomend",{originalEvent:o,boxZoomBounds:n})}},BoxZoomHandler.prototype._onKeyDown=function(o){27===o.keyCode&&(this._finish(),this._fireEvent("boxzoomcancel",o))},BoxZoomHandler.prototype._finish=function(){this._active=!1,window.document.removeEventListener("mousemove",this._onMouseMove,!1),window.document.removeEventListener("keydown",this._onKeyDown,!1),window.document.removeEventListener("mouseup",this._onMouseUp,!1),this._container.classList.remove("minemap-crosshair"),this._box&&(this._box.parentNode.removeChild(this._box),this._box=null),DOM.enableDrag()},BoxZoomHandler.prototype._fireEvent=function(o,e){return this._map.fire(o,{originalEvent:e})},module.exports=BoxZoomHandler;
},{"../../geo/lng_lat_bounds":84,"../../util/dom":229,"../../util/util":247,"../../util/window":224}],210:[function(_dereq_,module,exports){
"use strict";var DoubleClickZoomHandler=function(o){this._map=o,this._onDblClick=this._onDblClick.bind(this)};DoubleClickZoomHandler.prototype.isEnabled=function(){return!!this._enabled},DoubleClickZoomHandler.prototype.enable=function(){this.isEnabled()||(this._map.on("dblclick",this._onDblClick),this._enabled=!0)},DoubleClickZoomHandler.prototype.disable=function(){this.isEnabled()&&(this._map.off("dblclick",this._onDblClick),this._enabled=!1)},DoubleClickZoomHandler.prototype._onDblClick=function(o){this._map.zoomTo(this._map.getZoom()+(o.originalEvent.shiftKey?-1:1),{around:o.lngLat},o)},module.exports=DoubleClickZoomHandler;
},{}],211:[function(_dereq_,module,exports){
"use strict";var DOM=_dereq_("../../util/dom"),util=_dereq_("../../util/util"),window=_dereq_("../../util/window"),inertiaLinearity=.3,inertiaEasing=util.bezier(0,0,inertiaLinearity,1),inertiaMaxSpeed=1400,inertiaDeceleration=2500,DragPanHandler=function(t){this._map=t,this._el=t.getCanvasContainer(),util.bindAll(["_onDown","_onMove","_onUp","_onTouchEnd","_onMouseUp"],this)};DragPanHandler.prototype.isEnabled=function(){return!!this._enabled},DragPanHandler.prototype.isActive=function(){return!!this._active},DragPanHandler.prototype.enable=function(){this.isEnabled()||(this._el.classList.add("minemap-touch-drag-pan"),this._el.addEventListener("mousedown",this._onDown),this._el.addEventListener("touchstart",this._onDown),this._enabled=!0)},DragPanHandler.prototype.disable=function(){this.isEnabled()&&(this._el.classList.remove("minemap-touch-drag-pan"),this._el.removeEventListener("mousedown",this._onDown),this._el.removeEventListener("touchstart",this._onDown),this._enabled=!1)},DragPanHandler.prototype._onDown=function(t){this._ignoreEvent(t)||this.isActive()||(t.touches?(window.document.addEventListener("touchmove",this._onMove),window.document.addEventListener("touchend",this._onTouchEnd)):(window.document.addEventListener("mousemove",this._onMove),window.document.addEventListener("mouseup",this._onMouseUp)),window.addEventListener("blur",this._onMouseUp),this._active=!1,this._startPos=this._pos=DOM.mousePos(this._el,t),this._inertia=[[Date.now(),this._pos]])},DragPanHandler.prototype._onMove=function(t){if(!this._ignoreEvent(t)){this.isActive()||(this._active=!0,this._map.moving=!0,this._fireEvent("dragstart",t),this._fireEvent("movestart",t));var e=DOM.mousePos(this._el,t),n=this._map;n.stop(),this._drainInertiaBuffer(),this._inertia.push([Date.now(),e]),n.transform.setLocationAtPoint(n.transform.pointLocation(this._pos),e),this._fireEvent("drag",t),this._fireEvent("move",t),this._pos=e,t.preventDefault()}},DragPanHandler.prototype._onUp=function(t){var e=this;if(this.isActive()){this._active=!1,this._fireEvent("dragend",t),this._drainInertiaBuffer();var n=function(){e._map.moving=!1,e._fireEvent("moveend",t)},i=this._inertia;if(i.length<2)return void n();var o=i[i.length-1],r=i[0],a=o[1].sub(r[1]),s=(o[0]-r[0])/1e3;if(0===s||o[1].equals(r[1]))return void n();var u=a.mult(inertiaLinearity/s),d=u.mag();d>inertiaMaxSpeed&&(d=inertiaMaxSpeed,u._unit()._mult(d));var h=d/(inertiaDeceleration*inertiaLinearity),v=u.mult(-h/2);this._map.panBy(v,{duration:1e3*h,easing:inertiaEasing,noMoveStart:!0},{originalEvent:t})}},DragPanHandler.prototype._onMouseUp=function(t){this._ignoreEvent(t)||(this._onUp(t),window.document.removeEventListener("mousemove",this._onMove),window.document.removeEventListener("mouseup",this._onMouseUp),window.removeEventListener("blur",this._onMouseUp))},DragPanHandler.prototype._onTouchEnd=function(t){this._ignoreEvent(t)||(this._onUp(t),window.document.removeEventListener("touchmove",this._onMove),window.document.removeEventListener("touchend",this._onTouchEnd))},DragPanHandler.prototype._fireEvent=function(t,e){return this._map.fire(t,{originalEvent:e})},DragPanHandler.prototype._ignoreEvent=function(t){var e=this._map;if(e.boxZoom&&e.boxZoom.isActive())return!0;if(e.dragRotate&&e.dragRotate.isActive())return!0;if(t.touches)return t.touches.length>1;if(t.ctrlKey)return!0;return"mousemove"===t.type?!1&t.buttons:t.button&&0!==t.button},DragPanHandler.prototype._drainInertiaBuffer=function(){for(var t=this._inertia,e=Date.now();t.length>0&&e-t[0][0]>160;)t.shift()},module.exports=DragPanHandler;
},{"../../util/dom":229,"../../util/util":247,"../../util/window":224}],212:[function(_dereq_,module,exports){
"use strict";var DOM=_dereq_("../../util/dom"),util=_dereq_("../../util/util"),window=_dereq_("../../util/window"),inertiaLinearity=.25,inertiaEasing=util.bezier(0,0,inertiaLinearity,1),inertiaMaxSpeed=180,inertiaDeceleration=720,DragRotateHandler=function(t,e){this._map=t,this._el=t.getCanvasContainer(),this._bearingSnap=e.bearingSnap,this._pitchWithRotate=!1!==e.pitchWithRotate,util.bindAll(["_onDown","_onMove","_onUp"],this)};DragRotateHandler.prototype.isEnabled=function(){return!!this._enabled},DragRotateHandler.prototype.isActive=function(){return!!this._active},DragRotateHandler.prototype.enable=function(){this.isEnabled()||(this._el.addEventListener("mousedown",this._onDown),this._enabled=!0)},DragRotateHandler.prototype.disable=function(){this.isEnabled()&&(this._el.removeEventListener("mousedown",this._onDown),this._enabled=!1)},DragRotateHandler.prototype._onDown=function(t){this._ignoreEvent(t)||this.isActive()||(window.document.addEventListener("mousemove",this._onMove),window.document.addEventListener("mouseup",this._onUp),window.addEventListener("blur",this._onUp),this._active=!1,this._inertia=[[Date.now(),this._map.getBearing()]],this._startPos=this._pos=DOM.mousePos(this._el,t),this._center=this._map.transform.centerPoint,t.preventDefault())},DragRotateHandler.prototype._onMove=function(t){if(!this._ignoreEvent(t)){this.isActive()||(this._active=!0,this._map.moving=!0,this._fireEvent("rotatestart",t),this._fireEvent("movestart",t),this._pitchWithRotate&&this._fireEvent("pitchstart",t));var e=this._map;e.stop();var i=this._pos,n=DOM.mousePos(this._el,t),r=.8*(i.x-n.x),a=-.5*(i.y-n.y),o=e.getBearing()-r,s=e.getPitch()-a,h=this._inertia,_=h[h.length-1];this._drainInertiaBuffer(),h.push([Date.now(),e._normalizeBearing(o,_[1])]),e.transform.bearing=o,this._pitchWithRotate&&(this._fireEvent("pitch",t),e.transform.pitch=s),this._fireEvent("rotate",t),this._fireEvent("move",t),this._pos=n}},DragRotateHandler.prototype._onUp=function(t){var e=this;if(!this._ignoreEvent(t)&&(window.document.removeEventListener("mousemove",this._onMove),window.document.removeEventListener("mouseup",this._onUp),window.removeEventListener("blur",this._onUp),this.isActive())){this._active=!1,this._fireEvent("rotateend",t),this._drainInertiaBuffer();var i=this._map,n=i.getBearing(),r=this._inertia,a=function(){Math.abs(n)<e._bearingSnap?i.resetNorth({noMoveStart:!0},{originalEvent:t}):(e._map.moving=!1,e._fireEvent("moveend",t)),e._pitchWithRotate&&e._fireEvent("pitchend",t)};if(r.length<2)return void a();var o=r[0],s=r[r.length-1],h=r[r.length-2],_=i._normalizeBearing(n,h[1]),v=s[1]-o[1],p=v<0?-1:1,d=(s[0]-o[0])/1e3;if(0===v||0===d)return void a();var u=Math.abs(v*(inertiaLinearity/d));u>inertiaMaxSpeed&&(u=inertiaMaxSpeed);var l=u/(inertiaDeceleration*inertiaLinearity);_+=p*u*(l/2),Math.abs(i._normalizeBearing(_,0))<this._bearingSnap&&(_=i._normalizeBearing(0,_)),i.rotateTo(_,{duration:1e3*l,easing:inertiaEasing,noMoveStart:!0},{originalEvent:t})}},DragRotateHandler.prototype._fireEvent=function(t,e){return this._map.fire(t,{originalEvent:e})},DragRotateHandler.prototype._ignoreEvent=function(t){var e=this._map;if(e.boxZoom&&e.boxZoom.isActive())return!0;if(e.dragPan&&e.dragPan.isActive())return!0;if(t.touches)return t.touches.length>1;var i=t.ctrlKey?1:2,n=t.ctrlKey?0:2,r=t.button;return"undefined"!=typeof InstallTrigger&&2===t.button&&t.ctrlKey&&window.navigator.platform.toUpperCase().indexOf("MAC")>=0&&(r=0),"mousemove"===t.type?t.buttons&0===i:!this.isActive()&&r!==n},DragRotateHandler.prototype._drainInertiaBuffer=function(){for(var t=this._inertia,e=Date.now();t.length>0&&e-t[0][0]>160;)t.shift()},module.exports=DragRotateHandler;
},{"../../util/dom":229,"../../util/util":247,"../../util/window":224}],213:[function(_dereq_,module,exports){
"use strict";function easeOut(e){return e*(2-e)}var panStep=100,bearingStep=15,pitchStep=10,KeyboardHandler=function(e){this._map=e,this._el=e.getCanvasContainer(),this._onKeyDown=this._onKeyDown.bind(this)};KeyboardHandler.prototype.isEnabled=function(){return!!this._enabled},KeyboardHandler.prototype.enable=function(){this.isEnabled()||(this._el.addEventListener("keydown",this._onKeyDown,!1),this._enabled=!0)},KeyboardHandler.prototype.disable=function(){this.isEnabled()&&(this._el.removeEventListener("keydown",this._onKeyDown),this._enabled=!1)},KeyboardHandler.prototype._onKeyDown=function(e){if(!(e.altKey||e.ctrlKey||e.metaKey)){var t=0,a=0,n=0,r=0,i=0;switch(e.keyCode){case 61:case 107:case 171:case 187:t=1;break;case 189:case 109:case 173:t=-1;break;case 37:e.shiftKey?a=-1:(e.preventDefault(),r=-1);break;case 39:e.shiftKey?a=1:(e.preventDefault(),r=1);break;case 38:e.shiftKey?n=1:(e.preventDefault(),i=-1);break;case 40:e.shiftKey?n=-1:(i=1,e.preventDefault());break;default:return}var s=this._map,o=s.getZoom(),d={duration:300,delayEndEvents:500,easing:easeOut,zoom:t?Math.round(o)+t*(e.shiftKey?2:1):o,bearing:s.getBearing()+a*bearingStep,pitch:s.getPitch()+n*pitchStep,offset:[-r*panStep,-i*panStep],center:s.getCenter()};s.easeTo(d,{originalEvent:e})}},module.exports=KeyboardHandler;
},{}],214:[function(_dereq_,module,exports){
"use strict";var DOM=_dereq_("../../util/dom"),util=_dereq_("../../util/util"),browser=_dereq_("../../util/browser"),window=_dereq_("../../util/window"),ua=window.navigator.userAgent.toLowerCase(),firefox=-1!==ua.indexOf("firefox"),safari=-1!==ua.indexOf("safari")&&-1===ua.indexOf("chrom"),ScrollZoomHandler=function(e){this._map=e,this._el=e.getCanvasContainer(),util.bindAll(["_onWheel","_onTimeout"],this)};ScrollZoomHandler.prototype.isEnabled=function(){return!!this._enabled},ScrollZoomHandler.prototype.enable=function(e){this.isEnabled()||(this._el.addEventListener("wheel",this._onWheel,!1),this._el.addEventListener("mousewheel",this._onWheel,!1),this._enabled=!0,this._aroundCenter=e&&"center"===e.around)},ScrollZoomHandler.prototype.disable=function(){this.isEnabled()&&(this._el.removeEventListener("wheel",this._onWheel),this._el.removeEventListener("mousewheel",this._onWheel),this._enabled=!1)},ScrollZoomHandler.prototype._onWheel=function(e){var t;"wheel"===e.type?(t=e.deltaY,firefox&&e.deltaMode===window.WheelEvent.DOM_DELTA_PIXEL&&(t/=browser.devicePixelRatio),e.deltaMode===window.WheelEvent.DOM_DELTA_LINE&&(t*=40)):"mousewheel"===e.type&&(t=-e.wheelDeltaY,safari&&(t/=3));var o=browser.now(),i=o-(this._time||0);this._pos=DOM.mousePos(this._el,e),this._time=o,0!==t&&t%4.000244140625==0?this._type="wheel":0!==t&&Math.abs(t)<4?this._type="trackpad":i>400?(this._type=null,this._lastValue=t,this._timeout=setTimeout(this._onTimeout,40)):this._type||(this._type=Math.abs(i*t)<200?"trackpad":"wheel",this._timeout&&(clearTimeout(this._timeout),this._timeout=null,t+=this._lastValue)),e.shiftKey&&t&&(t/=4),this._type&&this._zoom(-t,e),e.preventDefault()},ScrollZoomHandler.prototype._onTimeout=function(){this._type="wheel",this._zoom(-this._lastValue)},ScrollZoomHandler.prototype._zoom=function(e,t){if(0!==e){var o=this._map,i=2/(1+Math.exp(-Math.abs(e/100)));e<0&&0!==i&&(i=1/i);var l=o.ease?o.ease.to:o.transform.scale,s=o.transform.scaleZoom(l*i);o.zoomTo(s,{duration:"wheel"===this._type?200:0,around:this._aroundCenter?o.getCenter():o.unproject(this._pos),delayEndEvents:200,smoothEasing:!0},{originalEvent:t})}},module.exports=ScrollZoomHandler;
},{"../../util/browser":222,"../../util/dom":229,"../../util/util":247,"../../util/window":224}],215:[function(_dereq_,module,exports){
"use strict";var DOM=_dereq_("../../util/dom"),util=_dereq_("../../util/util"),window=_dereq_("../../util/window"),inertiaLinearity=.15,inertiaEasing=util.bezier(0,0,inertiaLinearity,1),inertiaDeceleration=12,inertiaMaxSpeed=2.5,significantScaleThreshold=.15,significantRotateThreshold=10,TouchZoomRotateHandler=function(t){this._map=t,this._el=t.getCanvasContainer(),util.bindAll(["_onStart","_onMove","_onEnd"],this)};TouchZoomRotateHandler.prototype.isEnabled=function(){return!!this._enabled},TouchZoomRotateHandler.prototype.enable=function(t){this.isEnabled()||(this._el.classList.add("minemap-touch-zoom-rotate"),this._el.addEventListener("touchstart",this._onStart,!1),this._enabled=!0,this._aroundCenter=t&&"center"===t.around)},TouchZoomRotateHandler.prototype.disable=function(){this.isEnabled()&&(this._el.classList.remove("minemap-touch-zoom-rotate"),this._el.removeEventListener("touchstart",this._onStart),this._enabled=!1)},TouchZoomRotateHandler.prototype.disableRotation=function(){this._rotationDisabled=!0},TouchZoomRotateHandler.prototype.enableRotation=function(){this._rotationDisabled=!1},TouchZoomRotateHandler.prototype._onStart=function(t){if(2===t.touches.length){var e=DOM.mousePos(this._el,t.touches[0]),o=DOM.mousePos(this._el,t.touches[1]);this._startVec=e.sub(o),this._startScale=this._map.transform.scale,this._startBearing=this._map.transform.bearing,this._gestureIntent=void 0,this._inertia=[],window.document.addEventListener("touchmove",this._onMove,!1),window.document.addEventListener("touchend",this._onEnd,!1)}},TouchZoomRotateHandler.prototype._onMove=function(t){if(2===t.touches.length){var e=DOM.mousePos(this._el,t.touches[0]),o=DOM.mousePos(this._el,t.touches[1]),i=e.add(o).div(2),n=e.sub(o),a=n.mag()/this._startVec.mag(),r=this._rotationDisabled?0:180*n.angleWith(this._startVec)/Math.PI,s=this._map;if(this._gestureIntent){var h={duration:0,around:s.unproject(i)};"rotate"===this._gestureIntent&&(h.bearing=this._startBearing+r),"zoom"!==this._gestureIntent&&"rotate"!==this._gestureIntent||(h.zoom=s.transform.scaleZoom(this._startScale*a)),s.stop(),this._drainInertiaBuffer(),this._inertia.push([Date.now(),a,i]),s.easeTo(h,{originalEvent:t})}else{var u=Math.abs(1-a)>significantScaleThreshold;Math.abs(r)>significantRotateThreshold?this._gestureIntent="rotate":u&&(this._gestureIntent="zoom"),this._gestureIntent&&(this._startVec=n,this._startScale=s.transform.scale,this._startBearing=s.transform.bearing)}t.preventDefault()}},TouchZoomRotateHandler.prototype._onEnd=function(t){window.document.removeEventListener("touchmove",this._onMove),window.document.removeEventListener("touchend",this._onEnd),this._drainInertiaBuffer();var e=this._inertia,o=this._map;if(e.length<2)return void o.snapToNorth({},{originalEvent:t});var i=e[e.length-1],n=e[0],a=o.transform.scaleZoom(this._startScale*i[1]),r=o.transform.scaleZoom(this._startScale*n[1]),s=a-r,h=(i[0]-n[0])/1e3,u=i[2];if(0===h||a===r)return void o.snapToNorth({},{originalEvent:t});var l=s*inertiaLinearity/h;Math.abs(l)>inertiaMaxSpeed&&(l=l>0?inertiaMaxSpeed:-inertiaMaxSpeed);var d=1e3*Math.abs(l/(inertiaDeceleration*inertiaLinearity)),c=a+l*d/2e3;c<0&&(c=0),o.easeTo({zoom:c,duration:d,easing:inertiaEasing,around:this._aroundCenter?o.getCenter():o.unproject(u)},{originalEvent:t})},TouchZoomRotateHandler.prototype._drainInertiaBuffer=function(){for(var t=this._inertia,e=Date.now();t.length>2&&e-t[0][0]>160;)t.shift()},module.exports=TouchZoomRotateHandler;
},{"../../util/dom":229,"../../util/util":247,"../../util/window":224}],216:[function(_dereq_,module,exports){
"use strict";var util=_dereq_("../util/util"),window=_dereq_("../util/window"),Hash=function(){util.bindAll(["_onHashChange","_updateHash"],this)};Hash.prototype.addTo=function(t){return this._map=t,window.addEventListener("hashchange",this._onHashChange,!1),this._map.on("moveend",this._updateHash),this},Hash.prototype.remove=function(){return window.removeEventListener("hashchange",this._onHashChange,!1),this._map.off("moveend",this._updateHash),delete this._map,this},Hash.prototype.getHashString=function(t){var a=this._map.getCenter(),h=Math.round(100*this._map.getZoom())/100,e=Math.max(0,Math.ceil(Math.log(h)/Math.LN2)),n=Math.round(a.lng*Math.pow(10,e))/Math.pow(10,e),o=Math.round(a.lat*Math.pow(10,e))/Math.pow(10,e),i=this._map.getBearing(),s=this._map.getPitch(),r="";return r+=t?"#/"+n+"/"+o+"/"+h:"#"+h+"/"+o+"/"+n,(i||s)&&(r+="/"+Math.round(10*i)/10),s&&(r+="/"+Math.round(s)),r},Hash.prototype._onHashChange=function(){var t=window.location.hash.replace("#","").split("/");return t.length>=3&&(this._map.jumpTo({center:[+t[2],+t[1]],zoom:+t[0],bearing:+(t[3]||0),pitch:+(t[4]||0)}),!0)},Hash.prototype._updateHash=function(){var t=this.getHashString();window.history.replaceState("","",t)},module.exports=Hash;
},{"../util/util":247,"../util/window":224}],217:[function(_dereq_,module,exports){
"use strict";function removeNode(t){t.parentNode&&t.parentNode.removeChild(t)}function contains(t,e){for(var r=t.length;r--;)if(t[r]===e)return!0;return!1}function getElementOffset(t){for(var e=t.offsetTop,r=t.offsetLeft,o=t.offsetWidth,i=t.offsetHeight;t=t.offsetParent;)e+=t.offsetTop,r+=t.offsetLeft;return{top:e,left:r,width:o,height:i}}var util=_dereq_("../util/util"),browser=_dereq_("../util/browser"),window=_dereq_("../util/window"),DOM=_dereq_("../util/dom"),ajax=_dereq_("../util/ajax"),Style=_dereq_("../style/style"),AnimationLoop=_dereq_("../style/animation_loop"),Painter=_dereq_("../render/painter"),PainterChromeMac=_dereq_("../render/painter1"),Transform=_dereq_("../geo/transform"),Hash=_dereq_("./hash"),bindHandlers=_dereq_("./bind_handlers"),Camera=_dereq_("./camera"),LngLat=_dereq_("../geo/lng_lat"),LngLatBounds=_dereq_("../geo/lng_lat_bounds"),Point=_dereq_("../@minemap/point-geometry"),AttributionControl=_dereq_("./control/attribution_control"),LogoControl=_dereq_("./control/logo_control"),isSupported=_dereq_("minemap-supported"),Drag=_dereq_("../util/drag"),defaultMinZoom=0,defaultMaxZoom=22,defaultOptions={center:[0,0],zoom:0,bearing:0,pitch:0,minZoom:defaultMinZoom,maxZoom:defaultMaxZoom,interactive:!0,scrollZoom:!0,boxZoom:!0,dragRotate:!0,dragPan:!0,keyboard:!0,doubleClickZoom:!0,touchZoomRotate:!0,bearingSnap:7,hash:!1,logoControl:!0,attributionControl:!0,failIfMajorPerformanceCaveat:!1,preserveDrawingBuffer:!1,trackResize:!0,renderWorldCopies:!0,refreshExpiredTiles:!0,maxTileCacheSize:null,transformRequest:null,localIdeographFontFamily:"PingFang SC,Microsoft YaHei,微软雅黑,Arial,sans-serif,黑体"},Marker=_dereq_("./marker"),Map=function(t){function e(e){var r=this;if(e=util.extend({},defaultOptions,e),null!=e.minZoom&&null!=e.maxZoom&&e.minZoom>e.maxZoom)throw new Error("maxZoom must be greater than minZoom");var o=new Transform(e.minZoom,e.maxZoom,e.renderWorldCopies);t.call(this,o,e),this._interactive=e.interactive,this._maxTileCacheSize=e.maxTileCacheSize,this._failIfMajorPerformanceCaveat=e.failIfMajorPerformanceCaveat,this._preserveDrawingBuffer=e.preserveDrawingBuffer,this._trackResize=e.trackResize,this._bearingSnap=e.bearingSnap,this._refreshExpiredTiles=e.refreshExpiredTiles;var i=e.transformRequest;if(this._transformRequest=i?function(t,e){return i(t,e)||{url:t}}:function(t){return{url:t}},"string"==typeof e.container){if(this._container=window.document.getElementById(e.container),!this._container)throw new Error("Container '"+e.container+"' not found.")}else this._container=e.container;this.animationLoop=new AnimationLoop,e.maxBounds&&this.setMaxBounds(e.maxBounds),this.__markerList=[],util.bindAll(["_onWindowOnline","_onWindowResize","_contextLost","_contextRestored","_update","_render","_onData","_onDataLoading"],this),this._setupContainer(),this._setupPainter(),this.on("move",this._update.bind(this,!1)),this.on("zoom",this._update.bind(this,!0)),this.on("moveend",function(){r.animationLoop.set(300),r._rerender()}),void 0!==window&&(window.addEventListener("online",this._onWindowOnline,!1),window.addEventListener("resize",this._onWindowResize,!1)),bindHandlers(this,e),this._hash=e.hash&&(new Hash).addTo(this),this._hash&&this._hash._onHashChange()||this.jumpTo({center:e.center,zoom:e.zoom,bearing:e.bearing,pitch:e.pitch}),this._classes=[],this.resize(),e.classes&&this.setClasses(e.classes),e.style&&this.setStyle(e.style,{localIdeographFontFamily:e.localIdeographFontFamily}),e.attributionControl&&this.addControl(new AttributionControl),e.logoControl&&this.addControl(new LogoControl,e.logoPosition),this.on("style.load",function(){this.transform.unmodified&&this.jumpTo(this.style.stylesheet),this.style.update(this._classes,{transition:!1})}),this.on("data",this._onData),this.on("dataloading",this._onDataLoading),this._overviewMapOptions=e,e.overviewMap?(this._overviewMap=!0,this.addOverviewMap()):this._overviewMap=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={overviewMap:{},showTileBoundaries:{},showCollisionBoxes:{},showOverdrawInspector:{},repaint:{},vertices:{}};return e.prototype.__onMove=function(t){this.overviewMapInstance.setCenter(this.getCenter()),this.overviewMapInstance.setBearing(this.getBearing()),this.overviewMapInstance.setZoom(this.getZoom()<6?3:this.getZoom()-4)},e.prototype.addOverviewMap=function(){var t=this;this._overviewMapElement=window.document.createElement("div"),this._overviewMapElement.id="overviewMap_"+Math.random(),this._overviewMapElement.style.position="absolute",this._overviewMapElement.style.width="160px",this._overviewMapElement.style.height="160px",this._overviewMapElement.style.bottom="2px",this._overviewMapElement.style.right="2px",this._overviewMapElement.style.zIndex=200,this._overviewMapElement.style.boxSizing="border-box",this._overviewMapElement.style.border="2px solid rgba(187,187,187,0.5)",this._overviewMapElement.style.borderRadius="2px";var r=this.getContainer().parentNode.parentNode;getElementOffset(r);r.appendChild(this._overviewMapElement),this.overviewMapInstance=new e({container:this._overviewMapElement,style:this._overviewMapOptions.style,center:this.getCenter(),zoom:this.getZoom()<7?3:this.getZoom()-4,pitch:0,dragPan:!1,doubleClickZoom:!1,scrollZoom:!1,dragRotate:!1,maxZoom:17,minZoom:3,logoControl:!1,preserveDrawingBuffer:!0}),this.on("moveend",this.__onMove),setTimeout(function(){var e=window.document.createElement("div");t.overviewMapInstance.getCanvas().style.cursor="";var r=t.getBounds(),o=t.overviewMapInstance.project(r.getSouthWest()),i=t.overviewMapInstance.project(r.getNorthEast());e.style.top=Math.round(i.y)+"px",e.style.left=Math.round(o.x)+"px",e.style.width=Math.round(160-2*o.x)+"px",e.style.height=Math.round(160-2*i.y)+"px",e.style.border="2px solid red",e.style.position="absolute",t._overviewMapElement.appendChild(e),Drag.init({handler:t._overviewMapElement,root:e,restrictX:2*Math.round(o.x),restrictY:2*Math.round(i.y),cb:function(r,n){if(r-Math.round(o.x)!=0||n-Math.round(i.y)!=0){var s=t.overviewMapInstance.unproject([r-Math.round(o.x)+80,n-Math.round(i.y)+80]);t.flyTo({center:s,bearing:t.overviewMapInstance.getBearing()}),e.style.top=Math.round(i.y)+"px",e.style.left=Math.round(o.x)+"px"}}})},1e3)},r.overviewMap.set=function(t){this._overviewMap=t,this.overviewMapInstance?this._overviewMapElement.style.display=t?"block":"none":t&&this.addOverviewMap()},r.overviewMap.get=function(){return this._overviewMap},e.prototype.addControl=function(t,e){void 0===e&&t.getDefaultPosition&&(e=t.getDefaultPosition()),void 0===e&&(e="top-right");var r=t.onAdd(this),o=this._controlPositions[e];return-1!==e.indexOf("bottom")?o.insertBefore(r,o.firstChild):o.appendChild(r),this},e.prototype.removeControl=function(t){return t.onRemove(this),this},e.prototype.addClass=function(t,e){return util.warnOnce("Style classes are deprecated and will be removed in an upcoming release of Minemap JS."),this._classes.indexOf(t)>=0||""===t?this:(this._classes.push(t),this._classOptions=e,this.style&&this.style.updateClasses(),this._update(!0))},e.prototype.removeClass=function(t,e){util.warnOnce("Style classes are deprecated and will be removed in an upcoming release of Minemap JS.");var r=this._classes.indexOf(t);return r<0||""===t?this:(this._classes.splice(r,1),this._classOptions=e,this.style&&this.style.updateClasses(),this._update(!0))},e.prototype.setClasses=function(t,e){util.warnOnce("Style classes are deprecated and will be removed in an upcoming release of Minemap JS.");for(var r={},o=0;o<t.length;o++)""!==t[o]&&(r[t[o]]=!0);return this._classes=Object.keys(r),this._classOptions=e,this.style&&this.style.updateClasses(),this._update(!0)},e.prototype.hasClass=function(t){return util.warnOnce("Style classes are deprecated and will be removed in an upcoming release of Minemap JS."),this._classes.indexOf(t)>=0},e.prototype.getClasses=function(){return util.warnOnce("Style classes are deprecated and will be removed in an upcoming release of Minemap JS."),this._classes},e.prototype.resize=function(){var t=this._containerDimensions(),e=t[0],r=t[1];return this._resizeCanvas(e,r),this.transform.resize(e,r),this.painter.resize(e,r),this.fire("movestart").fire("move").fire("resize").fire("moveend")},e.prototype.getBounds=function(){var t=new LngLatBounds(this.transform.pointLocation(new Point(0,this.transform.height)),this.transform.pointLocation(new Point(this.transform.width,0)));return(this.transform.angle||this.transform.pitch)&&(t.extend(this.transform.pointLocation(new Point(this.transform.size.x,0))),t.extend(this.transform.pointLocation(new Point(0,this.transform.size.y)))),t},e.prototype.getMaxBounds=function(){return this.transform.latRange&&2===this.transform.latRange.length&&this.transform.lngRange&&2===this.transform.lngRange.length?new LngLatBounds([this.transform.lngRange[0],this.transform.latRange[0]],[this.transform.lngRange[1],this.transform.latRange[1]]):null},e.prototype.setMaxBounds=function(t){if(t){var e=LngLatBounds.convert(t);this.transform.lngRange=[e.getWest(),e.getEast()],this.transform.latRange=[e.getSouth(),e.getNorth()],this.transform._constrain(),this._update()}else null!==t&&void 0!==t||(this.transform.lngRange=[],this.transform.latRange=[],this._update());return this},e.prototype.setMinZoom=function(t){if((t=null===t||void 0===t?defaultMinZoom:t)>=defaultMinZoom&&t<=this.transform.maxZoom)return this.transform.minZoom=t,this._update(),this.getZoom()<t&&this.setZoom(t),this;throw new Error("minZoom must be between "+defaultMinZoom+" and the current maxZoom, inclusive")},e.prototype.getMinZoom=function(){return this.transform.minZoom},e.prototype.setMaxZoom=function(t){if((t=null===t||void 0===t?defaultMaxZoom:t)>=this.transform.minZoom)return this.transform.maxZoom=t,this._update(),this.getZoom()>t&&this.setZoom(t),this;throw new Error("maxZoom must be greater than the current minZoom")},e.prototype.getMaxZoom=function(){return this.transform.maxZoom},e.prototype.project=function(t){return this.transform.locationPoint(LngLat.convert(t))},e.prototype.unproject=function(t){return this.transform.pointLocation(Point.convert(t))},e.prototype.on=function(e,r,o){var i=this;if(void 0===o)return t.prototype.on.call(this,e,r);var n=function(){if("mouseenter"===e||"mouseover"===e){var t=!1;return{layer:r,listener:o,delegates:{mousemove:function(n){var s=i.queryRenderedFeatures(n.point,{layers:[r]});s.length?t||(t=!0,o.call(i,util.extend({features:s},n,{type:e}))):t=!1},mouseout:function(){t=!1}}}}if("mouseleave"===e||"mouseout"===e){var n=!1;return{layer:r,listener:o,delegates:{mousemove:function(t){i.queryRenderedFeatures(t.point,{layers:[r]}).length?n=!0:n&&(n=!1,o.call(i,util.extend({},t,{type:e})))},mouseout:function(t){n&&(n=!1,o.call(i,util.extend({},t,{type:e})))}}}}var s=function(t){var e=i.queryRenderedFeatures(t.point,{layers:[r]});e.length&&o.call(i,util.extend({features:e},t))};return{layer:r,listener:o,delegates:(a={},a[e]=s,a)};var a}();this._delegatedListeners=this._delegatedListeners||{},this._delegatedListeners[e]=this._delegatedListeners[e]||[],this._delegatedListeners[e].push(n);for(var s in n.delegates)i.on(s,n.delegates[s]);return this},e.prototype.off=function(e,r,o){var i=this;if(void 0===o)return t.prototype.off.call(this,e,r);if(this._delegatedListeners&&this._delegatedListeners[e])for(var n=this._delegatedListeners[e],s=0;s<n.length;s++){var a=n[s];if(a.layer===r&&a.listener===o){for(var h in a.delegates)i.off(h,a.delegates[h]);return n.splice(s,1),i}}},e.prototype.queryRenderedFeatures=function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var r,o={};return 2===t.length?(r=arguments[0],o=arguments[1]):1===t.length&&function(t){return t instanceof Point||Array.isArray(t)}(t[0])?r=t[0]:1===t.length&&(o=t[0]),this.style?this.style.queryRenderedFeatures(this._makeQueryGeometry(r),o,this.transform.zoom,this.transform.angle):[]},e.prototype._makeQueryGeometry=function(t){var e=this;void 0===t&&(t=[Point.convert([0,0]),Point.convert([this.transform.width,this.transform.height])]);var r;if(t instanceof Point||"number"==typeof t[0]){r=[Point.convert(t)]}else{var o=[Point.convert(t[0]),Point.convert(t[1])];r=[o[0],new Point(o[1].x,o[0].y),o[1],new Point(o[0].x,o[1].y),o[0]]}return r=r.map(function(t){return e.transform.pointCoordinate(t)})},e.prototype.querySourceFeatures=function(t,e){return this.style.querySourceFeatures(t,e)},e.prototype.setStyle=function(t,e){if((!e||!1!==e.diff&&!e.localIdeographFontFamily)&&this.style&&t&&!(t instanceof Style)&&"string"!=typeof t)try{return this.style.setState(t)&&this._update(!0),this}catch(t){util.warnOnce("Unable to perform style diff: "+(t.message||t.error||t)+". Rebuilding the style from scratch.")}return this.style&&(this.style.setEventedParent(null),this.style._remove(),this.off("rotate",this.style._redoPlacement),this.off("pitch",this.style._redoPlacement),this.off("move",this.style._redoPlacement)),t?(this.style=t instanceof Style?t:new Style(t,this,e||{}),this.style.setEventedParent(this,{style:this.style}),this.on("rotate",this.style._redoPlacement),this.on("pitch",this.style._redoPlacement),this.on("move",this.style._redoPlacement),this):(this.style=null,this)},e.prototype.getStyle=function(){if(this.style)return this.style.serialize()},e.prototype.isStyleLoaded=function(){return this.style?this.style.loaded():util.warnOnce("There is no style added to the map.")},e.prototype.addSource=function(t,e){return this.style.addSource(t,e),this._update(!0),this},e.prototype.isSourceLoaded=function(t){var e=this.style&&this.style.sourceCaches[t];return void 0===e?void this.fire("error",{error:new Error("There is no source with ID '"+t+"'")}):e.loaded()},e.prototype.areTilesLoaded=function(){var t=this.style&&this.style.sourceCaches;for(var e in t){var r=t[e],o=r._tiles;for(var i in o){var n=o[i];if("loaded"!==n.state&&"errored"!==n.state)return!1}}return!0},e.prototype.addSourceType=function(t,e,r){return this.style.addSourceType(t,e,r)},e.prototype.removeSource=function(t){return this.style.removeSource(t),this._update(!0),this},e.prototype.getSource=function(t){return this.style.getSource(t)},e.prototype.addImage=function(t,e,r){this.style.spriteAtlas.addImage(t,e,r)},e.prototype.removeImage=function(t){this.style.spriteAtlas.removeImage(t)},e.prototype.loadImage=function(t,e){ajax.getImage(this._transformRequest(t,ajax.ResourceType.Image),e)},e.prototype.addLayer=function(t,e){return this.style.addLayer(t,e),this._update(!0),this},e.prototype.moveLayer=function(t,e){return this.style.moveLayer(t,e),this._update(!0),this},e.prototype.removeLayer=function(t){return this.style.removeLayer(t),this._update(!0),this},e.prototype.getLayer=function(t){return this.style.getLayer(t)},e.prototype.setFilter=function(t,e){return this.style.setFilter(t,e),this._update(!0),this},e.prototype.setLayerZoomRange=function(t,e,r){return this.style.setLayerZoomRange(t,e,r),this._update(!0),this},e.prototype.getAllMarkers=function(){return this.__markerList},e.prototype.addMarker=function(t){!contains(this.__markerList,t)&&t instanceof Marker&&(this.__markerList.push(t),t.addTo(this))},e.prototype.addMarkers=function(t){for(var e=this,r=0;r<t.length;r++)e.addMarker(t[r])},e.prototype.removeMarker=function(t){t instanceof Marker&&t.remove()},e.prototype.removeMarkers=function(t){var e=this;if(t)for(var r=0;r<t.length;r++){e.removeMarker(t[r]);for(var o=0;o<this.__markerList.length;o++)t[r]===e.__markerList[o]&&e.__markerList.splice(o,1)}else{for(var i=0;i<this.__markerList.length;i++)e.removeMarker(e.__markerList[i]);this.__markerList=[]}},e.prototype.getFilter=function(t){return this.style.getFilter(t)},e.prototype.setPaintProperty=function(t,e,r,o){return this.style.setPaintProperty(t,e,r,o),this._update(!0),this},e.prototype.getPaintProperty=function(t,e,r){return this.style.getPaintProperty(t,e,r)},e.prototype.setLayoutProperty=function(t,e,r){return this.style.setLayoutProperty(t,e,r),this._update(!0),this},e.prototype.getLayoutProperty=function(t,e){return this.style.getLayoutProperty(t,e)},e.prototype.setLight=function(t){return this.style.setLight(t),this._update(!0),this},e.prototype.getLight=function(){return this.style.getLight()},e.prototype.getContainer=function(){return this._container},e.prototype.getCanvasContainer=function(){return this._canvasContainer},e.prototype.getCanvas=function(){return this._canvas},e.prototype._containerDimensions=function(){var t=0,e=0;return this._container&&(t=this._container.offsetWidth||400,e=this._container.offsetHeight||300),[t,e]},e.prototype._setupContainer=function(){var t=this._container;t.classList.add("minemap-map");var e=this._canvasContainer=DOM.create("div","minemap-canvas-container",t);this._interactive&&e.classList.add("minemap-interactive"),this._canvas=DOM.create("canvas","minemap-canvas",e),this._canvas.style.position="absolute",this._canvas.addEventListener("webglcontextlost",this._contextLost,!1),this._canvas.addEventListener("webglcontextrestored",this._contextRestored,!1),this._canvas.setAttribute("tabindex","0"),this._canvas.setAttribute("aria-label","Map");var r=this._containerDimensions();this._resizeCanvas(r[0],r[1]);var o=this._controlContainer=DOM.create("div","minemap-control-container",t),i=this._controlPositions={};["top-left","top-right","bottom-left","bottom-right"].forEach(function(t){i[t]=DOM.create("div","minemap-ctrl-"+t,o)})},e.prototype._resizeCanvas=function(t,e){var r=window.devicePixelRatio||1;this._canvas.width=r*t,this._canvas.height=r*e,this._canvas.style.width=t+"px",this._canvas.style.height=e+"px"},e.prototype._setupPainter=function(){var t=util.extend({failIfMajorPerformanceCaveat:this._failIfMajorPerformanceCaveat,preserveDrawingBuffer:this._preserveDrawingBuffer},isSupported.webGLContextAttributes),e=this._canvas.getContext("webgl",t)||this._canvas.getContext("experimental-webgl",t);if(!e)return void this.fire("error",{error:new Error("Failed to initialize WebGL")});-1!==navigator.userAgent.indexOf("Mac OS X")&&-1!==navigator.userAgent.indexOf("Chrome")?this.painter=new PainterChromeMac(e,this.transform):this.painter=new Painter(e,this.transform)},e.prototype._contextLost=function(t){t.preventDefault(),this._frameId&&(browser.cancelFrame(this._frameId),this._frameId=null),this.fire("webglcontextlost",{originalEvent:t})},e.prototype._contextRestored=function(t){this._setupPainter(),this.resize(),this._update(),this.fire("webglcontextrestored",{originalEvent:t})},e.prototype.loaded=function(){return!this._styleDirty&&!this._sourcesDirty&&!(!this.style||!this.style.loaded())},e.prototype._update=function(t){return this.style?(this._styleDirty=this._styleDirty||t,this._sourcesDirty=!0,this._rerender(),this):this},e.prototype._render=function(){return this.style&&this._styleDirty&&(this._styleDirty=!1,this.style.update(this._classes,this._classOptions),this._classOptions=null,this.style._recalculate(this.transform.zoom)),this.style&&this._sourcesDirty&&(this._sourcesDirty=!1,this.style._updateSources(this.transform)),this.painter.render(this.style,{showTileBoundaries:this.showTileBoundaries,showOverdrawInspector:this._showOverdrawInspector,rotating:this.rotating,zooming:this.zooming}),this.fire("render"),this.loaded()&&!this._loaded&&(this._loaded=!0,this.fire("load")),this._frameId=null,this.animationLoop.stopped()||(this._styleDirty=!0),(this._sourcesDirty||this._repaint||this._styleDirty)&&this._rerender(),this},e.prototype.remove=function(){this._hash&&this._hash.remove(),browser.cancelFrame(this._frameId),this._frameId=null,this.setStyle(null),void 0!==window&&(window.removeEventListener("resize",this._onWindowResize,!1),window.removeEventListener("online",this._onWindowOnline,!1));var t=this.painter.gl.getExtension("WEBGL_lose_context");t&&t.loseContext(),removeNode(this._canvasContainer),removeNode(this._controlContainer),this._container.classList.remove("minemap-map"),this.fire("remove"),this.overviewMapInstance&&(this.off("moveend",this.__onMove),this.overviewMapInstance.remove())},e.prototype._rerender=function(){this.style&&!this._frameId&&(this._frameId=browser.frame(this._render))},e.prototype._onWindowOnline=function(){this._update()},e.prototype._onWindowResize=function(){this._trackResize&&this.stop().resize()._update()},r.showTileBoundaries.get=function(){return!!this._showTileBoundaries},r.showTileBoundaries.set=function(t){this._showTileBoundaries!==t&&(this._showTileBoundaries=t,this._update())},r.showCollisionBoxes.get=function(){return!!this._showCollisionBoxes},r.showCollisionBoxes.set=function(t){this._showCollisionBoxes!==t&&(this._showCollisionBoxes=t,this.style._redoPlacement())},r.showOverdrawInspector.get=function(){return!!this._showOverdrawInspector},r.showOverdrawInspector.set=function(t){this._showOverdrawInspector!==t&&(this._showOverdrawInspector=t,this._update())},r.repaint.get=function(){return!!this._repaint},r.repaint.set=function(t){this._repaint=t,this._update()},r.vertices.get=function(){return!!this._vertices},r.vertices.set=function(t){this._vertices=t,this._update()},e.prototype._onData=function(t){this._update("style"===t.dataType),this.fire(t.dataType+"data",t)},e.prototype._onDataLoading=function(t){this.fire(t.dataType+"dataloading",t)},Object.defineProperties(e.prototype,r),e}(Camera);module.exports=Map;
},{"../@minemap/point-geometry":50,"../geo/lng_lat":83,"../geo/lng_lat_bounds":84,"../geo/transform":85,"../render/painter":104,"../render/painter1":105,"../style/animation_loop":165,"../style/style":168,"../util/ajax":221,"../util/browser":222,"../util/dom":229,"../util/drag":230,"../util/util":247,"../util/window":224,"./bind_handlers":201,"./camera":202,"./control/attribution_control":203,"./control/logo_control":206,"./hash":216,"./marker":218,"minemap-supported":34}],218:[function(_dereq_,module,exports){
"use strict";var DOM=_dereq_("../util/dom"),LngLat=_dereq_("../geo/lng_lat"),Point=_dereq_("../@minemap/point-geometry"),smartWrap=_dereq_("../util/smart_wrap"),Marker=function(t,e){this._offset=Point.convert(e&&e.offset||[0,0]),this._update=this._update.bind(this),this._onMapClick=this._onMapClick.bind(this),t||(t=DOM.create("div")),t.classList.add("minemap-marker"),this._element=t,this._popup=null};Marker.prototype.addTo=function(t){return this.remove(),this._map=t,t.getCanvasContainer().appendChild(this._element),t.on("move",this._update),t.on("moveend",this._update),this._update(),this._map.on("click",this._onMapClick),t.addMarker(this),this},Marker.prototype.remove=function(){return this._map&&(this._map.off("click",this._onMapClick),this._map.off("move",this._update),this._map.off("moveend",this._update),this._map=null),DOM.remove(this._element),this._popup&&this._popup.remove(),this},Marker.prototype.getLngLat=function(){return this._lngLat},Marker.prototype.setLngLat=function(t){return this._lngLat=LngLat.convert(t),this._popup&&this._popup.setLngLat(this._lngLat),this._update(),this},Marker.prototype.getElement=function(){return this._element},Marker.prototype.setPopup=function(t){return this._popup&&(this._popup.remove(),this._popup=null),t&&(this._popup=t,this._popup.setLngLat(this._lngLat)),this},Marker.prototype._onMapClick=function(t){var e=t.originalEvent.target,p=this._element;this._popup&&(e===p||p.contains(e))&&this.togglePopup()},Marker.prototype.getPopup=function(){return this._popup},Marker.prototype.togglePopup=function(){var t=this._popup;t&&(t.isOpen()?t.remove():t.addTo(this._map))},Marker.prototype._update=function(t){if(this._map){var e=this._map.project(this._map.transform.renderWorldCopies?this._lngLat.wrapToBestWorld(this._map.getCenter()):this._lngLat)._add(this._offset);t&&"moveend"!==t.type||(e=e.round()),DOM.setTransform(this._element,"translate("+e.x+"px, "+e.y+"px)")}},module.exports=Marker;
},{"../@minemap/point-geometry":50,"../geo/lng_lat":83,"../util/dom":229,"../util/smart_wrap":243}],219:[function(_dereq_,module,exports){
"use strict";function normalizeOffset(t){if(t){if("number"==typeof t){var e=Math.round(Math.sqrt(.5*Math.pow(t,2)));return{top:new Point(0,t),"top-left":new Point(e,e),"top-right":new Point(-e,e),bottom:new Point(0,-t),"bottom-left":new Point(e,-e),"bottom-right":new Point(-e,-e),left:new Point(t,0),right:new Point(-t,0)}}if(isPointLike(t)){var o=Point.convert(t);return{top:o,"top-left":o,"top-right":o,bottom:o,"bottom-left":o,"bottom-right":o,left:o,right:o}}return{top:Point.convert(t.top||[0,0]),"top-left":Point.convert(t["top-left"]||[0,0]),"top-right":Point.convert(t["top-right"]||[0,0]),bottom:Point.convert(t.bottom||[0,0]),"bottom-left":Point.convert(t["bottom-left"]||[0,0]),"bottom-right":Point.convert(t["bottom-right"]||[0,0]),left:Point.convert(t.left||[0,0]),right:Point.convert(t.right||[0,0])}}return normalizeOffset(new Point(0,0))}function isPointLike(t){return t instanceof Point||Array.isArray(t)}var util=_dereq_("../util/util"),Evented=_dereq_("../util/evented"),DOM=_dereq_("../util/dom"),LngLat=_dereq_("../geo/lng_lat"),Point=_dereq_("../@minemap/point-geometry"),window=_dereq_("../util/window"),smartWrap=_dereq_("../util/smart_wrap"),defaultOptions={closeButton:!0,closeOnClick:!0},Popup=function(t){function e(e){t.call(this),this.options=util.extend(Object.create(defaultOptions),e),util.bindAll(["_update","_onClickClose"],this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.addTo=function(t){return this._map=t,this._map.on("move",this._update),this.options.closeOnClick&&this._map.on("click",this._onClickClose),this._update(),this},e.prototype.isOpen=function(){return!!this._map},e.prototype.remove=function(){return this._content&&this._content.parentNode&&this._content.parentNode.removeChild(this._content),this._container&&(this._container.parentNode.removeChild(this._container),delete this._container),this._map&&(this._map.off("move",this._update),this._map.off("click",this._onClickClose),delete this._map),this.fire("close"),this},e.prototype.getLngLat=function(){return this._lngLat},e.prototype.setLngLat=function(t){return this._lngLat=LngLat.convert(t),this._update(),this},e.prototype.setText=function(t){return this.setDOMContent(window.document.createTextNode(t))},e.prototype.setHTML=function(t){var e,o=window.document.createDocumentFragment(),n=window.document.createElement("body");for(n.innerHTML=t;;){if(!(e=n.firstChild))break;o.appendChild(e)}return this.setDOMContent(o)},e.prototype.setDOMContent=function(t){return this._createContent(),this._content.appendChild(t),this._update(),this},e.prototype._createContent=function(){this._content&&this._content.parentNode&&this._content.parentNode.removeChild(this._content),this._content=DOM.create("div","minemap-popup-content",this._container),this.options.closeButton&&(this._closeButton=DOM.create("button","minemap-popup-close-button",this._content),this._closeButton.type="button",this._closeButton.innerHTML="×",this._closeButton.addEventListener("click",this._onClickClose))},e.prototype._update=function(){if(this._map&&this._lngLat&&this._content){this._container||(this._container=DOM.create("div","minemap-popup",this._map.getContainer()),this._tip=DOM.create("div","minemap-popup-tip",this._container),this._container.appendChild(this._content));var t=this.options.anchor,e=normalizeOffset(this.options.offset),o=this._map.project(this._map.transform.renderWorldCopies?this._lngLat.wrapToBestWorld(this._map.getCenter()):this._lngLat).round();if(!t){var n=this._container.offsetWidth,i=this._container.offsetHeight;t=o.y+e.bottom.y<i?["top"]:o.y>this._map.transform.height-i?["bottom"]:[],o.x<n/2?t.push("left"):o.x>this._map.transform.width-n/2&&t.push("right"),t=0===t.length?"bottom":t.join("-")}var r=o.add(e[t]),s={top:"translate(-50%,0)","top-left":"translate(0,0)","top-right":"translate(-100%,0)",bottom:"translate(-50%,-100%)","bottom-left":"translate(0,-100%)","bottom-right":"translate(-100%,-100%)",left:"translate(0,-50%)",right:"translate(-100%,-50%)"},p=this._container.classList;for(var a in s)p.remove("minemap-popup-anchor-"+a);p.add("minemap-popup-anchor-"+t),DOM.setTransform(this._container,s[t]+" translate("+r.x+"px,"+r.y+"px)")}},e.prototype._onClickClose=function(){this.remove()},e}(Evented);module.exports=Popup;
},{"../@minemap/point-geometry":50,"../geo/lng_lat":83,"../util/dom":229,"../util/evented":231,"../util/smart_wrap":243,"../util/util":247,"../util/window":224}],220:[function(_dereq_,module,exports){
"use strict";var Actor=function(t,e,r){this.target=t,this.parent=e,this.mapId=r,this.callbacks={},this.callbackID=0,this.receive=this.receive.bind(this),this.target.addEventListener("message",this.receive,!1)};Actor.prototype.send=function(t,e,r,a,s){var i=r?this.mapId+":"+this.callbackID++:null;r&&(this.callbacks[i]=r),this.target.postMessage({targetMapId:s,sourceMapId:this.mapId,type:t,id:String(i),data:e},a)},Actor.prototype.receive=function(t){var e,r=this,a=t.data,s=a.id;if(!a.targetMapId||this.mapId===a.targetMapId){var i=function(t,e,a){r.target.postMessage({sourceMapId:r.mapId,type:"<response>",id:String(s),error:t?String(t):null,data:e},a)};if("<response>"===a.type)e=this.callbacks[a.id],delete this.callbacks[a.id],e&&a.error?e(new Error(a.error)):e&&e(null,a.data);else if(void 0!==a.id&&this.parent[a.type])this.parent[a.type](a.sourceMapId,a.data,i);else if(void 0!==a.id&&this.parent.getWorkerSource){var o=a.type.split("."),p=this.parent.getWorkerSource(a.sourceMapId,o[0]);p[o[1]](a.data,i)}else this.parent[a.type](a.data)}},Actor.prototype.remove=function(){this.target.removeEventListener("message",this.receive,!1)},module.exports=Actor;
},{}],221:[function(_dereq_,module,exports){
"use strict";function makeRequest(e){var t=new window.XMLHttpRequest;t.open("GET",e.url,!0);for(var r in e.headers)t.setRequestHeader(r,e.headers[r]);return t.withCredentials="include"===e.credentials,t}function sameOrigin(e){var t=window.document.createElement("a");return t.href=e,t.protocol===window.document.location.protocol&&t.host===window.document.location.host}var window=_dereq_("./window"),ResourceType={Unknown:"Unknown",Style:"Style",Source:"Source",Tile:"Tile",Glyphs:"Glyphs",SpriteImage:"SpriteImage",SpriteJSON:"SpriteJSON",Image:"Image"};exports.ResourceType=ResourceType,"function"==typeof Object.freeze&&Object.freeze(ResourceType);var AJAXError=function(e){function t(t,r){e.call(this,t),this.status=r}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t}(Error);exports.getJSON=function(e,t){var r=makeRequest("string"==typeof e?{url:e}:e);return r.setRequestHeader("Accept","application/json"),r.onerror=function(){t(new Error(r.statusText))},r.onload=function(){if(r.status>=200&&r.status<300&&r.response){var e;try{e=JSON.parse(r.response)}catch(e){return t(e)}t(null,e)}else t(new AJAXError(r.statusText,r.status))},r.send(),r},exports.getArrayBuffer=function(e,t){var r=makeRequest(e);return r.responseType="arraybuffer",r.onerror=function(){t(new Error(r.statusText))},r.onload=function(){var e=r.response;0===e.byteLength&&200===r.status&&t(null,{data:e,cacheControl:r.getResponseHeader("Cache-Control"),expires:r.getResponseHeader("Expires")}),r.status>=200&&r.status<300&&r.response?t(null,{data:e,cacheControl:r.getResponseHeader("Cache-Control"),expires:r.getResponseHeader("Expires")}):t(new AJAXError(r.statusText,r.status))},r.send(),r};var transparentPngUrl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQYV2NgAAIAAAUAAarVyFEAAAAASUVORK5CYII=";exports.getImage=function(e,t){return exports.getArrayBuffer(e,function(e,r){if(e)t(e);else if(r){var n=new window.Image,o=window.URL||window.webkitURL;n.onload=function(){t(null,n),o.revokeObjectURL(n.src)};var s=new window.Blob([new Uint8Array(r.data)],{type:"image/png"});n.cacheControl=r.cacheControl,n.expires=r.expires,n.src=r.data.byteLength?o.createObjectURL(s):transparentPngUrl}})},exports.getVideo=function(e,t){var r=window.document.createElement("video");r.onloadstart=function(){t(null,r)};for(var n=0;n<e.length;n++){var o=window.document.createElement("source");sameOrigin(e[n])||(r.crossOrigin="Anonymous"),o.src=e[n],r.appendChild(o)}return r};
},{"./window":224}],222:[function(_dereq_,module,exports){
"use strict";var window=_dereq_("./window"),now=window.performance&&window.performance.now?window.performance.now.bind(window.performance):Date.now.bind(Date),frame=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||window.msRequestAnimationFrame,cancel=window.cancelAnimationFrame||window.mozCancelAnimationFrame||window.webkitCancelAnimationFrame||window.msCancelAnimationFrame;module.exports={now:now,frame:function(e){return frame(e)},cancelFrame:function(e){return cancel(e)},timed:function(e,n,a){function t(){if(!i){var r=now();r>=o+n?e.call(a,1):(e.call(a,(r-o)/n),frame(t))}}if(!n)return e.call(a,1),null;var i=!1,o=now();return frame(t),function(){i=!0}},getImageData:function(e){var n=window.document.createElement("canvas"),a=n.getContext("2d");return n.width=e.width,n.height=e.height,a.drawImage(e,0,0,e.width,e.height),a.getImageData(0,0,e.width,e.height).data},hardwareConcurrency:window.navigator.hardwareConcurrency||4,get devicePixelRatio(){return window.devicePixelRatio},supportsWebp:!1};var webpImgTest=window.document.createElement("img");webpImgTest.onload=function(){module.exports.supportsWebp=!0},webpImgTest.src="data:image/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAQAAAAfQ//73v/+BiOh/AAA=";
},{"./window":224}],223:[function(_dereq_,module,exports){
"use strict";var WebWorkify=_dereq_("webworkify"),window=_dereq_("../window"),workerURL=window.URL.createObjectURL(new WebWorkify(_dereq_("../../source/worker"),{bare:!0}));module.exports=function(){return new window.Worker(workerURL)};
},{"../../source/worker":129,"../window":224,"webworkify":46}],224:[function(_dereq_,module,exports){
"use strict";module.exports=self;
},{}],225:[function(_dereq_,module,exports){
"use strict";function compareAreas(e,r){return r.area-e.area}var quickselect=_dereq_("quickselect"),calculateSignedArea=_dereq_("./util").calculateSignedArea;module.exports=function(e,r){var a=e.length;if(a<=1)return[e];for(var t,u,c=[],i=0;i<a;i++){var l=calculateSignedArea(e[i]);0!==l&&(e[i].area=Math.abs(l),void 0===u&&(u=l<0),u===l<0?(t&&c.push(t),t=[e[i]]):t.push(e[i]))}if(t&&c.push(t),r>1)for(var n=0;n<c.length;n++)c[n].length<=r||(quickselect(c[n],r,1,c[n].length-1,compareAreas),c[n]=c[n].slice(0,r));return c};
},{"./util":247,"quickselect":37}],226:[function(_dereq_,module,exports){
"use strict";var config={DOMAIN:"//minedata.cn",API_BASE:"/data/",API_URL:"//minedata.cn/data/",DYN_BASE:"/dynamicdata/",DYN_URL:"//minedata.cn/dynamicdata/",MERGE_BASE:"/mergeddata/",MERGE_URL:"//minedata.cn/mergeddata/",OTHER_BASE:"/otherdata/",OTHER_URL:"//minedata.cn/otherdata/",SRC_BASE:"/minemapapi/v1.3/",SRC_URL:"//minedata.cn/minemapapi/v1.3/",DRIVING_ROUTE_BASE:"/service/route/driving",DRIVING_ROUTE_URL:"//minedata.cn/service/route/driving",REQUIRE_ACCESS_TOKEN:!0,ACCESS_TOKEN:null};module.exports=config;
},{}],227:[function(_dereq_,module,exports){
"use strict";var DictionaryCoder=function(r){var t=this;this._stringToNumber={},this._numberToString=[];for(var o=0;o<r.length;o++){var i=r[o];t._stringToNumber[i]=o,t._numberToString[o]=i}};DictionaryCoder.prototype.encode=function(r){return this._stringToNumber[r]},DictionaryCoder.prototype.decode=function(r){return this._numberToString[r]},module.exports=DictionaryCoder;
},{}],228:[function(_dereq_,module,exports){
"use strict";var util=_dereq_("./util"),Actor=_dereq_("./actor"),Dispatcher=function(t,r){var o=this;this.workerPool=t,this.actors=[],this.currentActor=0,this.id=util.uniqueId();for(var i=this.workerPool.acquire(this.id),e=0;e<i.length;e++){var s=i[e],c=new Actor(s,r,o.id);c.name="Worker "+e,o.actors.push(c)}};Dispatcher.prototype.broadcast=function(t,r,o){o=o||function(){},util.asyncAll(this.actors,function(o,i){o.send(t,r,i)},o)},Dispatcher.prototype.send=function(t,r,o,i,e){return("number"!=typeof i||isNaN(i))&&(i=this.currentActor=(this.currentActor+1)%this.actors.length),this.actors[i].send(t,r,o,e),i},Dispatcher.prototype.remove=function(){this.actors.forEach(function(t){t.remove()}),this.actors=[],this.workerPool.release(this.id)},module.exports=Dispatcher;
},{"./actor":220,"./util":247}],229:[function(_dereq_,module,exports){
"use strict";function testProp(e){for(var t=0;t<e.length;t++)if(e[t]in docStyle)return e[t];return e[0]}function suppressClick(e){e.preventDefault(),e.stopPropagation(),window.removeEventListener("click",suppressClick,!0)}var Point=_dereq_("../@minemap/point-geometry"),window=_dereq_("./window");exports.create=function(e,t,n){var o=window.document.createElement(e);return t&&(o.className=t),n&&n.appendChild(o),o};var docStyle=window.document.documentElement.style,selectProp=testProp(["userSelect","MozUserSelect","WebkitUserSelect","msUserSelect"]),userSelect;exports.disableDrag=function(){selectProp&&(userSelect=docStyle[selectProp],docStyle[selectProp]="none")},exports.enableDrag=function(){selectProp&&(docStyle[selectProp]=userSelect)};var transformProp=testProp(["transform","WebkitTransform"]);exports.setTransform=function(e,t){e.style[transformProp]=t},exports.suppressClick=function(){window.addEventListener("click",suppressClick,!0),window.setTimeout(function(){window.removeEventListener("click",suppressClick,!0)},0)},exports.mousePos=function(e,t){var n=e.getBoundingClientRect();return t=t.touches?t.touches[0]:t,new Point(t.clientX-n.left-e.clientLeft,t.clientY-n.top-e.clientTop)},exports.touchPos=function(e,t){for(var n=e.getBoundingClientRect(),o=[],r="touchend"===t.type?t.changedTouches:t.touches,s=0;s<r.length;s++)o.push(new Point(r[s].clientX-n.left-e.clientLeft,r[s].clientY-n.top-e.clientTop));return o},exports.remove=function(e){e.parentNode&&e.parentNode.removeChild(e)};
},{"../@minemap/point-geometry":50,"./window":224}],230:[function(_dereq_,module,exports){
"use strict";var window=_dereq_("../util/window"),cb=null,restrictX=0,restrictY=0,Drag={obj:null,init:function(t){cb=t.cb,restrictX=t.restrictX,restrictY=t.restrictY,t.handler.onmousedown=this.start,t.handler.root=t.root||t.handler;var o=t.handler.root;o.onDragStart=t.dragStart||new Function,o.onDrag=t.onDrag||new Function,o.onDragEnd=t.onDragEnd||new Function},start:function(t){var o=Drag.obj=this;o.style.cursor="move",t=t||Drag.fixEvent(window.event);var r=t.pageX,e=t.pageY;o.lastMouseX=r,o.lastMouseY=e;var n=o.root.offsetLeft,a=o.root.offsetTop;o.root.style.left=n+"px",o.root.style.top=a+"px",window.document.onmouseup=Drag.end,window.document.onmousemove=Drag.drag,o.root.onDragStart(n,a)},drag:function(t){t=t||Drag.fixEvent(window.event);var o=t.pageX,r=t.pageY,e=Drag.obj.root,n=e.style.left?parseInt(e.style.left):0,a=e.style.top?parseInt(e.style.top):0;n<=-1&&(n=-1),a<=-1&&(a=-1),n>=restrictX&&(n=restrictX),a>=restrictY&&(a=restrictY);var s=o-Drag.obj.lastMouseX+n,l=r-Drag.obj.lastMouseY+a;e.style.left=s+"px",e.style.top=l+"px",Drag.obj.root.onDrag(s,l),Drag.obj.lastMouseX=o,Drag.obj.lastMouseY=r},end:function(t){var o=Drag.obj.root.style.left?parseInt(Drag.obj.root.style.left):0,r=Drag.obj.root.style.top?parseInt(Drag.obj.root.style.top):0;Drag.obj.root.onDragEnd(o,r),window.setTimeout(function(){cb(o,r)},100),window.document.onmousemove=null,window.document.onmouseup=null,Drag.obj=null},fixEvent:function(t){return t.pageX=t.clientX+window.document.documentElement.scrollLeft,t.pageY=t.clientY+window.document.documentElement.scrollTop,t}};module.exports=Drag;
},{"../util/window":224}],231:[function(_dereq_,module,exports){
"use strict";function _addEventListener(e,t,n){n[e]=n[e]||[],n[e].push(t)}function _removeEventListener(e,t,n){if(n&&n[e]){var i=n[e].indexOf(t);-1!==i&&n[e].splice(i,1)}}var util=_dereq_("./util"),Evented=function(){};Evented.prototype.on=function(e,t){return this._listeners=this._listeners||{},_addEventListener(e,t,this._listeners),this},Evented.prototype.off=function(e,t){return _removeEventListener(e,t,this._listeners),_removeEventListener(e,t,this._oneTimeListeners),this},Evented.prototype.once=function(e,t){return this._oneTimeListeners=this._oneTimeListeners||{},_addEventListener(e,t,this._oneTimeListeners),this},Evented.prototype.fire=function(e,t){var n=this;if(this.listens(e)){t=util.extend({},t,{type:e,target:this});for(var i=this._listeners&&this._listeners[e]?this._listeners[e].slice():[],s=0;s<i.length;s++)i[s].call(n,t);for(var r=this._oneTimeListeners&&this._oneTimeListeners[e]?this._oneTimeListeners[e].slice():[],o=0;o<r.length;o++)r[o].call(n,t),_removeEventListener(e,r[o],n._oneTimeListeners);this._eventedParent&&this._eventedParent.fire(e,util.extend({},t,"function"==typeof this._eventedParentData?this._eventedParentData():this._eventedParentData))}else if(util.endsWith(e,"error")){t&&t.error;console.error(t&&t.error||t||"Empty error event")}return this},Evented.prototype.listens=function(e){return this._listeners&&this._listeners[e]&&this._listeners[e].length>0||this._oneTimeListeners&&this._oneTimeListeners[e]&&this._oneTimeListeners[e].length>0||this._eventedParent&&this._eventedParent.listens(e)},Evented.prototype.setEventedParent=function(e,t){return this._eventedParent=e,this._eventedParentData=t,this},module.exports=Evented;
},{"./util":247}],232:[function(_dereq_,module,exports){
"use strict";function compareMax(e,t){return t.max-e.max}function Cell(e,t,n,r){this.p=new Point(e,t),this.h=n,this.d=pointToPolygonDist(this.p,r),this.max=this.d+this.h*Math.SQRT2}function pointToPolygonDist(e,t){for(var n=!1,r=1/0,o=0;o<t.length;o++)for(var i=t[o],l=0,u=i.length,a=u-1;l<u;a=l++){var s=i[l],p=i[a];s.y>e.y!=p.y>e.y&&e.x<(p.x-s.x)*(e.y-s.y)/(p.y-s.y)+s.x&&(n=!n),r=Math.min(r,distToSegmentSquared(e,s,p))}return(n?1:-1)*Math.sqrt(r)}function getCentroidCell(e){for(var t=0,n=0,r=0,o=e[0],i=0,l=o.length,u=l-1;i<l;u=i++){var a=o[i],s=o[u],p=a.x*s.y-s.x*a.y;n+=(a.x+s.x)*p,r+=(a.y+s.y)*p,t+=3*p}return new Cell(n/t,r/t,0,e)}var Queue=_dereq_("tinyqueue"),Point=_dereq_("../@minemap/point-geometry"),distToSegmentSquared=_dereq_("./intersection_tests").distToSegmentSquared;module.exports=function(e,t,n){t=t||1;for(var r,o,i,l,u=e[0],a=0;a<u.length;a++){var s=u[a];(!a||s.x<r)&&(r=s.x),(!a||s.y<o)&&(o=s.y),(!a||s.x>i)&&(i=s.x),(!a||s.y>l)&&(l=s.y)}var p=i-r,h=l-o,y=Math.min(p,h),x=y/2,d=new Queue(null,compareMax);if(0===y)return[r,o];for(var g=r;g<i;g+=y)for(var m=o;m<l;m+=y)d.push(new Cell(g+x,m+x,x,e));for(var f=getCentroidCell(e),c=d.length;d.length;){var v=d.pop();(v.d>f.d||!f.d)&&(f=v,n&&console.log("found best %d after %d probes",Math.round(1e4*v.d)/1e4,c)),v.max-f.d<=t||(x=v.h/2,d.push(new Cell(v.p.x-x,v.p.y-x,x,e)),d.push(new Cell(v.p.x+x,v.p.y-x,x,e)),d.push(new Cell(v.p.x-x,v.p.y+x,x,e)),d.push(new Cell(v.p.x+x,v.p.y+x,x,e)),c+=4)}return n&&(console.log("num probes: "+c),console.log("best distance: "+f.d)),f.p};
},{"../@minemap/point-geometry":50,"./intersection_tests":237,"tinyqueue":39}],233:[function(_dereq_,module,exports){
"use strict";var WorkerPool=_dereq_("./worker_pool"),globalWorkerPool;module.exports=function(){return globalWorkerPool||(globalWorkerPool=new WorkerPool),globalWorkerPool};
},{"./worker_pool":250}],234:[function(_dereq_,module,exports){
"use strict";function readFontstacks(a,e,r){if(1===a){var t=r.readMessage(readFontstack,{glyphs:{}});e.push(t)}}function readFontstack(a,e,r){if(1===a)e.name=r.readString();else if(2===a)e.range=r.readString();else if(3===a){var t=r.readMessage(readGlyph,{});e.glyphs[t.id]=t}}function readGlyph(a,e,r){1===a?e.id=r.readVarint():2===a?e.bitmap=r.readBytes():3===a?e.width=r.readVarint():4===a?e.height=r.readVarint():5===a?e.left=r.readSVarint():6===a?e.top=r.readSVarint():7===a&&(e.advance=r.readVarint())}var Glyphs=function(a,e){this.stacks=a.readFields(readFontstacks,[],e)};module.exports=Glyphs;
},{}],235:[function(_dereq_,module,exports){
"use strict";var Polygon=exports.Polygon={};Polygon.read=function(e,n){return e.readFields(Polygon._readField,{lon:[],lat:[],index:[],multi:[]},n)},Polygon._readField=function(e,n,r){1===e?r.readPackedVarint(n.lon,!0):2===e?r.readPackedVarint(n.lat,!0):3===e?r.readPackedVarint(n.index,!0):4===e&&r.readPackedVarint(n.multi,!0)},Polygon.write=function(e,n){e.lon&&n.writePackedVarint(1,e.lon),e.lat&&n.writePackedVarint(2,e.lat),e.index&&n.writePackedVarint(3,e.index),e.multi&&n.writePackedVarint(4,e.multi)};var Building=exports.Building={};Building.read=function(e,n){return e.readFields(Building._readField,{polygon:null,num:0,name:"",type:""},n)},Building._readField=function(e,n,r){1===e?n.polygon=Polygon.read(r,r.readVarint()+r.pos):2===e?n.num=r.readVarint(!0):3===e?n.name=r.readString():4===e&&(n.type=r.readString())},Building.write=function(e,n){e.polygon&&n.writeMessage(1,Polygon.write,e.polygon),e.num&&n.writeVarintField(2,e.num),e.name&&n.writeStringField(3,e.name),e.type&&n.writeStringField(4,e.type)};var Center=exports.Center={};Center.read=function(e,n){return e.readFields(Center._readField,{point:null,num:0,name:"",type:""},n)},Center._readField=function(e,n,r){1===e?n.point=Point.read(r,r.readVarint()+r.pos):3===e?n.num=r.readVarint(!0):4===e?n.name=r.readString():5===e&&(n.type=r.readString())},Center.write=function(e,n){e.point&&n.writeMessage(1,Point.write,e.point),e.num&&n.writeVarintField(3,e.num),e.name&&n.writeStringField(4,e.name),e.type&&n.writeStringField(5,e.type)};var MultiPolygon=exports.MultiPolygon={};MultiPolygon.read=function(e,n){return e.readFields(MultiPolygon._readField,{polygon:[]},n)},MultiPolygon._readField=function(e,n,r){1===e&&n.polygon.push(Polygon.read(r,r.readVarint()+r.pos))},MultiPolygon.write=function(e,n){if(e.polygon)for(var r=0;r<e.polygon.length;r++)n.writeMessage(1,Polygon.write,e.polygon[r])};var Point=exports.Point={};Point.read=function(e,n){return e.readFields(Point._readField,{lon:[],lat:[]},n)},Point._readField=function(e,n,r){1===e?r.readPackedVarint(n.lon,!0):2===e&&r.readPackedVarint(n.lat,!0)},Point.write=function(e,n){e.lon&&n.writePackedVarint(1,e.lon),e.lat&&n.writePackedVarint(2,e.lat)};var Floor=exports.Floor={};Floor.read=function(e,n){return e.readFields(Floor._readField,{ppoint:[],ptype:[],pname:[],sface:[],stype:[],sname:[],fface:null,fname:""},n)},Floor._readField=function(e,n,r){1===e?n.ppoint.push(Point.read(r,r.readVarint()+r.pos)):3===e?r.readPackedVarint(n.ptype,!0):4===e?n.pname.push(r.readString()):5===e?n.sface.push(Polygon.read(r,r.readVarint()+r.pos)):6===e?r.readPackedVarint(n.stype,!0):7===e?n.sname.push(r.readString()):8===e?n.fface=Polygon.read(r,r.readVarint()+r.pos):9===e&&(n.fname=r.readString())},Floor.write=function(e,n){if(e.ppoint)for(var r=0;r<e.ppoint.length;r++)n.writeMessage(1,Point.write,e.ppoint[r]);if(e.ptype&&n.writePackedVarint(3,e.ptype),e.pname)for(r=0;r<e.pname.length;r++)n.writeStringField(4,e.pname[r]);if(e.sface)for(r=0;r<e.sface.length;r++)n.writeMessage(5,Polygon.write,e.sface[r]);if(e.stype&&n.writePackedVarint(6,e.stype),e.sname)for(r=0;r<e.sname.length;r++)n.writeStringField(7,e.sname[r]);e.fface&&n.writeMessage(8,Polygon.write,e.fface),e.fname&&n.writeStringField(9,e.fname)};var IndoorPbf=exports.IndoorPbf={};IndoorPbf.read=function(e,n){return e.readFields(IndoorPbf._readField,{building:null,default:"",center:null,indexes:[],floor:[],lonoffset:0,latoffset:0,num:0},n)},IndoorPbf._readField=function(e,n,r){1===e?n.building=Building.read(r,r.readVarint()+r.pos):2===e?n.default=r.readString():3===e?n.center=Center.read(r,r.readVarint()+r.pos):4===e?n.indexes.push(r.readString()):5===e?n.floor.push(Floor.read(r,r.readVarint()+r.pos)):6===e?n.lonoffset=r.readVarint(!0):7===e?n.latoffset=r.readVarint(!0):8===e&&(n.num=r.readVarint(!0))},IndoorPbf.write=function(e,n){if(e.building&&n.writeMessage(1,Building.write,e.building),e.default&&n.writeStringField(2,e.default),e.center&&n.writeMessage(3,Center.write,e.center),e.indexes)for(var r=0;r<e.indexes.length;r++)n.writeStringField(4,e.indexes[r]);if(e.floor)for(r=0;r<e.floor.length;r++)n.writeMessage(5,Floor.write,e.floor[r]);e.lonoffset&&n.writeVarintField(6,e.lonoffset),e.latoffset&&n.writeVarintField(7,e.latoffset),e.num&&n.writeVarintField(8,e.num)};
},{}],236:[function(_dereq_,module,exports){
"use strict";function parseMessage(e){var t=e.lonoffset,o=e.latoffset,r=Math.pow(10,e.num);return{building:getBuildingData(t,o,r,e),building_name:getBuildingNameData(t,o,r,e),default_:e.default||"",indexes:e.indexes||[],floors:getFloorsData(t,o,r,e)}}function getBuildingData(e,t,o,r){var n=r.building;return{geometry:getPolygonGeometry(e,t,o,n.polygon),type:"Feature",properties:{build_num:n.num,build_name:n.name,build_type:n.type}}}function getBuildingNameData(e,t,o,r){var n=r.center,a=n.point;return{geometry:{type:"Point",coordinates:convertLonLat(e,t,o,a.lon[0],a.lat[0])},type:"Feature",properties:{build_num:n.num,build_name:n.name,build_type:n.type}}}function getFloorsData(e,t,o,r){return(r.floor||[]).map(function(r){return{ix_poi:{type:"FeatureCollection",features:getIxPoiDataArr(e,t,o,r)},space_face:{type:"FeatureCollection",features:getSpaceFaceDataArr(e,t,o,r)},floor:getFloorData(e,t,o,r)}})}function getIxPoiDataArr(e,t,o,r){var n=r.ppoint||[],a=r.pname||[],i=r.ptype||[];return n.map(function(r,n){return{geometry:{type:"Point",coordinates:convertLonLat(e,t,o,r.lon[0],r.lat[0])},type:"Feature",properties:{poi_type:i[n],poi_name:a[n]}}})}function getSpaceFaceDataArr(e,t,o,r){var n=r.sface||[],a=r.sname||[],i=r.stype||[];return n.map(function(r,u){return{geometry:getPolygonGeometry(e,t,o,n[u]),type:"Feature",properties:{space_type:i[u],space_name:a[u]}}})}function getFloorData(e,t,o,r){return{geometry:getPolygonGeometry(e,t,o,r.fface||{}),type:"Feature",properties:{floor_name:r.fname}}}function convertLonLat(e,t,o,r,n){return[(r+e)/o,(n+t)/o]}function getPolygonGeometry(e,t,o,r){for(var n=r.lon,a=r.lat,i=r.index,u=r.multi,p=[],l=0,f=0;f<u.length;f++){for(var g=[],s=0,y=l,c=y+u[f],m=y;m<c;m++){for(var d=[],b=s;b<s+i[m];b++)d.push(convertLonLat(e,t,o,n[b],a[b]));s+=i[m],g.push(d)}l=+u[f],p.push(g)}var P=[],_="Polygon";return u.length>1?(P=p,_="MultiPolygon"):(P=p[0],_="Polygon"),{type:_,coordinates:P}}var Protobuf=_dereq_("pbf"),IndoorPbf=_dereq_("./indoor_pbf").IndoorPbf,IndoorMap=function(e){var t=IndoorPbf.read(new Protobuf(e));this.indoormap=parseMessage(t)};IndoorMap.prototype.getData=function(){return this.indoormap},module.exports=IndoorMap;
},{"./indoor_pbf":235,"pbf":35}],237:[function(_dereq_,module,exports){
"use strict";function polygonIntersectsPolygon(n,t){for(var e=0;e<n.length;e++)if(polygonContainsPoint(t,n[e]))return!0;for(var r=0;r<t.length;r++)if(polygonContainsPoint(n,t[r]))return!0;return!!lineIntersectsLine(n,t)}function multiPolygonIntersectsBufferedMultiPoint(n,t,e){for(var r=0;r<n.length;r++)for(var o=n[r],i=0;i<t.length;i++)for(var l=t[i],u=0;u<l.length;u++){var s=l[u];if(polygonContainsPoint(o,s))return!0;if(pointIntersectsBufferedLine(s,o,e))return!0}return!1}function multiPolygonIntersectsMultiPolygon(n,t){if(1===n.length&&1===n[0].length)return multiPolygonContainsPoint(t,n[0][0]);for(var e=0;e<t.length;e++)for(var r=t[e],o=0;o<r.length;o++)if(multiPolygonContainsPoint(n,r[o]))return!0;for(var i=0;i<n.length;i++){for(var l=n[i],u=0;u<l.length;u++)if(multiPolygonContainsPoint(t,l[u]))return!0;for(var s=0;s<t.length;s++)if(lineIntersectsLine(l,t[s]))return!0}return!1}function multiPolygonIntersectsBufferedMultiLine(n,t,e){for(var r=0;r<t.length;r++)for(var o=t[r],i=0;i<n.length;i++){var l=n[i];if(l.length>=3)for(var u=0;u<o.length;u++)if(polygonContainsPoint(l,o[u]))return!0;if(lineIntersectsBufferedLine(l,o,e))return!0}return!1}function lineIntersectsBufferedLine(n,t,e){if(n.length>1){if(lineIntersectsLine(n,t))return!0;for(var r=0;r<t.length;r++)if(pointIntersectsBufferedLine(t[r],n,e))return!0}for(var o=0;o<n.length;o++)if(pointIntersectsBufferedLine(n[o],t,e))return!0;return!1}function lineIntersectsLine(n,t){if(0===n.length||0===t.length)return!1;for(var e=0;e<n.length-1;e++)for(var r=n[e],o=n[e+1],i=0;i<t.length-1;i++){var l=t[i],u=t[i+1];if(lineSegmentIntersectsLineSegment(r,o,l,u))return!0}return!1}function lineSegmentIntersectsLineSegment(n,t,e,r){return isCounterClockwise(n,e,r)!==isCounterClockwise(t,e,r)&&isCounterClockwise(n,t,e)!==isCounterClockwise(n,t,r)}function pointIntersectsBufferedLine(n,t,e){var r=e*e;if(1===t.length)return n.distSqr(t[0])<r;for(var o=1;o<t.length;o++){if(distToSegmentSquared(n,t[o-1],t[o])<r)return!0}return!1}function distToSegmentSquared(n,t,e){var r=t.distSqr(e);if(0===r)return n.distSqr(t);var o=((n.x-t.x)*(e.x-t.x)+(n.y-t.y)*(e.y-t.y))/r;return o<0?n.distSqr(t):o>1?n.distSqr(e):n.distSqr(e.sub(t)._mult(o)._add(t))}function multiPolygonContainsPoint(n,t){for(var e,r,o,i=!1,l=0;l<n.length;l++){e=n[l];for(var u=0,s=e.length-1;u<e.length;s=u++)r=e[u],o=e[s],r.y>t.y!=o.y>t.y&&t.x<(o.x-r.x)*(t.y-r.y)/(o.y-r.y)+r.x&&(i=!i)}return i}function polygonContainsPoint(n,t){for(var e=!1,r=0,o=n.length-1;r<n.length;o=r++){var i=n[r],l=n[o];i.y>t.y!=l.y>t.y&&t.x<(l.x-i.x)*(t.y-i.y)/(l.y-i.y)+i.x&&(e=!e)}return e}var isCounterClockwise=_dereq_("./util").isCounterClockwise;module.exports={multiPolygonIntersectsBufferedMultiPoint:multiPolygonIntersectsBufferedMultiPoint,multiPolygonIntersectsMultiPolygon:multiPolygonIntersectsMultiPolygon,multiPolygonIntersectsBufferedMultiLine:multiPolygonIntersectsBufferedMultiLine,polygonIntersectsPolygon:polygonIntersectsPolygon,distToSegmentSquared:distToSegmentSquared};
},{"./util":247}],238:[function(_dereq_,module,exports){
"use strict";var unicodeBlockLookup={"Latin-1 Supplement":function(n){return n>=128&&n<=255},Arabic:function(n){return n>=1536&&n<=1791},"Arabic Supplement":function(n){return n>=1872&&n<=1919},"Arabic Extended-A":function(n){return n>=2208&&n<=2303},"Hangul Jamo":function(n){return n>=4352&&n<=4607},"Unified Canadian Aboriginal Syllabics":function(n){return n>=5120&&n<=5759},"Unified Canadian Aboriginal Syllabics Extended":function(n){return n>=6320&&n<=6399},"General Punctuation":function(n){return n>=8192&&n<=8303},"Letterlike Symbols":function(n){return n>=8448&&n<=8527},"Number Forms":function(n){return n>=8528&&n<=8591},"Miscellaneous Technical":function(n){return n>=8960&&n<=9215},"Control Pictures":function(n){return n>=9216&&n<=9279},"Optical Character Recognition":function(n){return n>=9280&&n<=9311},"Enclosed Alphanumerics":function(n){return n>=9312&&n<=9471},"Geometric Shapes":function(n){return n>=9632&&n<=9727},"Miscellaneous Symbols":function(n){return n>=9728&&n<=9983},"Miscellaneous Symbols and Arrows":function(n){return n>=11008&&n<=11263},"CJK Radicals Supplement":function(n){return n>=11904&&n<=12031},"Kangxi Radicals":function(n){return n>=12032&&n<=12255},"Ideographic Description Characters":function(n){return n>=12272&&n<=12287},"CJK Symbols and Punctuation":function(n){return n>=12288&&n<=12351},Hiragana:function(n){return n>=12352&&n<=12447},Katakana:function(n){return n>=12448&&n<=12543},Bopomofo:function(n){return n>=12544&&n<=12591},"Hangul Compatibility Jamo":function(n){return n>=12592&&n<=12687},Kanbun:function(n){return n>=12688&&n<=12703},"Bopomofo Extended":function(n){return n>=12704&&n<=12735},"CJK Strokes":function(n){return n>=12736&&n<=12783},"Katakana Phonetic Extensions":function(n){return n>=12784&&n<=12799},"Enclosed CJK Letters and Months":function(n){return n>=12800&&n<=13055},"CJK Compatibility":function(n){return n>=13056&&n<=13311},"CJK Unified Ideographs Extension A":function(n){return n>=13312&&n<=19903},"Yijing Hexagram Symbols":function(n){return n>=19904&&n<=19967},"CJK Unified Ideographs":function(n){return n>=19968&&n<=40959},"Yi Syllables":function(n){return n>=40960&&n<=42127},"Yi Radicals":function(n){return n>=42128&&n<=42191},"Hangul Jamo Extended-A":function(n){return n>=43360&&n<=43391},"Hangul Syllables":function(n){return n>=44032&&n<=55215},"Hangul Jamo Extended-B":function(n){return n>=55216&&n<=55295},"Private Use Area":function(n){return n>=57344&&n<=63743},"CJK Compatibility Ideographs":function(n){return n>=63744&&n<=64255},"Arabic Presentation Forms-A":function(n){return n>=64336&&n<=65023},"Vertical Forms":function(n){return n>=65040&&n<=65055},"CJK Compatibility Forms":function(n){return n>=65072&&n<=65103},"Small Form Variants":function(n){return n>=65104&&n<=65135},"Arabic Presentation Forms-B":function(n){return n>=65136&&n<=65279},"Halfwidth and Fullwidth Forms":function(n){return n>=65280&&n<=65519}};module.exports=unicodeBlockLookup;
},{}],239:[function(_dereq_,module,exports){
"use strict";var LRUCache=function(t,e){this.max=t,this.onRemove=e,this.reset()};LRUCache.prototype.reset=function(){var t=this;for(var e in t.data)t.onRemove(t.data[e]);return this.data={},this.order=[],this},LRUCache.prototype.add=function(t,e){if(this.has(t))this.order.splice(this.order.indexOf(t),1),this.data[t]=e,this.order.push(t);else if(this.data[t]=e,this.order.push(t),this.order.length>this.max){var r=this.get(this.order[0]);r&&this.onRemove(r)}return this},LRUCache.prototype.has=function(t){return t in this.data},LRUCache.prototype.keys=function(){return this.order},LRUCache.prototype.get=function(t){if(!this.has(t))return null;var e=this.data[t];return delete this.data[t],this.order.splice(this.order.indexOf(t),1),e},LRUCache.prototype.getWithoutRemoving=function(t){return this.has(t)?this.data[t]:null},LRUCache.prototype.remove=function(t){if(!this.has(t))return this;var e=this.data[t];return delete this.data[t],this.onRemove(e),this.order.splice(this.order.indexOf(t),1),this},LRUCache.prototype.setMaxSize=function(t){var e=this;for(this.max=t;this.order.length>this.max;){var r=e.get(e.order[0]);r&&e.onRemove(r)}return this},module.exports=LRUCache;
},{}],240:[function(_dereq_,module,exports){
"use strict";function makeAPIURL(r,t,a,o){switch(r.protocol){case"minemap":var e=parseUrl(config.SRC_URL);r.protocol=e.protocol,r.authority=e.authority;break;case"minemapdata":var i=parseUrl(config.API_URL);r.path=i.path+r.authority+r.path,r.protocol=i.protocol,r.authority=i.authority;break;case"minemapdatad":var n=parseUrl(config.DYN_URL);r.path=n.path+r.authority+r.path,r.protocol=n.protocol,r.authority=n.authority;break;case"minemapdatam":var p=parseUrl(config.MERGE_URL);r.path=p.path+r.authority+r.path,r.protocol=p.protocol,r.authority=p.authority;break;case"minemapdatao":var s=parseUrl(config.OTHER_URL);r.path=s.path+r.authority+r.path,r.protocol=s.protocol,r.authority=s.authority}if(!config.REQUIRE_ACCESS_TOKEN)return formatUrl(r);if(t=t||config.ACCESS_TOKEN,a=a||config.SOLU,o=o||config.DATA_VERSION,!t)throw new Error("需要申请accessToken. "+help);return r.params.push("token="+t),r.params.push("solu="+a),o&&r.params.push("version="+o),formatUrl(r)}function isMinemapURL(r){return 0===r.indexOf("minemap:")||0===r.indexOf("minemapdata:")||0===r.indexOf("minemapdatad:")||0===r.indexOf("minemapdatam:")||0===r.indexOf("minemapdatao:")}function getVersion(){return"v"+version.substr(version.indexOf(".")+1)}function replaceTempAccessToken(r){for(var t=0;t<r.length;t++)0===r[t].indexOf("access_token=tk.")&&(r[t]="access_token="+(config.ACCESS_TOKEN||""))}function parseUrl(r){var t=r.match(urlRe);if(!t){var a=/^\/\/([^\/?]+)(\/[^?]+)?\??(.+)?/,o=r.match(a);if(!o)throw new Error("Unable to parse URL object");return{protocol:"",authority:o[1],path:o[2]||"/",params:o[3]?o[3].split("&"):[]}}return{protocol:t[1],authority:t[2],path:t[3]||"/",params:t[4]?t[4].split("&"):[]}}function formatUrl(r){var t=r.params.length?"?"+r.params.join("&"):"";return r.protocol&&r.protocol.length>0?r.protocol+"://"+r.authority+r.path+t:window.document.location.protocol+"//"+r.authority+r.path+t}var config=_dereq_("./config"),browser=_dereq_("./browser"),version=_dereq_("../../package.json").version,help="参见minedata.cn帮助页面";exports.isMinemapURL=isMinemapURL,exports.normalizeStyleURL=function(r,t){if(!isMinemapURL(r))return r;var a=parseUrl(r);return a.path="/styles/v1"+a.path,makeAPIURL(a,t)},exports.normalizeGlyphsURL=function(r,t){if(!isMinemapURL(r)&&!config.fontsUrl)return r;var a=parseUrl(r);return config.fontsUrl&&config.fontsUrl+"/{fontstack}"+a.path.substr(a.path.lastIndexOf("/"))+".pbf"||config.SRC_URL+"fonts/{fontstack}/"+a.path.substr(a.path.lastIndexOf("/"))+".pbf"},exports.normalizeSourceURL=function(r,t){if(!isMinemapURL(r))return r;var a=parseUrl(r);return a.path="/v4/"+a.authority+".json",a.params.push("secure"),makeAPIURL(a,t)},exports.normalizeSpriteURL=function(r,t,a,o){if(!isMinemapURL(r)&&!config.spriteUrl){return r+""+t+a}var e=parseUrl(r);return e.path="/minemapapi/"+getVersion()+e.path+"/sprite"+t+a,config.spriteUrl&&config.spriteUrl+""+t+a||config.DOMAIN+e.path};var imageExtensionRe=/(\.(png|jpg)\d*)(?=$)/;exports.normalizeTileURL=function(r,t,a){if(!r||!isMinemapURL(r))return r.startsWith("//")?""+window.document.location.protocol+r:r;var o=parseUrl(r),e=browser.devicePixelRatio>=2||512===a?"@2x":"",i=browser.supportsWebp?".webp":"$1";return o.path=o.path.replace(imageExtensionRe,""+e+i),replaceTempAccessToken(o.params),makeAPIURL(o)};var urlRe=/^(\w+):\/\/([^\/?]+)(\/[^?]+)?\??(.+)?/;
},{"../../package.json":48,"./browser":222,"./config":226}],241:[function(_dereq_,module,exports){
"use strict";var isChar=_dereq_("./is_char_in_unicode_block");module.exports.allowsIdeographicBreaking=function(a){for(var i=0,r=a;i<r.length;i+=1){var s=r[i];if(!exports.charAllowsIdeographicBreaking(s.charCodeAt(0)))return!1}return!0},module.exports.allowsVerticalWritingMode=function(a){for(var i=0,r=a;i<r.length;i+=1){var s=r[i];if(exports.charHasUprightVerticalOrientation(s.charCodeAt(0)))return!0}return!1},module.exports.allowsLetterSpacing=function(a){for(var i=0,r=a;i<r.length;i+=1){var s=r[i];if(!exports.charAllowsLetterSpacing(s.charCodeAt(0)))return!1}return!0},module.exports.charAllowsLetterSpacing=function(a){return!isChar.Arabic(a)&&(!isChar["Arabic Supplement"](a)&&(!isChar["Arabic Extended-A"](a)&&(!isChar["Arabic Presentation Forms-A"](a)&&!isChar["Arabic Presentation Forms-B"](a))))},module.exports.charAllowsIdeographicBreaking=function(a){return!(a<11904)&&(!!isChar["Bopomofo Extended"](a)||(!!isChar.Bopomofo(a)||(!!isChar["CJK Compatibility Forms"](a)||(!!isChar["CJK Compatibility Ideographs"](a)||(!!isChar["CJK Compatibility"](a)||(!!isChar["CJK Radicals Supplement"](a)||(!!isChar["CJK Strokes"](a)||(!!isChar["CJK Symbols and Punctuation"](a)||(!!isChar["CJK Unified Ideographs Extension A"](a)||(!!isChar["CJK Unified Ideographs"](a)||(!!isChar["Enclosed CJK Letters and Months"](a)||(!!isChar["Halfwidth and Fullwidth Forms"](a)||(!!isChar.Hiragana(a)||(!!isChar["Ideographic Description Characters"](a)||(!!isChar["Kangxi Radicals"](a)||(!!isChar["Katakana Phonetic Extensions"](a)||(!!isChar.Katakana(a)||(!!isChar["Vertical Forms"](a)||(!!isChar["Yi Radicals"](a)||!!isChar["Yi Syllables"](a))))))))))))))))))))},exports.charHasUprightVerticalOrientation=function(a){return 746===a||747===a||!(a<4352)&&(!!isChar["Bopomofo Extended"](a)||(!!isChar.Bopomofo(a)||(!(!isChar["CJK Compatibility Forms"](a)||a>=65097&&a<=65103)||(!!isChar["CJK Compatibility Ideographs"](a)||(!!isChar["CJK Compatibility"](a)||(!!isChar["CJK Radicals Supplement"](a)||(!!isChar["CJK Strokes"](a)||(!(!isChar["CJK Symbols and Punctuation"](a)||a>=12296&&a<=12305||a>=12308&&a<=12319||12336===a)||(!!isChar["CJK Unified Ideographs Extension A"](a)||(!!isChar["CJK Unified Ideographs"](a)||(!!isChar["Enclosed CJK Letters and Months"](a)||(!!isChar["Hangul Compatibility Jamo"](a)||(!!isChar["Hangul Jamo Extended-A"](a)||(!!isChar["Hangul Jamo Extended-B"](a)||(!!isChar["Hangul Jamo"](a)||(!!isChar["Hangul Syllables"](a)||(!!isChar.Hiragana(a)||(!!isChar["Ideographic Description Characters"](a)||(!!isChar.Kanbun(a)||(!!isChar["Kangxi Radicals"](a)||(!!isChar["Katakana Phonetic Extensions"](a)||(!(!isChar.Katakana(a)||12540===a)||(!(!isChar["Halfwidth and Fullwidth Forms"](a)||65288===a||65289===a||65293===a||a>=65306&&a<=65310||65339===a||65341===a||65343===a||a>=65371&&a<=65503||65507===a||a>=65512&&a<=65519)||(!(!isChar["Small Form Variants"](a)||a>=65112&&a<=65118||a>=65123&&a<=65126)||(!!isChar["Unified Canadian Aboriginal Syllabics"](a)||(!!isChar["Unified Canadian Aboriginal Syllabics Extended"](a)||(!!isChar["Vertical Forms"](a)||(!!isChar["Yijing Hexagram Symbols"](a)||(!!isChar["Yi Syllables"](a)||!!isChar["Yi Radicals"](a))))))))))))))))))))))))))))))},exports.charHasNeutralVerticalOrientation=function(a){return!(!isChar["Latin-1 Supplement"](a)||167!==a&&169!==a&&174!==a&&177!==a&&188!==a&&189!==a&&190!==a&&215!==a&&247!==a)||(!(!isChar["General Punctuation"](a)||8214!==a&&8224!==a&&8225!==a&&8240!==a&&8241!==a&&8251!==a&&8252!==a&&8258!==a&&8263!==a&&8264!==a&&8265!==a&&8273!==a)||(!!isChar["Letterlike Symbols"](a)||(!!isChar["Number Forms"](a)||(!(!isChar["Miscellaneous Technical"](a)||!(a>=8960&&a<=8967||a>=8972&&a<=8991||a>=8996&&a<=9e3||9003===a||a>=9085&&a<=9114||a>=9150&&a<=9165||9167===a||a>=9169&&a<=9179||a>=9186&&a<=9215))||(!(!isChar["Control Pictures"](a)||9251===a)||(!!isChar["Optical Character Recognition"](a)||(!!isChar["Enclosed Alphanumerics"](a)||(!!isChar["Geometric Shapes"](a)||(!(!isChar["Miscellaneous Symbols"](a)||a>=9754&&a<=9759)||(!(!isChar["Miscellaneous Symbols and Arrows"](a)||!(a>=11026&&a<=11055||a>=11088&&a<=11097||a>=11192&&a<=11243))||(!!isChar["CJK Symbols and Punctuation"](a)||(!!isChar.Katakana(a)||(!!isChar["Private Use Area"](a)||(!!isChar["CJK Compatibility Forms"](a)||(!!isChar["Small Form Variants"](a)||(!!isChar["Halfwidth and Fullwidth Forms"](a)||(8734===a||8756===a||8757===a||a>=9984&&a<=10087||a>=10102&&a<=10131||65532===a||65533===a)))))))))))))))))},exports.charHasRotatedVerticalOrientation=function(a){return!(exports.charHasUprightVerticalOrientation(a)||exports.charHasNeutralVerticalOrientation(a))};
},{"./is_char_in_unicode_block":238}],242:[function(_dereq_,module,exports){
"use strict";var ajax=_dereq_("./ajax"),config=_dereq_("./config"),TOKEN_VALUE="25cc55a69ea7422182d00d6b7c0ffa93",joinParamToUrl=function(e){var r="";return e&&Object.keys(e).map(function(o){var a=e[o];"string"!=typeof a&&(a=JSON.stringify(a)),r+=o+"="+a+"&"}),r.endsWith("&")&&(r=r.substr(0,r.length-1)),r};exports.querySearchResultByType=function(e,r,o,a,t,n){var i={token:TOKEN_VALUE,adCode:e,searchType:o||"all",key:r,pageNumber:a||1,pageCount:t||10,source:3},s=config.DOMAIN+"/service/search/keyword?"+joinParamToUrl(i);return ajax.getJSON(s,n)},exports.queryAllSearchResult=function(e,r,o,a,t){return exports.querySearchResultByType(e,r,"all",o,a,t)},exports.queryPoiSearchResult=function(e,r,o,a,t){return exports.querySearchResultByType(e,r,"poi",o,a,t)},exports.queryPoiSearchResultByDataType=function(e,r,o,a,t,n){var i={token:TOKEN_VALUE,adCode:e,searchType:"poi",key:r,pageNumber:o||1,pageCount:a||10,source:3,dataType:t},s=config.DOMAIN+"/service/search/keyword?"+joinParamToUrl(i);return ajax.getJSON(s,n)},exports.queryRoadSearchResult=function(e,r,o,a,t){return exports.querySearchResultByType(e,r,"road",o,a,t)},exports.querySearchSurroundResult=function(e,r,o,a,t,n,i,s,u,c){var l={token:TOKEN_VALUE,adCode:e,searchType:o||"all",key:r,location:a,inRadius:1,spatialFuntion:t||"geofilt",radius:n||500,seq:i||0,source:3,pageNumber:s||1,pageCount:u||10},g=config.DOMAIN+"/service/search/surround?"+joinParamToUrl(l);return ajax.getJSON(g,c)},exports.querySearchBboxResult=function(e,r,o,a,t,n,i,s){var u={token:TOKEN_VALUE,adCode:e,searchType:o||"all",key:r,bounds:a,seq:t||0,source:1,pageNumber:n||1,pageCount:i||10},c=config.DOMAIN+"/service/search/bbox?"+joinParamToUrl(u);return ajax.getJSON(c,s)},exports.querySearchAroundResult=function(e,r,o,a,t){var n={token:TOKEN_VALUE,location:e,type:r||"poi",radius:o||1e3,count:a||5},i=config.DOMAIN+"/service/search/around?"+joinParamToUrl(n);return ajax.getJSON(i,t)},exports.queryRouteDrivingResult=function(e,r,o,a,t,n,i,s,u){var c={token:TOKEN_VALUE,sPoint:e,ePoint:r,wayPoints:o||null,shpFlag:a||0,costModel:t||16,numAlt:n||1,criteria:i||0,traffic:s||0,source:1},l=config.DOMAIN+"/service/route/driving?"+joinParamToUrl(c);return ajax.getJSON(l,u)},exports.queryRouteDrivingResult2=function(e,r,o,a,t,n,i,s,u){var c={token:TOKEN_VALUE,sPoint:e,ePoint:r,wayPoints:o||null,shpFlag:a||0,costModel:t||16,numAlt:n||1,criteria:i||0,traffic:s||0,source:3},l=config.DOMAIN+"/service/route/driving?"+joinParamToUrl(c);return ajax.getJSON(l,u)},exports.queryRouteBusResult=function(e,r,o,a,t,n,i){var s={token:TOKEN_VALUE,adCode:e,sPoint:r,ePoint:o,strategy:a||0,shpInfoFlag:t||0,showWalkInfo:n||0,source:1},u=config.DOMAIN+"/service/route/busTransfer?"+joinParamToUrl(s);return ajax.getJSON(u,i)},exports.queryRouteBusResult2=function(e,r,o,a,t,n,i){var s={token:TOKEN_VALUE,adCode:e,sPoint:r,ePoint:o,strategy:a||0,shpInfoFlag:t||0,showWalkInfo:n||0,source:3},u=config.DOMAIN+"/service/route/busTransfer?"+joinParamToUrl(s);return ajax.getJSON(u,i)},exports.queryAdminResultByPoint=function(e,r,o){var a={token:TOKEN_VALUE,location:e,geometry:r||0},t=config.DOMAIN+"/service/search/adminByPoint?"+joinParamToUrl(a);return ajax.getJSON(t,o)},exports.queryGeoCodingResult=function(e,r,o){var a={token:TOKEN_VALUE,adCode:e,address:r,source:3},t=config.DOMAIN+"/service/coder/geocoding?"+joinParamToUrl(a);return ajax.getJSON(t,o)},exports.queryReverseGeoCodingResult=function(e,r,o,a,t,n){var i={token:TOKEN_VALUE,location:e,type:r||1,radius:o||300,roadRadius:a||300,kind:t||0,source:3},s=config.DOMAIN+"/service/coder/reverseGeocoding?"+joinParamToUrl(i);return ajax.getJSON(s,n)},exports.querySmartTipsResult=function(e,r,o,a,t){var n={token:TOKEN_VALUE,adCode:e,input:r,searchType:o||"all",pageCount:a||10},i=config.DOMAIN+"/service/tips/smartTips?"+joinParamToUrl(n);return ajax.getJSON(i,t)},exports.searchNameByKey=function(e,r){if(e){var o=config.DOMAIN+"/service/searchnamebykey/"+e;return ajax.getJSON(o,r)}},exports.searchRoadByName=function(e,r){if(e){var o=config.DOMAIN+"/service/searchroadbyname/"+e;return ajax.getJSON(o,r)}},exports.searchTrafficJam=function(e,r,o){if(e&&r){var a=config.DOMAIN+"/service/searchtrafficjam/";return ajax.postJSON(a,{polygon:JSON.stringify(e),dis:r},o)}};
},{"./ajax":221,"./config":226}],243:[function(_dereq_,module,exports){
"use strict";var LngLat=_dereq_("../geo/lng_lat");module.exports=function(n,t,l){if(n=new LngLat(n.lng,n.lat),t){var a=new LngLat(n.lng-360,n.lat),i=new LngLat(n.lng+360,n.lat),o=l.locationPoint(n).distSqr(t);l.locationPoint(a).distSqr(t)<o?n=a:l.locationPoint(i).distSqr(t)<o&&(n=i)}for(;Math.abs(n.lng-l.center.lng)>180;){var e=l.locationPoint(n);if(e.x>=0&&e.y>=0&&e.x<=l.width&&e.y<=l.height)break;n.lng>l.center.lng?n.lng-=360:n.lng+=360}return n};
},{"../geo/lng_lat":83}],244:[function(_dereq_,module,exports){
"use strict";function createStructArrayType(t){var e=JSON.stringify(t);if(structArrayTypeCache[e])return structArrayTypeCache[e];var r=void 0===t.alignment?1:t.alignment,n=0,i=0,a=["Uint8"],o=t.members.map(function(t){a.indexOf(t.type)<0&&a.push(t.type);var e=sizeOf(t.type),o=n=align(n,Math.max(r,e)),s=t.components||1;return i=Math.max(i,e),n+=e*s,{name:t.name,type:t.type,components:s,offset:o}}),s=align(n,Math.max(i,r)),p=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(Struct);p.prototype.alignment=r,p.prototype.size=s;for(var y=0,c=o;y<c.length;y+=1)for(var h=c[y],u=0;u<h.components;u++){var f=h.name+(1===h.components?"":u);if(f in p.prototype)throw new Error(f+" is a reserved name and cannot be used as a member name.");Object.defineProperty(p.prototype,f,{get:createGetter(h,u),set:createSetter(h,u)})}var m=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(StructArray);return m.prototype.members=o,m.prototype.StructType=p,m.prototype.bytesPerElement=s,m.prototype.emplaceBack=createEmplaceBack(o,s),m.prototype._usedTypes=a,structArrayTypeCache[e]=m,m}function align(t,e){return Math.ceil(t/e)*e}function sizeOf(t){return viewTypes[t].BYTES_PER_ELEMENT}function getArrayViewName(t){return t.toLowerCase()}function createEmplaceBack(t,e){for(var r=[],n=[],i="var i = this.length;\nthis.resize(this.length + 1);\n",a=0,o=t;a<o.length;a+=1){var s=o[a],p=sizeOf(s.type);r.indexOf(p)<0&&(r.push(p),i+="var o"+p.toFixed(0)+" = i * "+(e/p).toFixed(0)+";\n");for(var y=0;y<s.components;y++){var c="v"+n.length,h="o"+p.toFixed(0)+" + "+(s.offset/p+y).toFixed(0);i+="this."+getArrayViewName(s.type)+"["+h+"] = "+c+";\n",n.push(c)}}return i+="return i;",new Function(n.toString(),i)}function createMemberComponentString(t,e){var r="this._pos"+sizeOf(t.type).toFixed(0),n=(t.offset/sizeOf(t.type)+e).toFixed(0),i=r+" + "+n;return"this._structArray."+getArrayViewName(t.type)+"["+i+"]"}function createGetter(t,e){return new Function("return "+createMemberComponentString(t,e)+";")}function createSetter(t,e){return new Function("x",createMemberComponentString(t,e)+" = x;")}module.exports=createStructArrayType;var viewTypes={Int8:Int8Array,Uint8:Uint8Array,Int16:Int16Array,Uint16:Uint16Array,Int32:Int32Array,Uint32:Uint32Array,Float32:Float32Array},Struct=function(t,e){this._structArray=t,this._pos1=e*this.size,this._pos2=this._pos1/2,this._pos4=this._pos1/4,this._pos8=this._pos1/8},DEFAULT_CAPACITY=128,RESIZE_MULTIPLIER=5,StructArray=function(t){this.isTransferred=!1,void 0!==t?(this.arrayBuffer=t.arrayBuffer,this.length=t.length,this.capacity=this.arrayBuffer.byteLength/this.bytesPerElement,this._refreshViews()):(this.capacity=-1,this.resize(0))};StructArray.serialize=function(){return{members:this.prototype.members,alignment:this.prototype.StructType.prototype.alignment,bytesPerElement:this.prototype.bytesPerElement}},StructArray.prototype.serialize=function(t){return this._trim(),t&&(this.isTransferred=!0,t.push(this.arrayBuffer)),{length:this.length,arrayBuffer:this.arrayBuffer}},StructArray.prototype.get=function(t){return new this.StructType(this,t)},StructArray.prototype._trim=function(){this.length!==this.capacity&&(this.capacity=this.length,this.arrayBuffer=this.arrayBuffer.slice(0,this.length*this.bytesPerElement),this._refreshViews())},StructArray.prototype.clear=function(){this.length=0},StructArray.prototype.resize=function(t){if(this.length=t,t>this.capacity){this.capacity=Math.max(t,Math.floor(this.capacity*RESIZE_MULTIPLIER),DEFAULT_CAPACITY),this.arrayBuffer=new ArrayBuffer(this.capacity*this.bytesPerElement);var e=this.uint8;this._refreshViews(),e&&this.uint8.set(e)}},StructArray.prototype._refreshViews=function(){for(var t=this,e=0,r=t._usedTypes;e<r.length;e+=1){var n=r[e];t[getArrayViewName(n)]=new viewTypes[n](t.arrayBuffer)}},StructArray.prototype.toArray=function(t,e){for(var r=this,n=[],i=t;i<e;i++){var a=r.get(i);n.push(a)}return n};var structArrayTypeCache={};
},{}],245:[function(_dereq_,module,exports){
"use strict";var browser=_dereq_("./browser"),Throttler=function(t,o){this.frequency=t,this.throttledFunction=o,this.lastInvocation=0};Throttler.prototype.invoke=function(){var t=this;if(!this.pendingInvocation){var o=0===this.lastInvocation?0:this.lastInvocation+this.frequency-browser.now();o<=0?(this.lastInvocation=browser.now(),this.throttledFunction()):this.pendingInvocation=setTimeout(function(){t.pendingInvocation=void 0,t.lastInvocation=browser.now(),t.throttledFunction()},o)}},Throttler.prototype.stop=function(){this.pendingInvocation&&(clearTimeout(this.pendingInvocation),this.pendingInvocation=void 0)},module.exports=Throttler;
},{"./browser":222}],246:[function(_dereq_,module,exports){
"use strict";function resolveTokens(e,n){return n.replace(/{([^{}]+)}/g,function(n,r){return r in e?e[r]:""})}module.exports=resolveTokens;
},{}],247:[function(_dereq_,module,exports){
"use strict";var UnitBezier=_dereq_("../@minemap/unitbezier"),Coordinate=_dereq_("../geo/coordinate"),Point=_dereq_("../@minemap/point-geometry");exports.easeCubicInOut=function(r){if(r<=0)return 0;if(r>=1)return 1;var e=r*r,n=e*r;return 4*(r<.5?n:3*(r-e)+n-.75)},exports.bezier=function(r,e,n,t){var o=new UnitBezier(r,e,n,t);return function(r){return o.solve(r)}},exports.ease=exports.bezier(.25,.1,.25,1),exports.clamp=function(r,e,n){return Math.min(n,Math.max(e,r))},exports.wrap=function(r,e,n){var t=n-e,o=((r-e)%t+t)%t+e;return o===e?n:o},exports.asyncAll=function(r,e,n){if(!r.length)return n(null,[]);var t=r.length,o=new Array(r.length),a=null;r.forEach(function(r,i){e(r,function(r,e){r&&(a=r),o[i]=e,0==--t&&n(a,o)})})},exports.values=function(r){var e=[];for(var n in r)e.push(r[n]);return e},exports.keysDifference=function(r,e){var n=[];for(var t in r)t in e||n.push(t);return n},exports.extend=function(r){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];for(var t=0,o=e;t<o.length;t+=1){var a=o[t];for(var i in a)r[i]=a[i]}return r},exports.pick=function(r,e){for(var n={},t=0;t<e.length;t++){var o=e[t];o in r&&(n[o]=r[o])}return n};var id=1;exports.uniqueId=function(){return id++},exports.bindAll=function(r,e){r.forEach(function(r){e[r]&&(e[r]=e[r].bind(e))})},exports.getCoordinatesCenter=function(r){for(var e=1/0,n=1/0,t=-1/0,o=-1/0,a=0;a<r.length;a++)e=Math.min(e,r[a].column),n=Math.min(n,r[a].row),t=Math.max(t,r[a].column),o=Math.max(o,r[a].row);var i=t-e,u=o-n,s=Math.max(i,u),c=Math.max(0,Math.floor(-Math.log(s)/Math.LN2));return new Coordinate((e+t)/2,(n+o)/2,0).zoomTo(c)},exports.endsWith=function(r,e){return-1!==r.indexOf(e,r.length-e.length)},exports.mapObject=function(r,e,n){var t=this,o={};for(var a in r)o[a]=e.call(n||t,r[a],a,r);return o},exports.filterObject=function(r,e,n){var t=this,o={};for(var a in r)e.call(n||t,r[a],a,r)&&(o[a]=r[a]);return o},exports.deepEqual=function(r,e){if(Array.isArray(r)){if(!Array.isArray(e)||r.length!==e.length)return!1;for(var n=0;n<r.length;n++)if(!exports.deepEqual(r[n],e[n]))return!1;return!0}if("object"==typeof r&&null!==r&&null!==e){if("object"!=typeof e)return!1;if(Object.keys(r).length!==Object.keys(e).length)return!1;for(var t in r)if(!exports.deepEqual(r[t],e[t]))return!1;return!0}return r===e},exports.clone=function(r){return Array.isArray(r)?r.map(exports.clone):"object"==typeof r&&r?exports.mapObject(r,exports.clone):r},exports.arraysIntersect=function(r,e){for(var n=0;n<r.length;n++)if(e.indexOf(r[n])>=0)return!0;return!1};var warnOnceHistory={};exports.warnOnce=function(r){warnOnceHistory[r]||("undefined"!=typeof console&&console.warn(r),warnOnceHistory[r]=!0)},exports.isCounterClockwise=function(r,e,n){return(n.y-r.y)*(e.x-r.x)>(e.y-r.y)*(n.x-r.x)},exports.calculateSignedArea=function(r){for(var e=0,n=0,t=r.length,o=t-1,a=void 0,i=void 0;n<t;o=n++)a=r[n],i=r[o],e+=(i.x-a.x)*(a.y+i.y);return e},exports.isClosedPolygon=function(r){if(r.length<4)return!1;var e=r[0],n=r[r.length-1];return!(Math.abs(e.x-n.x)>0||Math.abs(e.y-n.y)>0)&&Math.abs(exports.calculateSignedArea(r))>.01},exports.sphericalToCartesian=function(r){var e=r[0],n=r[1],t=r[2];return n+=90,n*=Math.PI/180,t*=Math.PI/180,[e*Math.cos(n)*Math.sin(t),e*Math.sin(n)*Math.sin(t),e*Math.cos(t)]},exports.parseCacheControl=function(r){var e=/(?:^|(?:\s*\,\s*))([^\x00-\x20\(\)<>@\,;\:\\"\/\[\]\?\=\{\}\x7F]+)(?:\=(?:([^\x00-\x20\(\)<>@\,;\:\\"\/\[\]\?\=\{\}\x7F]+)|(?:\"((?:[^"\\]|\\.)*)\")))?/g,n={};if(r.replace(e,function(r,e,t,o){var a=t||o;return n[e]=!a||a.toLowerCase(),""}),n["max-age"]){var t=parseInt(n["max-age"],10);isNaN(t)?delete n["max-age"]:n["max-age"]=t}return n};
},{"../@minemap/point-geometry":50,"../@minemap/unitbezier":53,"../geo/coordinate":82}],248:[function(_dereq_,module,exports){
"use strict";var Feature=function(e,t,r,o){this.type="Feature",this._vectorTileFeature=e,e._z=t,e._x=r,e._y=o,this.properties=e.properties,null!=e.id&&(this.id=e.id)},prototypeAccessors={geometry:{}};prototypeAccessors.geometry.get=function(){return void 0===this._geometry&&(this._geometry=this._vectorTileFeature.toGeoJSON(this._vectorTileFeature._x,this._vectorTileFeature._y,this._vectorTileFeature._z).geometry),this._geometry},prototypeAccessors.geometry.set=function(e){this._geometry=e},Feature.prototype.toJSON=function(){var e=this,t={geometry:this.geometry};for(var r in e)"_geometry"!==r&&"_vectorTileFeature"!==r&&(t[r]=e[r]);return t},Object.defineProperties(Feature.prototype,prototypeAccessors),module.exports=Feature;
},{}],249:[function(_dereq_,module,exports){
"use strict";var scriptDetection=_dereq_("./script_detection");module.exports=function(t){for(var o="",e=0;e<t.length;e++){var r=t.charCodeAt(e+1)||null,l=t.charCodeAt(e-1)||null;(!r||!scriptDetection.charHasRotatedVerticalOrientation(r)||module.exports.lookup[t[e+1]])&&(!l||!scriptDetection.charHasRotatedVerticalOrientation(l)||module.exports.lookup[t[e-1]])&&module.exports.lookup[t[e]]?o+=module.exports.lookup[t[e]]:o+=t[e]}return o},module.exports.lookup={"!":"︕","#":"#",$:"$","%":"%","&":"&","(":"︵",")":"︶","*":"*","+":"+",",":"︐","-":"︲",".":"・","/":"/",":":"︓",";":"︔","<":"︿","=":"=",">":"﹀","?":"︖","@":"@","[":"﹇","\\":"\","]":"﹈","^":"^",_:"︳","`":"`","{":"︷","|":"―","}":"︸","~":"~","¢":"¢","£":"£","¥":"¥","¦":"¦","¬":"¬","¯":" ̄","–":"︲","—":"︱","‘":"﹃","’":"﹄","“":"﹁","”":"﹂","…":"︙","‧":"・","₩":"₩","、":"︑","。":"︒","〈":"︿","〉":"﹀","《":"︽","》":"︾","「":"﹁","」":"﹂","『":"﹃","』":"﹄","【":"︻","】":"︼","〔":"︹","〕":"︺","〖":"︗","〗":"︘","!":"︕","(":"︵",")":"︶",",":"︐","-":"︲",".":"・",":":"︓",";":"︔","<":"︿",">":"﹀","?":"︖","[":"﹇","]":"﹈","_":"︳","{":"︷","|":"―","}":"︸","⦅":"︵","⦆":"︶","。":"︒","「":"﹁","」":"﹂"};
},{"./script_detection":241}],250:[function(_dereq_,module,exports){
"use strict";var WebWorker=_dereq_("./web_worker"),WorkerPool=function(){this.active={}};WorkerPool.prototype.acquire=function(r){var e=this;if(!this.workers){var o=_dereq_("../").workerCount;for(this.workers=[];this.workers.length<o;)e.workers.push(new WebWorker)}return this.active[r]=!0,this.workers.slice()},WorkerPool.prototype.release=function(r){delete this.active[r],0===Object.keys(this.active).length&&(this.workers.forEach(function(r){r.terminate()}),this.workers=null)},module.exports=WorkerPool;
},{"../":86,"./web_worker":223}]},{},[86])(86)
});
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。