shanxi.map.json 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827
  1. {
  2. "version": 8,
  3. "name": "Custom",
  4. "center": [
  5. 0,
  6. 0
  7. ],
  8. "zoom": 1,
  9. "bearing": 0,
  10. "pitch": 0,
  11. "sources": {
  12. "ne2_shaded": {
  13. "maxzoom": 6,
  14. "tileSize": 256,
  15. "tiles": [
  16. "https://tiles.openfreemap.org/natural_earth/ne2sr/{z}/{x}/{y}.png"
  17. ],
  18. "type": "raster"
  19. },
  20. "openmaptiles": {
  21. "type": "vector",
  22. "url": "https://tiles.openfreemap.org/planet"
  23. }
  24. },
  25. "sprite": "https://tiles.openfreemap.org/sprites/ofm_f384/ofm",
  26. "glyphs": "https://tiles.openfreemap.org/fonts/{fontstack}/{range}.pbf",
  27. "layers": [
  28. {
  29. "id": "background",
  30. "type": "background",
  31. "paint": {
  32. "background-color": "rgba(230, 243, 255, 1)"
  33. }
  34. },
  35. {
  36. "id": "landuse-residential",
  37. "type": "fill",
  38. "metadata": {
  39. "mapbox:group": "1444849388993.3071"
  40. },
  41. "source": "openmaptiles",
  42. "source-layer": "landuse",
  43. "filter": [
  44. "all",
  45. [
  46. "in",
  47. "class",
  48. "residential",
  49. "suburb",
  50. "neighbourhood"
  51. ]
  52. ],
  53. "layout": {
  54. "visibility": "visible"
  55. },
  56. "paint": {
  57. "fill-color": {
  58. "base": 1,
  59. "stops": [
  60. [
  61. 12,
  62. "hsla(30, 19%, 90%, 0.4)"
  63. ],
  64. [
  65. 16,
  66. "hsla(30, 19%, 90%, 0.2)"
  67. ]
  68. ]
  69. }
  70. }
  71. },
  72. {
  73. "id": "landuse-commercial",
  74. "type": "fill",
  75. "metadata": {
  76. "mapbox:group": "1444849388993.3071"
  77. },
  78. "source": "openmaptiles",
  79. "source-layer": "landuse",
  80. "filter": [
  81. "all",
  82. [
  83. "==",
  84. "$type",
  85. "Polygon"
  86. ],
  87. [
  88. "==",
  89. "class",
  90. "commercial"
  91. ]
  92. ],
  93. "layout": {
  94. "visibility": "visible"
  95. },
  96. "paint": {
  97. "fill-color": "hsla(0, 60%, 87%, 0.23)"
  98. }
  99. },
  100. {
  101. "id": "landuse-industrial",
  102. "type": "fill",
  103. "source": "openmaptiles",
  104. "source-layer": "landuse",
  105. "filter": [
  106. "all",
  107. [
  108. "==",
  109. "$type",
  110. "Polygon"
  111. ],
  112. [
  113. "in",
  114. "class",
  115. "industrial",
  116. "garages",
  117. "dam"
  118. ]
  119. ],
  120. "layout": {
  121. "visibility": "visible"
  122. },
  123. "paint": {
  124. "fill-color": "hsla(49, 100%, 88%, 0.34)"
  125. }
  126. },
  127. {
  128. "id": "landuse-cemetery",
  129. "type": "fill",
  130. "metadata": {
  131. "mapbox:group": "1444849388993.3071"
  132. },
  133. "source": "openmaptiles",
  134. "source-layer": "landuse",
  135. "filter": [
  136. "==",
  137. "class",
  138. "cemetery"
  139. ],
  140. "paint": {
  141. "fill-color": "#e0e4dd"
  142. }
  143. },
  144. {
  145. "id": "landuse-hospital",
  146. "type": "fill",
  147. "metadata": {
  148. "mapbox:group": "1444849388993.3071"
  149. },
  150. "source": "openmaptiles",
  151. "source-layer": "landuse",
  152. "filter": [
  153. "==",
  154. "class",
  155. "hospital"
  156. ],
  157. "paint": {
  158. "fill-color": "#fde"
  159. }
  160. },
  161. {
  162. "id": "landuse-school",
  163. "type": "fill",
  164. "metadata": {
  165. "mapbox:group": "1444849388993.3071"
  166. },
  167. "source": "openmaptiles",
  168. "source-layer": "landuse",
  169. "filter": [
  170. "==",
  171. "class",
  172. "school"
  173. ],
  174. "paint": {
  175. "fill-color": "#f0e8f8"
  176. }
  177. },
  178. {
  179. "id": "landuse-railway",
  180. "type": "fill",
  181. "metadata": {
  182. "mapbox:group": "1444849388993.3071"
  183. },
  184. "source": "openmaptiles",
  185. "source-layer": "landuse",
  186. "filter": [
  187. "==",
  188. "class",
  189. "railway"
  190. ],
  191. "layout": {
  192. "visibility": "visible"
  193. },
  194. "paint": {
  195. "fill-color": "hsla(30, 19%, 90%, 0.4)"
  196. }
  197. },
  198. {
  199. "id": "landcover-wood",
  200. "type": "fill",
  201. "metadata": {
  202. "mapbox:group": "1444849388993.3071"
  203. },
  204. "source": "openmaptiles",
  205. "source-layer": "landcover",
  206. "filter": [
  207. "==",
  208. "class",
  209. "wood"
  210. ],
  211. "layout": {
  212. "visibility": "none"
  213. },
  214. "paint": {
  215. "fill-antialias": {
  216. "base": 1,
  217. "stops": [
  218. [
  219. 0,
  220. false
  221. ],
  222. [
  223. 9,
  224. true
  225. ]
  226. ]
  227. },
  228. "fill-color": "#6a4",
  229. "fill-opacity": 0.1,
  230. "fill-outline-color": "hsla(0, 0%, 0%, 0.03)"
  231. }
  232. },
  233. {
  234. "id": "landcover-grass",
  235. "type": "fill",
  236. "metadata": {
  237. "mapbox:group": "1444849388993.3071"
  238. },
  239. "source": "openmaptiles",
  240. "source-layer": "landcover",
  241. "filter": [
  242. "==",
  243. "class",
  244. "grass"
  245. ],
  246. "layout": {
  247. "visibility": "none"
  248. },
  249. "paint": {
  250. "fill-color": "#d8e8c8",
  251. "fill-opacity": 1
  252. }
  253. },
  254. {
  255. "id": "landcover-grass-park",
  256. "type": "fill",
  257. "metadata": {
  258. "mapbox:group": "1444849388993.3071"
  259. },
  260. "source": "openmaptiles",
  261. "source-layer": "park",
  262. "filter": [
  263. "==",
  264. "class",
  265. "public_park"
  266. ],
  267. "layout": {
  268. "visibility": "none"
  269. },
  270. "paint": {
  271. "fill-color": "#d8e8c8",
  272. "fill-opacity": 0.8
  273. }
  274. },
  275. {
  276. "id": "waterway_tunnel",
  277. "type": "line",
  278. "source": "openmaptiles",
  279. "source-layer": "waterway",
  280. "minzoom": 14,
  281. "filter": [
  282. "all",
  283. [
  284. "in",
  285. "class",
  286. "river",
  287. "stream",
  288. "canal"
  289. ],
  290. [
  291. "==",
  292. "brunnel",
  293. "tunnel"
  294. ]
  295. ],
  296. "layout": {
  297. "line-cap": "round",
  298. "visibility": "visible"
  299. },
  300. "paint": {
  301. "line-color": "#a0c8f0",
  302. "line-dasharray": [
  303. 2,
  304. 4
  305. ],
  306. "line-width": {
  307. "base": 1.3,
  308. "stops": [
  309. [
  310. 13,
  311. 0.5
  312. ],
  313. [
  314. 20,
  315. 6
  316. ]
  317. ]
  318. }
  319. }
  320. },
  321. {
  322. "id": "waterway-other",
  323. "type": "line",
  324. "metadata": {
  325. "mapbox:group": "1444849382550.77"
  326. },
  327. "source": "openmaptiles",
  328. "source-layer": "waterway",
  329. "filter": [
  330. "all",
  331. [
  332. "!in",
  333. "class",
  334. "canal",
  335. "river",
  336. "stream"
  337. ],
  338. [
  339. "==",
  340. "intermittent",
  341. 0
  342. ]
  343. ],
  344. "layout": {
  345. "line-cap": "round",
  346. "visibility": "visible"
  347. },
  348. "paint": {
  349. "line-color": "#a0c8f0",
  350. "line-width": {
  351. "base": 1.3,
  352. "stops": [
  353. [
  354. 13,
  355. 0.5
  356. ],
  357. [
  358. 20,
  359. 2
  360. ]
  361. ]
  362. }
  363. }
  364. },
  365. {
  366. "id": "waterway-other-intermittent",
  367. "type": "line",
  368. "metadata": {
  369. "mapbox:group": "1444849382550.77"
  370. },
  371. "source": "openmaptiles",
  372. "source-layer": "waterway",
  373. "filter": [
  374. "all",
  375. [
  376. "!in",
  377. "class",
  378. "canal",
  379. "river",
  380. "stream"
  381. ],
  382. [
  383. "==",
  384. "intermittent",
  385. 1
  386. ]
  387. ],
  388. "layout": {
  389. "line-cap": "round",
  390. "visibility": "visible"
  391. },
  392. "paint": {
  393. "line-color": "#a0c8f0",
  394. "line-dasharray": [
  395. 4,
  396. 3
  397. ],
  398. "line-width": {
  399. "base": 1.3,
  400. "stops": [
  401. [
  402. 13,
  403. 0.5
  404. ],
  405. [
  406. 20,
  407. 2
  408. ]
  409. ]
  410. }
  411. }
  412. },
  413. {
  414. "id": "waterway-stream-canal",
  415. "type": "line",
  416. "metadata": {
  417. "mapbox:group": "1444849382550.77"
  418. },
  419. "source": "openmaptiles",
  420. "source-layer": "waterway",
  421. "filter": [
  422. "all",
  423. [
  424. "in",
  425. "class",
  426. "canal",
  427. "stream"
  428. ],
  429. [
  430. "!=",
  431. "brunnel",
  432. "tunnel"
  433. ],
  434. [
  435. "==",
  436. "intermittent",
  437. 0
  438. ]
  439. ],
  440. "layout": {
  441. "line-cap": "round",
  442. "visibility": "visible"
  443. },
  444. "paint": {
  445. "line-color": "#a0c8f0",
  446. "line-width": {
  447. "base": 1.3,
  448. "stops": [
  449. [
  450. 13,
  451. 0.5
  452. ],
  453. [
  454. 20,
  455. 6
  456. ]
  457. ]
  458. }
  459. }
  460. },
  461. {
  462. "id": "waterway-stream-canal-intermittent",
  463. "type": "line",
  464. "metadata": {
  465. "mapbox:group": "1444849382550.77"
  466. },
  467. "source": "openmaptiles",
  468. "source-layer": "waterway",
  469. "filter": [
  470. "all",
  471. [
  472. "in",
  473. "class",
  474. "canal",
  475. "stream"
  476. ],
  477. [
  478. "!=",
  479. "brunnel",
  480. "tunnel"
  481. ],
  482. [
  483. "==",
  484. "intermittent",
  485. 1
  486. ]
  487. ],
  488. "layout": {
  489. "line-cap": "round",
  490. "visibility": "visible"
  491. },
  492. "paint": {
  493. "line-color": "#a0c8f0",
  494. "line-dasharray": [
  495. 4,
  496. 3
  497. ],
  498. "line-width": {
  499. "base": 1.3,
  500. "stops": [
  501. [
  502. 13,
  503. 0.5
  504. ],
  505. [
  506. 20,
  507. 6
  508. ]
  509. ]
  510. }
  511. }
  512. },
  513. {
  514. "id": "waterway-river",
  515. "type": "line",
  516. "metadata": {
  517. "mapbox:group": "1444849382550.77"
  518. },
  519. "source": "openmaptiles",
  520. "source-layer": "waterway",
  521. "filter": [
  522. "all",
  523. [
  524. "==",
  525. "class",
  526. "river"
  527. ],
  528. [
  529. "!=",
  530. "brunnel",
  531. "tunnel"
  532. ],
  533. [
  534. "==",
  535. "intermittent",
  536. 0
  537. ]
  538. ],
  539. "layout": {
  540. "line-cap": "round",
  541. "visibility": "visible"
  542. },
  543. "paint": {
  544. "line-color": "#a0c8f0",
  545. "line-width": {
  546. "base": 1.2,
  547. "stops": [
  548. [
  549. 10,
  550. 0.8
  551. ],
  552. [
  553. 20,
  554. 6
  555. ]
  556. ]
  557. }
  558. }
  559. },
  560. {
  561. "id": "waterway-river-intermittent",
  562. "type": "line",
  563. "metadata": {
  564. "mapbox:group": "1444849382550.77"
  565. },
  566. "source": "openmaptiles",
  567. "source-layer": "waterway",
  568. "filter": [
  569. "all",
  570. [
  571. "==",
  572. "class",
  573. "river"
  574. ],
  575. [
  576. "!=",
  577. "brunnel",
  578. "tunnel"
  579. ],
  580. [
  581. "==",
  582. "intermittent",
  583. 1
  584. ]
  585. ],
  586. "layout": {
  587. "line-cap": "round",
  588. "visibility": "visible"
  589. },
  590. "paint": {
  591. "line-color": "#a0c8f0",
  592. "line-dasharray": [
  593. 3,
  594. 2.5
  595. ],
  596. "line-width": {
  597. "base": 1.2,
  598. "stops": [
  599. [
  600. 10,
  601. 0.8
  602. ],
  603. [
  604. 20,
  605. 6
  606. ]
  607. ]
  608. }
  609. }
  610. },
  611. {
  612. "id": "water-offset",
  613. "type": "fill",
  614. "metadata": {
  615. "mapbox:group": "1444849382550.77"
  616. },
  617. "source": "openmaptiles",
  618. "source-layer": "water",
  619. "maxzoom": 8,
  620. "filter": [
  621. "==",
  622. "$type",
  623. "Polygon"
  624. ],
  625. "layout": {
  626. "visibility": "visible"
  627. },
  628. "paint": {
  629. "fill-color": "#a0c8f0",
  630. "fill-opacity": 1,
  631. "fill-translate": {
  632. "base": 1,
  633. "stops": [
  634. [
  635. 6,
  636. [
  637. 2,
  638. 0
  639. ]
  640. ],
  641. [
  642. 8,
  643. [
  644. 0,
  645. 0
  646. ]
  647. ]
  648. ]
  649. }
  650. }
  651. },
  652. {
  653. "id": "water",
  654. "type": "fill",
  655. "metadata": {
  656. "mapbox:group": "1444849382550.77"
  657. },
  658. "source": "openmaptiles",
  659. "source-layer": "water",
  660. "filter": [
  661. "all",
  662. [
  663. "!=",
  664. "intermittent",
  665. 1
  666. ],
  667. [
  668. "!=",
  669. "brunnel",
  670. "tunnel"
  671. ]
  672. ],
  673. "layout": {
  674. "visibility": "visible"
  675. },
  676. "paint": {
  677. "fill-color": "rgba(255, 255, 255, 1)"
  678. }
  679. },
  680. {
  681. "id": "water-intermittent",
  682. "type": "fill",
  683. "metadata": {
  684. "mapbox:group": "1444849382550.77"
  685. },
  686. "source": "openmaptiles",
  687. "source-layer": "water",
  688. "filter": [
  689. "all",
  690. [
  691. "==",
  692. "intermittent",
  693. 1
  694. ]
  695. ],
  696. "layout": {
  697. "visibility": "visible"
  698. },
  699. "paint": {
  700. "fill-color": "hsl(210, 67%, 85%)",
  701. "fill-opacity": 0.7
  702. }
  703. },
  704. {
  705. "id": "water-pattern",
  706. "type": "fill",
  707. "metadata": {
  708. "mapbox:group": "1444849382550.77"
  709. },
  710. "source": "openmaptiles",
  711. "source-layer": "water",
  712. "filter": [
  713. "all"
  714. ],
  715. "layout": {
  716. "visibility": "visible"
  717. },
  718. "paint": {
  719. "fill-pattern": "wave",
  720. "fill-translate": [
  721. 0,
  722. 2.5
  723. ]
  724. }
  725. },
  726. {
  727. "id": "tunnel-service-track-casing",
  728. "type": "line",
  729. "metadata": {
  730. "mapbox:group": "1444849354174.1904"
  731. },
  732. "source": "openmaptiles",
  733. "source-layer": "transportation",
  734. "filter": [
  735. "all",
  736. [
  737. "==",
  738. "brunnel",
  739. "tunnel"
  740. ],
  741. [
  742. "in",
  743. "class",
  744. "service",
  745. "track"
  746. ]
  747. ],
  748. "layout": {
  749. "line-join": "round"
  750. },
  751. "paint": {
  752. "line-color": "#cfcdca",
  753. "line-dasharray": [
  754. 0.5,
  755. 0.25
  756. ],
  757. "line-width": {
  758. "base": 1.2,
  759. "stops": [
  760. [
  761. 15,
  762. 1
  763. ],
  764. [
  765. 16,
  766. 4
  767. ],
  768. [
  769. 20,
  770. 11
  771. ]
  772. ]
  773. }
  774. }
  775. },
  776. {
  777. "id": "tunnel-minor-casing",
  778. "type": "line",
  779. "metadata": {
  780. "mapbox:group": "1444849354174.1904"
  781. },
  782. "source": "openmaptiles",
  783. "source-layer": "transportation",
  784. "filter": [
  785. "all",
  786. [
  787. "==",
  788. "brunnel",
  789. "tunnel"
  790. ],
  791. [
  792. "==",
  793. "class",
  794. "minor"
  795. ]
  796. ],
  797. "layout": {
  798. "line-join": "round"
  799. },
  800. "paint": {
  801. "line-color": "#cfcdca",
  802. "line-opacity": {
  803. "stops": [
  804. [
  805. 12,
  806. 0
  807. ],
  808. [
  809. 12.5,
  810. 1
  811. ]
  812. ]
  813. },
  814. "line-width": {
  815. "base": 1.2,
  816. "stops": [
  817. [
  818. 12,
  819. 0.5
  820. ],
  821. [
  822. 13,
  823. 1
  824. ],
  825. [
  826. 14,
  827. 4
  828. ],
  829. [
  830. 20,
  831. 15
  832. ]
  833. ]
  834. }
  835. }
  836. },
  837. {
  838. "id": "tunnel-secondary-tertiary-casing",
  839. "type": "line",
  840. "metadata": {
  841. "mapbox:group": "1444849354174.1904"
  842. },
  843. "source": "openmaptiles",
  844. "source-layer": "transportation",
  845. "filter": [
  846. "all",
  847. [
  848. "==",
  849. "brunnel",
  850. "tunnel"
  851. ],
  852. [
  853. "in",
  854. "class",
  855. "secondary",
  856. "tertiary"
  857. ]
  858. ],
  859. "layout": {
  860. "line-join": "round"
  861. },
  862. "paint": {
  863. "line-color": "#e9ac77",
  864. "line-opacity": 1,
  865. "line-width": {
  866. "base": 1.2,
  867. "stops": [
  868. [
  869. 8,
  870. 1.5
  871. ],
  872. [
  873. 20,
  874. 17
  875. ]
  876. ]
  877. }
  878. }
  879. },
  880. {
  881. "id": "tunnel-trunk-primary-casing",
  882. "type": "line",
  883. "metadata": {
  884. "mapbox:group": "1444849354174.1904"
  885. },
  886. "source": "openmaptiles",
  887. "source-layer": "transportation",
  888. "filter": [
  889. "all",
  890. [
  891. "==",
  892. "brunnel",
  893. "tunnel"
  894. ],
  895. [
  896. "in",
  897. "class",
  898. "primary",
  899. "trunk"
  900. ]
  901. ],
  902. "layout": {
  903. "line-join": "round"
  904. },
  905. "paint": {
  906. "line-color": "#e9ac77",
  907. "line-width": {
  908. "base": 1.2,
  909. "stops": [
  910. [
  911. 5,
  912. 0.4
  913. ],
  914. [
  915. 6,
  916. 0.6
  917. ],
  918. [
  919. 7,
  920. 1.5
  921. ],
  922. [
  923. 20,
  924. 22
  925. ]
  926. ]
  927. }
  928. }
  929. },
  930. {
  931. "id": "tunnel-motorway-casing",
  932. "type": "line",
  933. "metadata": {
  934. "mapbox:group": "1444849354174.1904"
  935. },
  936. "source": "openmaptiles",
  937. "source-layer": "transportation",
  938. "filter": [
  939. "all",
  940. [
  941. "==",
  942. "brunnel",
  943. "tunnel"
  944. ],
  945. [
  946. "==",
  947. "class",
  948. "motorway"
  949. ]
  950. ],
  951. "layout": {
  952. "line-join": "round",
  953. "visibility": "visible"
  954. },
  955. "paint": {
  956. "line-color": "#e9ac77",
  957. "line-dasharray": [
  958. 0.5,
  959. 0.25
  960. ],
  961. "line-width": {
  962. "base": 1.2,
  963. "stops": [
  964. [
  965. 5,
  966. 0.4
  967. ],
  968. [
  969. 6,
  970. 0.6
  971. ],
  972. [
  973. 7,
  974. 1.5
  975. ],
  976. [
  977. 20,
  978. 22
  979. ]
  980. ]
  981. }
  982. }
  983. },
  984. {
  985. "id": "tunnel-path",
  986. "type": "line",
  987. "metadata": {
  988. "mapbox:group": "1444849354174.1904"
  989. },
  990. "source": "openmaptiles",
  991. "source-layer": "transportation",
  992. "filter": [
  993. "all",
  994. [
  995. "==",
  996. "$type",
  997. "LineString"
  998. ],
  999. [
  1000. "all",
  1001. [
  1002. "==",
  1003. "brunnel",
  1004. "tunnel"
  1005. ],
  1006. [
  1007. "==",
  1008. "class",
  1009. "path"
  1010. ]
  1011. ]
  1012. ],
  1013. "paint": {
  1014. "line-color": "#cba",
  1015. "line-dasharray": [
  1016. 1.5,
  1017. 0.75
  1018. ],
  1019. "line-width": {
  1020. "base": 1.2,
  1021. "stops": [
  1022. [
  1023. 15,
  1024. 1.2
  1025. ],
  1026. [
  1027. 20,
  1028. 4
  1029. ]
  1030. ]
  1031. }
  1032. }
  1033. },
  1034. {
  1035. "id": "tunnel-service-track",
  1036. "type": "line",
  1037. "metadata": {
  1038. "mapbox:group": "1444849354174.1904"
  1039. },
  1040. "source": "openmaptiles",
  1041. "source-layer": "transportation",
  1042. "filter": [
  1043. "all",
  1044. [
  1045. "==",
  1046. "brunnel",
  1047. "tunnel"
  1048. ],
  1049. [
  1050. "in",
  1051. "class",
  1052. "service",
  1053. "track"
  1054. ]
  1055. ],
  1056. "layout": {
  1057. "line-join": "round"
  1058. },
  1059. "paint": {
  1060. "line-color": "#fff",
  1061. "line-width": {
  1062. "base": 1.2,
  1063. "stops": [
  1064. [
  1065. 15.5,
  1066. 0
  1067. ],
  1068. [
  1069. 16,
  1070. 2
  1071. ],
  1072. [
  1073. 20,
  1074. 7.5
  1075. ]
  1076. ]
  1077. }
  1078. }
  1079. },
  1080. {
  1081. "id": "tunnel-minor",
  1082. "type": "line",
  1083. "metadata": {
  1084. "mapbox:group": "1444849354174.1904"
  1085. },
  1086. "source": "openmaptiles",
  1087. "source-layer": "transportation",
  1088. "filter": [
  1089. "all",
  1090. [
  1091. "==",
  1092. "brunnel",
  1093. "tunnel"
  1094. ],
  1095. [
  1096. "==",
  1097. "class",
  1098. "minor_road"
  1099. ]
  1100. ],
  1101. "layout": {
  1102. "line-join": "round"
  1103. },
  1104. "paint": {
  1105. "line-color": "#fff",
  1106. "line-opacity": 1,
  1107. "line-width": {
  1108. "base": 1.2,
  1109. "stops": [
  1110. [
  1111. 13.5,
  1112. 0
  1113. ],
  1114. [
  1115. 14,
  1116. 2.5
  1117. ],
  1118. [
  1119. 20,
  1120. 11.5
  1121. ]
  1122. ]
  1123. }
  1124. }
  1125. },
  1126. {
  1127. "id": "tunnel-secondary-tertiary",
  1128. "type": "line",
  1129. "metadata": {
  1130. "mapbox:group": "1444849354174.1904"
  1131. },
  1132. "source": "openmaptiles",
  1133. "source-layer": "transportation",
  1134. "filter": [
  1135. "all",
  1136. [
  1137. "==",
  1138. "brunnel",
  1139. "tunnel"
  1140. ],
  1141. [
  1142. "in",
  1143. "class",
  1144. "secondary",
  1145. "tertiary"
  1146. ]
  1147. ],
  1148. "layout": {
  1149. "line-join": "round"
  1150. },
  1151. "paint": {
  1152. "line-color": "#fff4c6",
  1153. "line-width": {
  1154. "base": 1.2,
  1155. "stops": [
  1156. [
  1157. 6.5,
  1158. 0
  1159. ],
  1160. [
  1161. 7,
  1162. 0.5
  1163. ],
  1164. [
  1165. 20,
  1166. 10
  1167. ]
  1168. ]
  1169. }
  1170. }
  1171. },
  1172. {
  1173. "id": "tunnel-trunk-primary",
  1174. "type": "line",
  1175. "metadata": {
  1176. "mapbox:group": "1444849354174.1904"
  1177. },
  1178. "source": "openmaptiles",
  1179. "source-layer": "transportation",
  1180. "filter": [
  1181. "all",
  1182. [
  1183. "==",
  1184. "brunnel",
  1185. "tunnel"
  1186. ],
  1187. [
  1188. "in",
  1189. "class",
  1190. "primary",
  1191. "trunk"
  1192. ]
  1193. ],
  1194. "layout": {
  1195. "line-join": "round"
  1196. },
  1197. "paint": {
  1198. "line-color": "#fff4c6",
  1199. "line-width": {
  1200. "base": 1.2,
  1201. "stops": [
  1202. [
  1203. 6.5,
  1204. 0
  1205. ],
  1206. [
  1207. 7,
  1208. 0.5
  1209. ],
  1210. [
  1211. 20,
  1212. 18
  1213. ]
  1214. ]
  1215. }
  1216. }
  1217. },
  1218. {
  1219. "id": "tunnel-motorway",
  1220. "type": "line",
  1221. "metadata": {
  1222. "mapbox:group": "1444849354174.1904"
  1223. },
  1224. "source": "openmaptiles",
  1225. "source-layer": "transportation",
  1226. "filter": [
  1227. "all",
  1228. [
  1229. "==",
  1230. "brunnel",
  1231. "tunnel"
  1232. ],
  1233. [
  1234. "==",
  1235. "class",
  1236. "motorway"
  1237. ]
  1238. ],
  1239. "layout": {
  1240. "line-join": "round",
  1241. "visibility": "visible"
  1242. },
  1243. "paint": {
  1244. "line-color": "#ffdaa6",
  1245. "line-width": {
  1246. "base": 1.2,
  1247. "stops": [
  1248. [
  1249. 6.5,
  1250. 0
  1251. ],
  1252. [
  1253. 7,
  1254. 0.5
  1255. ],
  1256. [
  1257. 20,
  1258. 18
  1259. ]
  1260. ]
  1261. }
  1262. }
  1263. },
  1264. {
  1265. "id": "tunnel-railway",
  1266. "type": "line",
  1267. "metadata": {
  1268. "mapbox:group": "1444849354174.1904"
  1269. },
  1270. "source": "openmaptiles",
  1271. "source-layer": "transportation",
  1272. "filter": [
  1273. "all",
  1274. [
  1275. "==",
  1276. "brunnel",
  1277. "tunnel"
  1278. ],
  1279. [
  1280. "==",
  1281. "class",
  1282. "rail"
  1283. ]
  1284. ],
  1285. "paint": {
  1286. "line-color": "#bbb",
  1287. "line-dasharray": [
  1288. 2,
  1289. 2
  1290. ],
  1291. "line-width": {
  1292. "base": 1.4,
  1293. "stops": [
  1294. [
  1295. 14,
  1296. 0.4
  1297. ],
  1298. [
  1299. 15,
  1300. 0.75
  1301. ],
  1302. [
  1303. 20,
  1304. 2
  1305. ]
  1306. ]
  1307. }
  1308. }
  1309. },
  1310. {
  1311. "id": "ferry",
  1312. "type": "line",
  1313. "source": "openmaptiles",
  1314. "source-layer": "transportation",
  1315. "filter": [
  1316. "all",
  1317. [
  1318. "in",
  1319. "class",
  1320. "ferry"
  1321. ]
  1322. ],
  1323. "layout": {
  1324. "line-join": "round",
  1325. "visibility": "visible"
  1326. },
  1327. "paint": {
  1328. "line-color": "rgba(108, 159, 182, 1)",
  1329. "line-dasharray": [
  1330. 2,
  1331. 2
  1332. ],
  1333. "line-width": 1.1
  1334. }
  1335. },
  1336. {
  1337. "id": "aeroway-taxiway-casing",
  1338. "type": "line",
  1339. "metadata": {
  1340. "mapbox:group": "1444849345966.4436"
  1341. },
  1342. "source": "openmaptiles",
  1343. "source-layer": "aeroway",
  1344. "minzoom": 12,
  1345. "filter": [
  1346. "all",
  1347. [
  1348. "in",
  1349. "class",
  1350. "taxiway"
  1351. ]
  1352. ],
  1353. "layout": {
  1354. "line-cap": "round",
  1355. "line-join": "round",
  1356. "visibility": "visible"
  1357. },
  1358. "paint": {
  1359. "line-color": "rgba(153, 153, 153, 1)",
  1360. "line-opacity": 1,
  1361. "line-width": {
  1362. "base": 1.5,
  1363. "stops": [
  1364. [
  1365. 11,
  1366. 2
  1367. ],
  1368. [
  1369. 17,
  1370. 12
  1371. ]
  1372. ]
  1373. }
  1374. }
  1375. },
  1376. {
  1377. "id": "aeroway-runway-casing",
  1378. "type": "line",
  1379. "metadata": {
  1380. "mapbox:group": "1444849345966.4436"
  1381. },
  1382. "source": "openmaptiles",
  1383. "source-layer": "aeroway",
  1384. "minzoom": 12,
  1385. "filter": [
  1386. "all",
  1387. [
  1388. "in",
  1389. "class",
  1390. "runway"
  1391. ]
  1392. ],
  1393. "layout": {
  1394. "line-cap": "round",
  1395. "line-join": "round",
  1396. "visibility": "visible"
  1397. },
  1398. "paint": {
  1399. "line-color": "rgba(153, 153, 153, 1)",
  1400. "line-opacity": 1,
  1401. "line-width": {
  1402. "base": 1.5,
  1403. "stops": [
  1404. [
  1405. 11,
  1406. 5
  1407. ],
  1408. [
  1409. 17,
  1410. 55
  1411. ]
  1412. ]
  1413. }
  1414. }
  1415. },
  1416. {
  1417. "id": "aeroway-area",
  1418. "type": "fill",
  1419. "metadata": {
  1420. "mapbox:group": "1444849345966.4436"
  1421. },
  1422. "source": "openmaptiles",
  1423. "source-layer": "aeroway",
  1424. "minzoom": 4,
  1425. "filter": [
  1426. "all",
  1427. [
  1428. "==",
  1429. "$type",
  1430. "Polygon"
  1431. ],
  1432. [
  1433. "in",
  1434. "class",
  1435. "runway",
  1436. "taxiway"
  1437. ]
  1438. ],
  1439. "layout": {
  1440. "visibility": "visible"
  1441. },
  1442. "paint": {
  1443. "fill-color": "rgba(255, 255, 255, 1)",
  1444. "fill-opacity": {
  1445. "base": 1,
  1446. "stops": [
  1447. [
  1448. 13,
  1449. 0
  1450. ],
  1451. [
  1452. 14,
  1453. 1
  1454. ]
  1455. ]
  1456. }
  1457. }
  1458. },
  1459. {
  1460. "id": "aeroway-taxiway",
  1461. "type": "line",
  1462. "metadata": {
  1463. "mapbox:group": "1444849345966.4436"
  1464. },
  1465. "source": "openmaptiles",
  1466. "source-layer": "aeroway",
  1467. "minzoom": 4,
  1468. "filter": [
  1469. "all",
  1470. [
  1471. "in",
  1472. "class",
  1473. "taxiway"
  1474. ],
  1475. [
  1476. "==",
  1477. "$type",
  1478. "LineString"
  1479. ]
  1480. ],
  1481. "layout": {
  1482. "line-cap": "round",
  1483. "line-join": "round",
  1484. "visibility": "visible"
  1485. },
  1486. "paint": {
  1487. "line-color": "rgba(255, 255, 255, 1)",
  1488. "line-opacity": {
  1489. "base": 1,
  1490. "stops": [
  1491. [
  1492. 11,
  1493. 0
  1494. ],
  1495. [
  1496. 12,
  1497. 1
  1498. ]
  1499. ]
  1500. },
  1501. "line-width": {
  1502. "base": 1.5,
  1503. "stops": [
  1504. [
  1505. 11,
  1506. 1
  1507. ],
  1508. [
  1509. 17,
  1510. 10
  1511. ]
  1512. ]
  1513. }
  1514. }
  1515. },
  1516. {
  1517. "id": "aeroway-runway",
  1518. "type": "line",
  1519. "metadata": {
  1520. "mapbox:group": "1444849345966.4436"
  1521. },
  1522. "source": "openmaptiles",
  1523. "source-layer": "aeroway",
  1524. "minzoom": 4,
  1525. "filter": [
  1526. "all",
  1527. [
  1528. "in",
  1529. "class",
  1530. "runway"
  1531. ],
  1532. [
  1533. "==",
  1534. "$type",
  1535. "LineString"
  1536. ]
  1537. ],
  1538. "layout": {
  1539. "line-cap": "round",
  1540. "line-join": "round",
  1541. "visibility": "visible"
  1542. },
  1543. "paint": {
  1544. "line-color": "rgba(255, 255, 255, 1)",
  1545. "line-opacity": {
  1546. "base": 1,
  1547. "stops": [
  1548. [
  1549. 11,
  1550. 0
  1551. ],
  1552. [
  1553. 12,
  1554. 1
  1555. ]
  1556. ]
  1557. },
  1558. "line-width": {
  1559. "base": 1.5,
  1560. "stops": [
  1561. [
  1562. 11,
  1563. 4
  1564. ],
  1565. [
  1566. 17,
  1567. 50
  1568. ]
  1569. ]
  1570. }
  1571. }
  1572. },
  1573. {
  1574. "id": "road_area_pier",
  1575. "type": "fill",
  1576. "metadata": {},
  1577. "source": "openmaptiles",
  1578. "source-layer": "transportation",
  1579. "filter": [
  1580. "all",
  1581. [
  1582. "==",
  1583. "$type",
  1584. "Polygon"
  1585. ],
  1586. [
  1587. "==",
  1588. "class",
  1589. "pier"
  1590. ]
  1591. ],
  1592. "layout": {
  1593. "visibility": "visible"
  1594. },
  1595. "paint": {
  1596. "fill-antialias": true,
  1597. "fill-color": "rgba(76, 166, 255, 1)"
  1598. }
  1599. },
  1600. {
  1601. "id": "road_pier",
  1602. "type": "line",
  1603. "metadata": {},
  1604. "source": "openmaptiles",
  1605. "source-layer": "transportation",
  1606. "filter": [
  1607. "all",
  1608. [
  1609. "==",
  1610. "$type",
  1611. "LineString"
  1612. ],
  1613. [
  1614. "in",
  1615. "class",
  1616. "pier"
  1617. ]
  1618. ],
  1619. "layout": {
  1620. "line-cap": "round",
  1621. "line-join": "round"
  1622. },
  1623. "paint": {
  1624. "line-color": "rgba(66, 154, 242, 1)",
  1625. "line-width": {
  1626. "base": 1.2,
  1627. "stops": [
  1628. [
  1629. 15,
  1630. 1
  1631. ],
  1632. [
  1633. 17,
  1634. 4
  1635. ]
  1636. ]
  1637. }
  1638. }
  1639. },
  1640. {
  1641. "id": "highway-area",
  1642. "type": "fill",
  1643. "metadata": {
  1644. "mapbox:group": "1444849345966.4436"
  1645. },
  1646. "source": "openmaptiles",
  1647. "source-layer": "transportation",
  1648. "filter": [
  1649. "all",
  1650. [
  1651. "==",
  1652. "$type",
  1653. "Polygon"
  1654. ],
  1655. [
  1656. "!in",
  1657. "class",
  1658. "pier"
  1659. ]
  1660. ],
  1661. "layout": {
  1662. "visibility": "visible"
  1663. },
  1664. "paint": {
  1665. "fill-antialias": false,
  1666. "fill-color": "hsla(0, 0%, 89%, 0.56)",
  1667. "fill-opacity": 0.9,
  1668. "fill-outline-color": "#cfcdca"
  1669. }
  1670. },
  1671. {
  1672. "id": "highway-motorway-link-casing",
  1673. "type": "line",
  1674. "metadata": {
  1675. "mapbox:group": "1444849345966.4436"
  1676. },
  1677. "source": "openmaptiles",
  1678. "source-layer": "transportation",
  1679. "minzoom": 12,
  1680. "filter": [
  1681. "all",
  1682. [
  1683. "!in",
  1684. "brunnel",
  1685. "bridge",
  1686. "tunnel"
  1687. ],
  1688. [
  1689. "==",
  1690. "class",
  1691. "motorway_link"
  1692. ]
  1693. ],
  1694. "layout": {
  1695. "line-cap": "round",
  1696. "line-join": "round"
  1697. },
  1698. "paint": {
  1699. "line-color": "rgba(66, 154, 242, 1)",
  1700. "line-opacity": 1,
  1701. "line-width": {
  1702. "base": 1.2,
  1703. "stops": [
  1704. [
  1705. 12,
  1706. 1
  1707. ],
  1708. [
  1709. 13,
  1710. 3
  1711. ],
  1712. [
  1713. 14,
  1714. 4
  1715. ],
  1716. [
  1717. 20,
  1718. 15
  1719. ]
  1720. ]
  1721. }
  1722. }
  1723. },
  1724. {
  1725. "id": "highway-link-casing",
  1726. "type": "line",
  1727. "metadata": {
  1728. "mapbox:group": "1444849345966.4436"
  1729. },
  1730. "source": "openmaptiles",
  1731. "source-layer": "transportation",
  1732. "minzoom": 13,
  1733. "filter": [
  1734. "all",
  1735. [
  1736. "!in",
  1737. "brunnel",
  1738. "bridge",
  1739. "tunnel"
  1740. ],
  1741. [
  1742. "in",
  1743. "class",
  1744. "primary_link",
  1745. "secondary_link",
  1746. "tertiary_link",
  1747. "trunk_link"
  1748. ]
  1749. ],
  1750. "layout": {
  1751. "line-cap": "round",
  1752. "line-join": "round",
  1753. "visibility": "visible"
  1754. },
  1755. "paint": {
  1756. "line-color": "rgba(66, 154, 242, 1)",
  1757. "line-opacity": 1,
  1758. "line-width": {
  1759. "base": 1.2,
  1760. "stops": [
  1761. [
  1762. 12,
  1763. 1
  1764. ],
  1765. [
  1766. 13,
  1767. 3
  1768. ],
  1769. [
  1770. 14,
  1771. 4
  1772. ],
  1773. [
  1774. 20,
  1775. 15
  1776. ]
  1777. ]
  1778. }
  1779. }
  1780. },
  1781. {
  1782. "id": "highway-minor-casing",
  1783. "type": "line",
  1784. "metadata": {
  1785. "mapbox:group": "1444849345966.4436"
  1786. },
  1787. "source": "openmaptiles",
  1788. "source-layer": "transportation",
  1789. "filter": [
  1790. "all",
  1791. [
  1792. "==",
  1793. "$type",
  1794. "LineString"
  1795. ],
  1796. [
  1797. "all",
  1798. [
  1799. "!=",
  1800. "brunnel",
  1801. "tunnel"
  1802. ],
  1803. [
  1804. "in",
  1805. "class",
  1806. "minor",
  1807. "service",
  1808. "track"
  1809. ]
  1810. ]
  1811. ],
  1812. "layout": {
  1813. "line-cap": "round",
  1814. "line-join": "round"
  1815. },
  1816. "paint": {
  1817. "line-color": "#cfcdca",
  1818. "line-opacity": {
  1819. "stops": [
  1820. [
  1821. 12,
  1822. 0
  1823. ],
  1824. [
  1825. 12.5,
  1826. 1
  1827. ]
  1828. ]
  1829. },
  1830. "line-width": {
  1831. "base": 1.2,
  1832. "stops": [
  1833. [
  1834. 12,
  1835. 0.5
  1836. ],
  1837. [
  1838. 13,
  1839. 1
  1840. ],
  1841. [
  1842. 14,
  1843. 4
  1844. ],
  1845. [
  1846. 20,
  1847. 15
  1848. ]
  1849. ]
  1850. }
  1851. }
  1852. },
  1853. {
  1854. "id": "highway-secondary-tertiary-casing",
  1855. "type": "line",
  1856. "metadata": {
  1857. "mapbox:group": "1444849345966.4436"
  1858. },
  1859. "source": "openmaptiles",
  1860. "source-layer": "transportation",
  1861. "filter": [
  1862. "all",
  1863. [
  1864. "!in",
  1865. "brunnel",
  1866. "bridge",
  1867. "tunnel"
  1868. ],
  1869. [
  1870. "in",
  1871. "class",
  1872. "secondary",
  1873. "tertiary"
  1874. ]
  1875. ],
  1876. "layout": {
  1877. "line-cap": "butt",
  1878. "line-join": "round",
  1879. "visibility": "visible"
  1880. },
  1881. "paint": {
  1882. "line-color": "rgba(66, 154, 242, 1)",
  1883. "line-opacity": 1,
  1884. "line-width": {
  1885. "base": 1.2,
  1886. "stops": [
  1887. [
  1888. 8,
  1889. 1.5
  1890. ],
  1891. [
  1892. 20,
  1893. 17
  1894. ]
  1895. ]
  1896. }
  1897. }
  1898. },
  1899. {
  1900. "id": "highway-primary-casing",
  1901. "type": "line",
  1902. "metadata": {
  1903. "mapbox:group": "1444849345966.4436"
  1904. },
  1905. "source": "openmaptiles",
  1906. "source-layer": "transportation",
  1907. "minzoom": 5,
  1908. "filter": [
  1909. "all",
  1910. [
  1911. "!in",
  1912. "brunnel",
  1913. "bridge",
  1914. "tunnel"
  1915. ],
  1916. [
  1917. "in",
  1918. "class",
  1919. "primary"
  1920. ]
  1921. ],
  1922. "layout": {
  1923. "line-cap": "butt",
  1924. "line-join": "round",
  1925. "visibility": "visible"
  1926. },
  1927. "paint": {
  1928. "line-color": "#429AF2",
  1929. "line-opacity": {
  1930. "stops": [
  1931. [
  1932. 7,
  1933. 0
  1934. ],
  1935. [
  1936. 8,
  1937. 1
  1938. ]
  1939. ]
  1940. },
  1941. "line-width": {
  1942. "base": 1.2,
  1943. "stops": [
  1944. [
  1945. 7,
  1946. 0
  1947. ],
  1948. [
  1949. 8,
  1950. 0.6
  1951. ],
  1952. [
  1953. 9,
  1954. 1.5
  1955. ],
  1956. [
  1957. 20,
  1958. 22
  1959. ]
  1960. ]
  1961. }
  1962. }
  1963. },
  1964. {
  1965. "id": "highway-trunk-casing",
  1966. "type": "line",
  1967. "metadata": {
  1968. "mapbox:group": "1444849345966.4436"
  1969. },
  1970. "source": "openmaptiles",
  1971. "source-layer": "transportation",
  1972. "minzoom": 5,
  1973. "filter": [
  1974. "all",
  1975. [
  1976. "!in",
  1977. "brunnel",
  1978. "bridge",
  1979. "tunnel"
  1980. ],
  1981. [
  1982. "in",
  1983. "class",
  1984. "trunk"
  1985. ]
  1986. ],
  1987. "layout": {
  1988. "line-cap": "butt",
  1989. "line-join": "round",
  1990. "visibility": "visible"
  1991. },
  1992. "paint": {
  1993. "line-color": "#429AF2",
  1994. "line-opacity": {
  1995. "stops": [
  1996. [
  1997. 5,
  1998. 0
  1999. ],
  2000. [
  2001. 6,
  2002. 1
  2003. ]
  2004. ]
  2005. },
  2006. "line-width": {
  2007. "base": 1.2,
  2008. "stops": [
  2009. [
  2010. 5,
  2011. 0
  2012. ],
  2013. [
  2014. 6,
  2015. 0.6
  2016. ],
  2017. [
  2018. 7,
  2019. 1.5
  2020. ],
  2021. [
  2022. 20,
  2023. 22
  2024. ]
  2025. ]
  2026. }
  2027. }
  2028. },
  2029. {
  2030. "id": "highway-motorway-casing",
  2031. "type": "line",
  2032. "metadata": {
  2033. "mapbox:group": "1444849345966.4436"
  2034. },
  2035. "source": "openmaptiles",
  2036. "source-layer": "transportation",
  2037. "minzoom": 4,
  2038. "filter": [
  2039. "all",
  2040. [
  2041. "!in",
  2042. "brunnel",
  2043. "bridge",
  2044. "tunnel"
  2045. ],
  2046. [
  2047. "==",
  2048. "class",
  2049. "motorway"
  2050. ]
  2051. ],
  2052. "layout": {
  2053. "line-cap": "butt",
  2054. "line-join": "round",
  2055. "visibility": "visible"
  2056. },
  2057. "paint": {
  2058. "line-color": "#429AF2",
  2059. "line-opacity": {
  2060. "stops": [
  2061. [
  2062. 4,
  2063. 0
  2064. ],
  2065. [
  2066. 5,
  2067. 1
  2068. ]
  2069. ]
  2070. },
  2071. "line-width": {
  2072. "base": 1.2,
  2073. "stops": [
  2074. [
  2075. 4,
  2076. 0
  2077. ],
  2078. [
  2079. 5,
  2080. 0.4
  2081. ],
  2082. [
  2083. 6,
  2084. 0.6
  2085. ],
  2086. [
  2087. 7,
  2088. 1.5
  2089. ],
  2090. [
  2091. 20,
  2092. 22
  2093. ]
  2094. ]
  2095. }
  2096. }
  2097. },
  2098. {
  2099. "id": "highway-path",
  2100. "type": "line",
  2101. "metadata": {
  2102. "mapbox:group": "1444849345966.4436"
  2103. },
  2104. "source": "openmaptiles",
  2105. "source-layer": "transportation",
  2106. "filter": [
  2107. "all",
  2108. [
  2109. "==",
  2110. "$type",
  2111. "LineString"
  2112. ],
  2113. [
  2114. "all",
  2115. [
  2116. "!in",
  2117. "brunnel",
  2118. "bridge",
  2119. "tunnel"
  2120. ],
  2121. [
  2122. "==",
  2123. "class",
  2124. "path"
  2125. ]
  2126. ]
  2127. ],
  2128. "paint": {
  2129. "line-color": "#cba",
  2130. "line-dasharray": [
  2131. 1.5,
  2132. 0.75
  2133. ],
  2134. "line-width": {
  2135. "base": 1.2,
  2136. "stops": [
  2137. [
  2138. 15,
  2139. 1.2
  2140. ],
  2141. [
  2142. 20,
  2143. 4
  2144. ]
  2145. ]
  2146. }
  2147. }
  2148. },
  2149. {
  2150. "id": "highway-motorway-link",
  2151. "type": "line",
  2152. "metadata": {
  2153. "mapbox:group": "1444849345966.4436"
  2154. },
  2155. "source": "openmaptiles",
  2156. "source-layer": "transportation",
  2157. "minzoom": 12,
  2158. "filter": [
  2159. "all",
  2160. [
  2161. "!in",
  2162. "brunnel",
  2163. "bridge",
  2164. "tunnel"
  2165. ],
  2166. [
  2167. "==",
  2168. "class",
  2169. "motorway_link"
  2170. ]
  2171. ],
  2172. "layout": {
  2173. "line-cap": "round",
  2174. "line-join": "round"
  2175. },
  2176. "paint": {
  2177. "line-color": "#429AF2",
  2178. "line-width": {
  2179. "base": 1.2,
  2180. "stops": [
  2181. [
  2182. 12.5,
  2183. 0
  2184. ],
  2185. [
  2186. 13,
  2187. 1.5
  2188. ],
  2189. [
  2190. 14,
  2191. 2.5
  2192. ],
  2193. [
  2194. 20,
  2195. 11.5
  2196. ]
  2197. ]
  2198. }
  2199. }
  2200. },
  2201. {
  2202. "id": "highway-link",
  2203. "type": "line",
  2204. "metadata": {
  2205. "mapbox:group": "1444849345966.4436"
  2206. },
  2207. "source": "openmaptiles",
  2208. "source-layer": "transportation",
  2209. "minzoom": 13,
  2210. "filter": [
  2211. "all",
  2212. [
  2213. "!in",
  2214. "brunnel",
  2215. "bridge",
  2216. "tunnel"
  2217. ],
  2218. [
  2219. "in",
  2220. "class",
  2221. "primary_link",
  2222. "secondary_link",
  2223. "tertiary_link",
  2224. "trunk_link"
  2225. ]
  2226. ],
  2227. "layout": {
  2228. "line-cap": "round",
  2229. "line-join": "round",
  2230. "visibility": "visible"
  2231. },
  2232. "paint": {
  2233. "line-color": "#429AF2",
  2234. "line-width": {
  2235. "base": 1.2,
  2236. "stops": [
  2237. [
  2238. 12.5,
  2239. 0
  2240. ],
  2241. [
  2242. 13,
  2243. 1.5
  2244. ],
  2245. [
  2246. 14,
  2247. 2.5
  2248. ],
  2249. [
  2250. 20,
  2251. 11.5
  2252. ]
  2253. ]
  2254. }
  2255. }
  2256. },
  2257. {
  2258. "id": "highway-minor",
  2259. "type": "line",
  2260. "metadata": {
  2261. "mapbox:group": "1444849345966.4436"
  2262. },
  2263. "source": "openmaptiles",
  2264. "source-layer": "transportation",
  2265. "filter": [
  2266. "all",
  2267. [
  2268. "==",
  2269. "$type",
  2270. "LineString"
  2271. ],
  2272. [
  2273. "all",
  2274. [
  2275. "!=",
  2276. "brunnel",
  2277. "tunnel"
  2278. ],
  2279. [
  2280. "in",
  2281. "class",
  2282. "minor",
  2283. "service",
  2284. "track"
  2285. ]
  2286. ]
  2287. ],
  2288. "layout": {
  2289. "line-cap": "round",
  2290. "line-join": "round"
  2291. },
  2292. "paint": {
  2293. "line-color": "#fff",
  2294. "line-opacity": 1,
  2295. "line-width": {
  2296. "base": 1.2,
  2297. "stops": [
  2298. [
  2299. 13.5,
  2300. 0
  2301. ],
  2302. [
  2303. 14,
  2304. 2.5
  2305. ],
  2306. [
  2307. 20,
  2308. 11.5
  2309. ]
  2310. ]
  2311. }
  2312. }
  2313. },
  2314. {
  2315. "id": "highway-secondary-tertiary",
  2316. "type": "line",
  2317. "metadata": {
  2318. "mapbox:group": "1444849345966.4436"
  2319. },
  2320. "source": "openmaptiles",
  2321. "source-layer": "transportation",
  2322. "filter": [
  2323. "all",
  2324. [
  2325. "!in",
  2326. "brunnel",
  2327. "bridge",
  2328. "tunnel"
  2329. ],
  2330. [
  2331. "in",
  2332. "class",
  2333. "secondary",
  2334. "tertiary"
  2335. ]
  2336. ],
  2337. "layout": {
  2338. "line-cap": "round",
  2339. "line-join": "round",
  2340. "visibility": "visible"
  2341. },
  2342. "paint": {
  2343. "line-color": "#429AF2",
  2344. "line-width": {
  2345. "base": 1.2,
  2346. "stops": [
  2347. [
  2348. 6.5,
  2349. 0
  2350. ],
  2351. [
  2352. 8,
  2353. 0.5
  2354. ],
  2355. [
  2356. 20,
  2357. 13
  2358. ]
  2359. ]
  2360. }
  2361. }
  2362. },
  2363. {
  2364. "id": "highway-primary",
  2365. "type": "line",
  2366. "metadata": {
  2367. "mapbox:group": "1444849345966.4436"
  2368. },
  2369. "source": "openmaptiles",
  2370. "source-layer": "transportation",
  2371. "filter": [
  2372. "all",
  2373. [
  2374. "==",
  2375. "$type",
  2376. "LineString"
  2377. ],
  2378. [
  2379. "all",
  2380. [
  2381. "!in",
  2382. "brunnel",
  2383. "bridge",
  2384. "tunnel"
  2385. ],
  2386. [
  2387. "in",
  2388. "class",
  2389. "primary"
  2390. ]
  2391. ]
  2392. ],
  2393. "layout": {
  2394. "line-cap": "round",
  2395. "line-join": "round",
  2396. "visibility": "visible"
  2397. },
  2398. "paint": {
  2399. "line-color": "#429AF2",
  2400. "line-width": {
  2401. "base": 1.2,
  2402. "stops": [
  2403. [
  2404. 8.5,
  2405. 0
  2406. ],
  2407. [
  2408. 9,
  2409. 0.5
  2410. ],
  2411. [
  2412. 20,
  2413. 18
  2414. ]
  2415. ]
  2416. }
  2417. }
  2418. },
  2419. {
  2420. "id": "highway-trunk",
  2421. "type": "line",
  2422. "metadata": {
  2423. "mapbox:group": "1444849345966.4436"
  2424. },
  2425. "source": "openmaptiles",
  2426. "source-layer": "transportation",
  2427. "filter": [
  2428. "all",
  2429. [
  2430. "==",
  2431. "$type",
  2432. "LineString"
  2433. ],
  2434. [
  2435. "all",
  2436. [
  2437. "!in",
  2438. "brunnel",
  2439. "bridge",
  2440. "tunnel"
  2441. ],
  2442. [
  2443. "in",
  2444. "class",
  2445. "trunk"
  2446. ]
  2447. ]
  2448. ],
  2449. "layout": {
  2450. "line-cap": "round",
  2451. "line-join": "round",
  2452. "visibility": "visible"
  2453. },
  2454. "paint": {
  2455. "line-color": "#429AF2",
  2456. "line-width": {
  2457. "base": 1.2,
  2458. "stops": [
  2459. [
  2460. 6.5,
  2461. 0
  2462. ],
  2463. [
  2464. 7,
  2465. 0.5
  2466. ],
  2467. [
  2468. 20,
  2469. 18
  2470. ]
  2471. ]
  2472. }
  2473. }
  2474. },
  2475. {
  2476. "id": "highway-motorway",
  2477. "type": "line",
  2478. "metadata": {
  2479. "mapbox:group": "1444849345966.4436"
  2480. },
  2481. "source": "openmaptiles",
  2482. "source-layer": "transportation",
  2483. "minzoom": 5,
  2484. "filter": [
  2485. "all",
  2486. [
  2487. "==",
  2488. "$type",
  2489. "LineString"
  2490. ],
  2491. [
  2492. "all",
  2493. [
  2494. "!in",
  2495. "brunnel",
  2496. "bridge",
  2497. "tunnel"
  2498. ],
  2499. [
  2500. "==",
  2501. "class",
  2502. "motorway"
  2503. ]
  2504. ]
  2505. ],
  2506. "layout": {
  2507. "line-cap": "round",
  2508. "line-join": "round",
  2509. "visibility": "visible"
  2510. },
  2511. "paint": {
  2512. "line-color": "#429AF2",
  2513. "line-width": {
  2514. "base": 1.2,
  2515. "stops": [
  2516. [
  2517. 6.5,
  2518. 0
  2519. ],
  2520. [
  2521. 7,
  2522. 0.5
  2523. ],
  2524. [
  2525. 20,
  2526. 18
  2527. ]
  2528. ]
  2529. }
  2530. }
  2531. },
  2532. {
  2533. "id": "railway-transit",
  2534. "type": "line",
  2535. "metadata": {
  2536. "mapbox:group": "1444849345966.4436"
  2537. },
  2538. "source": "openmaptiles",
  2539. "source-layer": "transportation",
  2540. "filter": [
  2541. "all",
  2542. [
  2543. "==",
  2544. "$type",
  2545. "LineString"
  2546. ],
  2547. [
  2548. "all",
  2549. [
  2550. "==",
  2551. "class",
  2552. "transit"
  2553. ],
  2554. [
  2555. "!in",
  2556. "brunnel",
  2557. "tunnel"
  2558. ]
  2559. ]
  2560. ],
  2561. "layout": {
  2562. "visibility": "visible"
  2563. },
  2564. "paint": {
  2565. "line-color": "hsla(0, 0%, 73%, 0.77)",
  2566. "line-width": {
  2567. "base": 1.4,
  2568. "stops": [
  2569. [
  2570. 14,
  2571. 0.4
  2572. ],
  2573. [
  2574. 20,
  2575. 1
  2576. ]
  2577. ]
  2578. }
  2579. }
  2580. },
  2581. {
  2582. "id": "railway-transit-hatching",
  2583. "type": "line",
  2584. "metadata": {
  2585. "mapbox:group": "1444849345966.4436"
  2586. },
  2587. "source": "openmaptiles",
  2588. "source-layer": "transportation",
  2589. "filter": [
  2590. "all",
  2591. [
  2592. "==",
  2593. "$type",
  2594. "LineString"
  2595. ],
  2596. [
  2597. "all",
  2598. [
  2599. "==",
  2600. "class",
  2601. "transit"
  2602. ],
  2603. [
  2604. "!in",
  2605. "brunnel",
  2606. "tunnel"
  2607. ]
  2608. ]
  2609. ],
  2610. "layout": {
  2611. "visibility": "visible"
  2612. },
  2613. "paint": {
  2614. "line-color": "hsla(0, 0%, 73%, 0.68)",
  2615. "line-dasharray": [
  2616. 0.2,
  2617. 8
  2618. ],
  2619. "line-width": {
  2620. "base": 1.4,
  2621. "stops": [
  2622. [
  2623. 14.5,
  2624. 0
  2625. ],
  2626. [
  2627. 15,
  2628. 2
  2629. ],
  2630. [
  2631. 20,
  2632. 6
  2633. ]
  2634. ]
  2635. }
  2636. }
  2637. },
  2638. {
  2639. "id": "railway-service",
  2640. "type": "line",
  2641. "metadata": {
  2642. "mapbox:group": "1444849345966.4436"
  2643. },
  2644. "source": "openmaptiles",
  2645. "source-layer": "transportation",
  2646. "filter": [
  2647. "all",
  2648. [
  2649. "==",
  2650. "$type",
  2651. "LineString"
  2652. ],
  2653. [
  2654. "all",
  2655. [
  2656. "==",
  2657. "class",
  2658. "rail"
  2659. ],
  2660. [
  2661. "has",
  2662. "service"
  2663. ]
  2664. ]
  2665. ],
  2666. "paint": {
  2667. "line-color": "hsla(0, 0%, 73%, 0.77)",
  2668. "line-width": {
  2669. "base": 1.4,
  2670. "stops": [
  2671. [
  2672. 14,
  2673. 0.4
  2674. ],
  2675. [
  2676. 20,
  2677. 1
  2678. ]
  2679. ]
  2680. }
  2681. }
  2682. },
  2683. {
  2684. "id": "railway-service-hatching",
  2685. "type": "line",
  2686. "metadata": {
  2687. "mapbox:group": "1444849345966.4436"
  2688. },
  2689. "source": "openmaptiles",
  2690. "source-layer": "transportation",
  2691. "filter": [
  2692. "all",
  2693. [
  2694. "==",
  2695. "$type",
  2696. "LineString"
  2697. ],
  2698. [
  2699. "all",
  2700. [
  2701. "==",
  2702. "class",
  2703. "rail"
  2704. ],
  2705. [
  2706. "has",
  2707. "service"
  2708. ]
  2709. ]
  2710. ],
  2711. "layout": {
  2712. "visibility": "visible"
  2713. },
  2714. "paint": {
  2715. "line-color": "hsla(0, 0%, 73%, 0.68)",
  2716. "line-dasharray": [
  2717. 0.2,
  2718. 8
  2719. ],
  2720. "line-width": {
  2721. "base": 1.4,
  2722. "stops": [
  2723. [
  2724. 14.5,
  2725. 0
  2726. ],
  2727. [
  2728. 15,
  2729. 2
  2730. ],
  2731. [
  2732. 20,
  2733. 6
  2734. ]
  2735. ]
  2736. }
  2737. }
  2738. },
  2739. {
  2740. "id": "railway",
  2741. "type": "line",
  2742. "metadata": {
  2743. "mapbox:group": "1444849345966.4436"
  2744. },
  2745. "source": "openmaptiles",
  2746. "source-layer": "transportation",
  2747. "filter": [
  2748. "all",
  2749. [
  2750. "==",
  2751. "$type",
  2752. "LineString"
  2753. ],
  2754. [
  2755. "all",
  2756. [
  2757. "!has",
  2758. "service"
  2759. ],
  2760. [
  2761. "!in",
  2762. "brunnel",
  2763. "bridge",
  2764. "tunnel"
  2765. ],
  2766. [
  2767. "==",
  2768. "class",
  2769. "rail"
  2770. ]
  2771. ]
  2772. ],
  2773. "paint": {
  2774. "line-color": "#bbb",
  2775. "line-width": {
  2776. "base": 1.4,
  2777. "stops": [
  2778. [
  2779. 14,
  2780. 0.4
  2781. ],
  2782. [
  2783. 15,
  2784. 0.75
  2785. ],
  2786. [
  2787. 20,
  2788. 2
  2789. ]
  2790. ]
  2791. }
  2792. }
  2793. },
  2794. {
  2795. "id": "railway-hatching",
  2796. "type": "line",
  2797. "metadata": {
  2798. "mapbox:group": "1444849345966.4436"
  2799. },
  2800. "source": "openmaptiles",
  2801. "source-layer": "transportation",
  2802. "filter": [
  2803. "all",
  2804. [
  2805. "==",
  2806. "$type",
  2807. "LineString"
  2808. ],
  2809. [
  2810. "all",
  2811. [
  2812. "!has",
  2813. "service"
  2814. ],
  2815. [
  2816. "!in",
  2817. "brunnel",
  2818. "bridge",
  2819. "tunnel"
  2820. ],
  2821. [
  2822. "==",
  2823. "class",
  2824. "rail"
  2825. ]
  2826. ]
  2827. ],
  2828. "paint": {
  2829. "line-color": "#bbb",
  2830. "line-dasharray": [
  2831. 0.2,
  2832. 8
  2833. ],
  2834. "line-width": {
  2835. "base": 1.4,
  2836. "stops": [
  2837. [
  2838. 14.5,
  2839. 0
  2840. ],
  2841. [
  2842. 15,
  2843. 3
  2844. ],
  2845. [
  2846. 20,
  2847. 8
  2848. ]
  2849. ]
  2850. }
  2851. }
  2852. },
  2853. {
  2854. "id": "bridge-motorway-link-casing",
  2855. "type": "line",
  2856. "metadata": {
  2857. "mapbox:group": "1444849334699.1902"
  2858. },
  2859. "source": "openmaptiles",
  2860. "source-layer": "transportation",
  2861. "filter": [
  2862. "all",
  2863. [
  2864. "==",
  2865. "brunnel",
  2866. "bridge"
  2867. ],
  2868. [
  2869. "==",
  2870. "class",
  2871. "motorway_link"
  2872. ]
  2873. ],
  2874. "layout": {
  2875. "line-join": "round"
  2876. },
  2877. "paint": {
  2878. "line-color": "#429AF2",
  2879. "line-opacity": 1,
  2880. "line-width": {
  2881. "base": 1.2,
  2882. "stops": [
  2883. [
  2884. 12,
  2885. 1
  2886. ],
  2887. [
  2888. 13,
  2889. 3
  2890. ],
  2891. [
  2892. 14,
  2893. 4
  2894. ],
  2895. [
  2896. 20,
  2897. 15
  2898. ]
  2899. ]
  2900. }
  2901. }
  2902. },
  2903. {
  2904. "id": "bridge-link-casing",
  2905. "type": "line",
  2906. "metadata": {
  2907. "mapbox:group": "1444849334699.1902"
  2908. },
  2909. "source": "openmaptiles",
  2910. "source-layer": "transportation",
  2911. "filter": [
  2912. "all",
  2913. [
  2914. "==",
  2915. "brunnel",
  2916. "bridge"
  2917. ],
  2918. [
  2919. "in",
  2920. "class",
  2921. "primary_link",
  2922. "secondary_link",
  2923. "tertiary_link",
  2924. "trunk_link"
  2925. ]
  2926. ],
  2927. "layout": {
  2928. "line-join": "round"
  2929. },
  2930. "paint": {
  2931. "line-color": "#429AF2",
  2932. "line-opacity": 1,
  2933. "line-width": {
  2934. "base": 1.2,
  2935. "stops": [
  2936. [
  2937. 12,
  2938. 1
  2939. ],
  2940. [
  2941. 13,
  2942. 3
  2943. ],
  2944. [
  2945. 14,
  2946. 4
  2947. ],
  2948. [
  2949. 20,
  2950. 15
  2951. ]
  2952. ]
  2953. }
  2954. }
  2955. },
  2956. {
  2957. "id": "bridge-secondary-tertiary-casing",
  2958. "type": "line",
  2959. "metadata": {
  2960. "mapbox:group": "1444849334699.1902"
  2961. },
  2962. "source": "openmaptiles",
  2963. "source-layer": "transportation",
  2964. "filter": [
  2965. "all",
  2966. [
  2967. "==",
  2968. "brunnel",
  2969. "bridge"
  2970. ],
  2971. [
  2972. "in",
  2973. "class",
  2974. "secondary",
  2975. "tertiary"
  2976. ]
  2977. ],
  2978. "layout": {
  2979. "line-join": "round"
  2980. },
  2981. "paint": {
  2982. "line-color": "#429AF2",
  2983. "line-opacity": 1,
  2984. "line-width": {
  2985. "base": 1.2,
  2986. "stops": [
  2987. [
  2988. 8,
  2989. 1.5
  2990. ],
  2991. [
  2992. 20,
  2993. 28
  2994. ]
  2995. ]
  2996. }
  2997. }
  2998. },
  2999. {
  3000. "id": "bridge-trunk-primary-casing",
  3001. "type": "line",
  3002. "metadata": {
  3003. "mapbox:group": "1444849334699.1902"
  3004. },
  3005. "source": "openmaptiles",
  3006. "source-layer": "transportation",
  3007. "filter": [
  3008. "all",
  3009. [
  3010. "==",
  3011. "brunnel",
  3012. "bridge"
  3013. ],
  3014. [
  3015. "in",
  3016. "class",
  3017. "primary",
  3018. "trunk"
  3019. ]
  3020. ],
  3021. "layout": {
  3022. "line-join": "round"
  3023. },
  3024. "paint": {
  3025. "line-color": "#429AF2",
  3026. "line-width": {
  3027. "base": 1.2,
  3028. "stops": [
  3029. [
  3030. 5,
  3031. 0.4
  3032. ],
  3033. [
  3034. 6,
  3035. 0.6
  3036. ],
  3037. [
  3038. 7,
  3039. 1.5
  3040. ],
  3041. [
  3042. 20,
  3043. 26
  3044. ]
  3045. ]
  3046. }
  3047. }
  3048. },
  3049. {
  3050. "id": "bridge-motorway-casing",
  3051. "type": "line",
  3052. "metadata": {
  3053. "mapbox:group": "1444849334699.1902"
  3054. },
  3055. "source": "openmaptiles",
  3056. "source-layer": "transportation",
  3057. "filter": [
  3058. "all",
  3059. [
  3060. "==",
  3061. "brunnel",
  3062. "bridge"
  3063. ],
  3064. [
  3065. "==",
  3066. "class",
  3067. "motorway"
  3068. ]
  3069. ],
  3070. "layout": {
  3071. "line-join": "round"
  3072. },
  3073. "paint": {
  3074. "line-color": "#429AF2",
  3075. "line-width": {
  3076. "base": 1.2,
  3077. "stops": [
  3078. [
  3079. 5,
  3080. 0.4
  3081. ],
  3082. [
  3083. 6,
  3084. 0.6
  3085. ],
  3086. [
  3087. 7,
  3088. 1.5
  3089. ],
  3090. [
  3091. 20,
  3092. 22
  3093. ]
  3094. ]
  3095. }
  3096. }
  3097. },
  3098. {
  3099. "id": "bridge-path-casing",
  3100. "type": "line",
  3101. "metadata": {
  3102. "mapbox:group": "1444849334699.1902"
  3103. },
  3104. "source": "openmaptiles",
  3105. "source-layer": "transportation",
  3106. "filter": [
  3107. "all",
  3108. [
  3109. "==",
  3110. "$type",
  3111. "LineString"
  3112. ],
  3113. [
  3114. "all",
  3115. [
  3116. "==",
  3117. "brunnel",
  3118. "bridge"
  3119. ],
  3120. [
  3121. "==",
  3122. "class",
  3123. "path"
  3124. ]
  3125. ]
  3126. ],
  3127. "paint": {
  3128. "line-color": "#f8f4f0",
  3129. "line-width": {
  3130. "base": 1.2,
  3131. "stops": [
  3132. [
  3133. 15,
  3134. 1.2
  3135. ],
  3136. [
  3137. 20,
  3138. 18
  3139. ]
  3140. ]
  3141. }
  3142. }
  3143. },
  3144. {
  3145. "id": "bridge-path",
  3146. "type": "line",
  3147. "metadata": {
  3148. "mapbox:group": "1444849334699.1902"
  3149. },
  3150. "source": "openmaptiles",
  3151. "source-layer": "transportation",
  3152. "filter": [
  3153. "all",
  3154. [
  3155. "==",
  3156. "$type",
  3157. "LineString"
  3158. ],
  3159. [
  3160. "all",
  3161. [
  3162. "==",
  3163. "brunnel",
  3164. "bridge"
  3165. ],
  3166. [
  3167. "==",
  3168. "class",
  3169. "path"
  3170. ]
  3171. ]
  3172. ],
  3173. "paint": {
  3174. "line-color": "#cba",
  3175. "line-dasharray": [
  3176. 1.5,
  3177. 0.75
  3178. ],
  3179. "line-width": {
  3180. "base": 1.2,
  3181. "stops": [
  3182. [
  3183. 15,
  3184. 1.2
  3185. ],
  3186. [
  3187. 20,
  3188. 4
  3189. ]
  3190. ]
  3191. }
  3192. }
  3193. },
  3194. {
  3195. "id": "bridge-motorway-link",
  3196. "type": "line",
  3197. "metadata": {
  3198. "mapbox:group": "1444849334699.1902"
  3199. },
  3200. "source": "openmaptiles",
  3201. "source-layer": "transportation",
  3202. "filter": [
  3203. "all",
  3204. [
  3205. "==",
  3206. "brunnel",
  3207. "bridge"
  3208. ],
  3209. [
  3210. "==",
  3211. "class",
  3212. "motorway_link"
  3213. ]
  3214. ],
  3215. "layout": {
  3216. "line-join": "round"
  3217. },
  3218. "paint": {
  3219. "line-color": "#429AF2",
  3220. "line-width": {
  3221. "base": 1.2,
  3222. "stops": [
  3223. [
  3224. 12.5,
  3225. 0
  3226. ],
  3227. [
  3228. 13,
  3229. 1.5
  3230. ],
  3231. [
  3232. 14,
  3233. 2.5
  3234. ],
  3235. [
  3236. 20,
  3237. 11.5
  3238. ]
  3239. ]
  3240. }
  3241. }
  3242. },
  3243. {
  3244. "id": "bridge-link",
  3245. "type": "line",
  3246. "metadata": {
  3247. "mapbox:group": "1444849334699.1902"
  3248. },
  3249. "source": "openmaptiles",
  3250. "source-layer": "transportation",
  3251. "filter": [
  3252. "all",
  3253. [
  3254. "==",
  3255. "brunnel",
  3256. "bridge"
  3257. ],
  3258. [
  3259. "in",
  3260. "class",
  3261. "primary_link",
  3262. "secondary_link",
  3263. "tertiary_link",
  3264. "trunk_link"
  3265. ]
  3266. ],
  3267. "layout": {
  3268. "line-join": "round"
  3269. },
  3270. "paint": {
  3271. "line-color": "#4ca6ff",
  3272. "line-width": {
  3273. "base": 1.2,
  3274. "stops": [
  3275. [
  3276. 12.5,
  3277. 0
  3278. ],
  3279. [
  3280. 13,
  3281. 1.5
  3282. ],
  3283. [
  3284. 14,
  3285. 2.5
  3286. ],
  3287. [
  3288. 20,
  3289. 11.5
  3290. ]
  3291. ]
  3292. }
  3293. }
  3294. },
  3295. {
  3296. "id": "bridge-secondary-tertiary",
  3297. "type": "line",
  3298. "metadata": {
  3299. "mapbox:group": "1444849334699.1902"
  3300. },
  3301. "source": "openmaptiles",
  3302. "source-layer": "transportation",
  3303. "filter": [
  3304. "all",
  3305. [
  3306. "==",
  3307. "brunnel",
  3308. "bridge"
  3309. ],
  3310. [
  3311. "in",
  3312. "class",
  3313. "secondary",
  3314. "tertiary"
  3315. ]
  3316. ],
  3317. "layout": {
  3318. "line-join": "round"
  3319. },
  3320. "paint": {
  3321. "line-color": "#4ca6ff",
  3322. "line-width": {
  3323. "base": 1.2,
  3324. "stops": [
  3325. [
  3326. 6.5,
  3327. 0
  3328. ],
  3329. [
  3330. 7,
  3331. 0.5
  3332. ],
  3333. [
  3334. 20,
  3335. 20
  3336. ]
  3337. ]
  3338. }
  3339. }
  3340. },
  3341. {
  3342. "id": "bridge-trunk-primary",
  3343. "type": "line",
  3344. "metadata": {
  3345. "mapbox:group": "1444849334699.1902"
  3346. },
  3347. "source": "openmaptiles",
  3348. "source-layer": "transportation",
  3349. "filter": [
  3350. "all",
  3351. [
  3352. "==",
  3353. "brunnel",
  3354. "bridge"
  3355. ],
  3356. [
  3357. "in",
  3358. "class",
  3359. "primary",
  3360. "trunk"
  3361. ]
  3362. ],
  3363. "layout": {
  3364. "line-join": "round"
  3365. },
  3366. "paint": {
  3367. "line-color": "#4ca6ff",
  3368. "line-width": {
  3369. "base": 1.2,
  3370. "stops": [
  3371. [
  3372. 6.5,
  3373. 0
  3374. ],
  3375. [
  3376. 7,
  3377. 0.5
  3378. ],
  3379. [
  3380. 20,
  3381. 18
  3382. ]
  3383. ]
  3384. }
  3385. }
  3386. },
  3387. {
  3388. "id": "bridge-motorway",
  3389. "type": "line",
  3390. "metadata": {
  3391. "mapbox:group": "1444849334699.1902"
  3392. },
  3393. "source": "openmaptiles",
  3394. "source-layer": "transportation",
  3395. "filter": [
  3396. "all",
  3397. [
  3398. "==",
  3399. "brunnel",
  3400. "bridge"
  3401. ],
  3402. [
  3403. "==",
  3404. "class",
  3405. "motorway"
  3406. ]
  3407. ],
  3408. "layout": {
  3409. "line-join": "round"
  3410. },
  3411. "paint": {
  3412. "line-color": "#429AF2",
  3413. "line-width": {
  3414. "base": 1.2,
  3415. "stops": [
  3416. [
  3417. 6.5,
  3418. 0
  3419. ],
  3420. [
  3421. 7,
  3422. 0.5
  3423. ],
  3424. [
  3425. 20,
  3426. 18
  3427. ]
  3428. ]
  3429. }
  3430. }
  3431. },
  3432. {
  3433. "id": "bridge-railway",
  3434. "type": "line",
  3435. "metadata": {
  3436. "mapbox:group": "1444849334699.1902"
  3437. },
  3438. "source": "openmaptiles",
  3439. "source-layer": "transportation",
  3440. "filter": [
  3441. "all",
  3442. [
  3443. "==",
  3444. "brunnel",
  3445. "bridge"
  3446. ],
  3447. [
  3448. "==",
  3449. "class",
  3450. "rail"
  3451. ]
  3452. ],
  3453. "paint": {
  3454. "line-color": "#bbb",
  3455. "line-width": {
  3456. "base": 1.4,
  3457. "stops": [
  3458. [
  3459. 14,
  3460. 0.4
  3461. ],
  3462. [
  3463. 15,
  3464. 0.75
  3465. ],
  3466. [
  3467. 20,
  3468. 2
  3469. ]
  3470. ]
  3471. }
  3472. }
  3473. },
  3474. {
  3475. "id": "bridge-railway-hatching",
  3476. "type": "line",
  3477. "metadata": {
  3478. "mapbox:group": "1444849334699.1902"
  3479. },
  3480. "source": "openmaptiles",
  3481. "source-layer": "transportation",
  3482. "filter": [
  3483. "all",
  3484. [
  3485. "==",
  3486. "brunnel",
  3487. "bridge"
  3488. ],
  3489. [
  3490. "==",
  3491. "class",
  3492. "rail"
  3493. ]
  3494. ],
  3495. "paint": {
  3496. "line-color": "#bbb",
  3497. "line-dasharray": [
  3498. 0.2,
  3499. 8
  3500. ],
  3501. "line-width": {
  3502. "base": 1.4,
  3503. "stops": [
  3504. [
  3505. 14.5,
  3506. 0
  3507. ],
  3508. [
  3509. 15,
  3510. 3
  3511. ],
  3512. [
  3513. 20,
  3514. 8
  3515. ]
  3516. ]
  3517. }
  3518. }
  3519. },
  3520. {
  3521. "id": "cablecar",
  3522. "type": "line",
  3523. "source": "openmaptiles",
  3524. "source-layer": "transportation",
  3525. "minzoom": 13,
  3526. "filter": [
  3527. "==",
  3528. "class",
  3529. "cable_car"
  3530. ],
  3531. "layout": {
  3532. "line-cap": "round",
  3533. "visibility": "visible"
  3534. },
  3535. "paint": {
  3536. "line-color": "hsl(0, 0%, 70%)",
  3537. "line-width": {
  3538. "base": 1,
  3539. "stops": [
  3540. [
  3541. 11,
  3542. 1
  3543. ],
  3544. [
  3545. 19,
  3546. 2.5
  3547. ]
  3548. ]
  3549. }
  3550. }
  3551. },
  3552. {
  3553. "id": "cablecar-dash",
  3554. "type": "line",
  3555. "source": "openmaptiles",
  3556. "source-layer": "transportation",
  3557. "minzoom": 13,
  3558. "filter": [
  3559. "==",
  3560. "class",
  3561. "cable_car"
  3562. ],
  3563. "layout": {
  3564. "line-cap": "round",
  3565. "visibility": "visible"
  3566. },
  3567. "paint": {
  3568. "line-color": "hsl(0, 0%, 70%)",
  3569. "line-dasharray": [
  3570. 2,
  3571. 3
  3572. ],
  3573. "line-width": {
  3574. "base": 1,
  3575. "stops": [
  3576. [
  3577. 11,
  3578. 3
  3579. ],
  3580. [
  3581. 19,
  3582. 5.5
  3583. ]
  3584. ]
  3585. }
  3586. }
  3587. },
  3588. {
  3589. "id": "boundary-land-level-4",
  3590. "type": "line",
  3591. "source": "openmaptiles",
  3592. "source-layer": "boundary",
  3593. "filter": [
  3594. "all",
  3595. [
  3596. ">=",
  3597. "admin_level",
  3598. 4
  3599. ],
  3600. [
  3601. "<=",
  3602. "admin_level",
  3603. 8
  3604. ],
  3605. [
  3606. "!=",
  3607. "maritime",
  3608. 1
  3609. ]
  3610. ],
  3611. "layout": {
  3612. "line-join": "round",
  3613. "visibility": "visible"
  3614. },
  3615. "paint": {
  3616. "line-color": "#9e9cab",
  3617. "line-dasharray": [
  3618. 3,
  3619. 1,
  3620. 1,
  3621. 1
  3622. ],
  3623. "line-width": {
  3624. "base": 1.4,
  3625. "stops": [
  3626. [
  3627. 4,
  3628. 0.4
  3629. ],
  3630. [
  3631. 5,
  3632. 1
  3633. ],
  3634. [
  3635. 12,
  3636. 3
  3637. ]
  3638. ]
  3639. }
  3640. }
  3641. },
  3642. {
  3643. "id": "boundary-land-level-2",
  3644. "type": "line",
  3645. "source": "openmaptiles",
  3646. "source-layer": "boundary",
  3647. "filter": [
  3648. "all",
  3649. [
  3650. "==",
  3651. "admin_level",
  3652. 2
  3653. ],
  3654. [
  3655. "!=",
  3656. "maritime",
  3657. 1
  3658. ],
  3659. [
  3660. "!=",
  3661. "disputed",
  3662. 1
  3663. ]
  3664. ],
  3665. "layout": {
  3666. "line-cap": "round",
  3667. "line-join": "round",
  3668. "visibility": "visible"
  3669. },
  3670. "paint": {
  3671. "line-color": "hsl(248, 7%, 66%)",
  3672. "line-width": {
  3673. "base": 1,
  3674. "stops": [
  3675. [
  3676. 0,
  3677. 0.6
  3678. ],
  3679. [
  3680. 4,
  3681. 1.4
  3682. ],
  3683. [
  3684. 5,
  3685. 2
  3686. ],
  3687. [
  3688. 12,
  3689. 8
  3690. ]
  3691. ]
  3692. }
  3693. }
  3694. },
  3695. {
  3696. "id": "boundary-land-disputed",
  3697. "type": "line",
  3698. "source": "openmaptiles",
  3699. "source-layer": "boundary",
  3700. "filter": [
  3701. "all",
  3702. [
  3703. "!=",
  3704. "maritime",
  3705. 1
  3706. ],
  3707. [
  3708. "==",
  3709. "disputed",
  3710. 1
  3711. ]
  3712. ],
  3713. "layout": {
  3714. "line-cap": "round",
  3715. "line-join": "round",
  3716. "visibility": "visible"
  3717. },
  3718. "paint": {
  3719. "line-color": "hsl(248, 7%, 70%)",
  3720. "line-dasharray": [
  3721. 1,
  3722. 3
  3723. ],
  3724. "line-width": {
  3725. "base": 1,
  3726. "stops": [
  3727. [
  3728. 0,
  3729. 0.6
  3730. ],
  3731. [
  3732. 4,
  3733. 1.4
  3734. ],
  3735. [
  3736. 5,
  3737. 2
  3738. ],
  3739. [
  3740. 12,
  3741. 8
  3742. ]
  3743. ]
  3744. }
  3745. }
  3746. },
  3747. {
  3748. "id": "boundary-water",
  3749. "type": "line",
  3750. "source": "openmaptiles",
  3751. "source-layer": "boundary",
  3752. "minzoom": 4,
  3753. "filter": [
  3754. "all",
  3755. [
  3756. "in",
  3757. "admin_level",
  3758. 2,
  3759. 4
  3760. ],
  3761. [
  3762. "==",
  3763. "maritime",
  3764. 1
  3765. ]
  3766. ],
  3767. "layout": {
  3768. "line-cap": "round",
  3769. "line-join": "round",
  3770. "visibility": "visible"
  3771. },
  3772. "paint": {
  3773. "line-color": "rgba(154, 189, 214, 1)",
  3774. "line-opacity": {
  3775. "stops": [
  3776. [
  3777. 6,
  3778. 0.6
  3779. ],
  3780. [
  3781. 10,
  3782. 1
  3783. ]
  3784. ]
  3785. },
  3786. "line-width": {
  3787. "base": 1,
  3788. "stops": [
  3789. [
  3790. 0,
  3791. 0.6
  3792. ],
  3793. [
  3794. 4,
  3795. 1.4
  3796. ],
  3797. [
  3798. 5,
  3799. 2
  3800. ],
  3801. [
  3802. 12,
  3803. 8
  3804. ]
  3805. ]
  3806. }
  3807. }
  3808. },
  3809. {
  3810. "id": "waterway-name",
  3811. "type": "symbol",
  3812. "source": "openmaptiles",
  3813. "source-layer": "waterway",
  3814. "minzoom": 13,
  3815. "filter": [
  3816. "all",
  3817. [
  3818. "==",
  3819. "$type",
  3820. "LineString"
  3821. ],
  3822. [
  3823. "has",
  3824. "name"
  3825. ]
  3826. ],
  3827. "layout": {
  3828. "symbol-placement": "line",
  3829. "symbol-spacing": 350,
  3830. "text-field": "{name:latin} {name:nonlatin}",
  3831. "text-font": [
  3832. "Noto Sans Italic"
  3833. ],
  3834. "text-letter-spacing": 0.2,
  3835. "text-max-width": 5,
  3836. "text-rotation-alignment": "map",
  3837. "text-size": 14
  3838. },
  3839. "paint": {
  3840. "text-color": "#74aee9",
  3841. "text-halo-color": "rgba(255,255,255,0.7)",
  3842. "text-halo-width": 1.5
  3843. }
  3844. },
  3845. {
  3846. "id": "water-name-lakeline",
  3847. "type": "symbol",
  3848. "source": "openmaptiles",
  3849. "source-layer": "water_name",
  3850. "filter": [
  3851. "==",
  3852. "$type",
  3853. "LineString"
  3854. ],
  3855. "layout": {
  3856. "symbol-placement": "line",
  3857. "symbol-spacing": 350,
  3858. "text-field": "{name:nonlatin}",
  3859. "text-font": [
  3860. "Noto Sans Italic"
  3861. ],
  3862. "text-letter-spacing": 0.2,
  3863. "text-max-width": 5,
  3864. "text-rotation-alignment": "map",
  3865. "text-size": 14
  3866. },
  3867. "paint": {
  3868. "text-color": "#74aee9",
  3869. "text-halo-color": "rgba(255,255,255,0.7)",
  3870. "text-halo-width": 1.5
  3871. }
  3872. },
  3873. {
  3874. "id": "water-name-ocean",
  3875. "type": "symbol",
  3876. "source": "openmaptiles",
  3877. "source-layer": "water_name",
  3878. "filter": [
  3879. "all",
  3880. [
  3881. "==",
  3882. "$type",
  3883. "Point"
  3884. ],
  3885. [
  3886. "==",
  3887. "class",
  3888. "ocean"
  3889. ]
  3890. ],
  3891. "layout": {
  3892. "symbol-placement": "point",
  3893. "symbol-spacing": 350,
  3894. "text-field": "{name:latin}",
  3895. "text-font": [
  3896. "Noto Sans Italic"
  3897. ],
  3898. "text-letter-spacing": 0.2,
  3899. "text-max-width": 5,
  3900. "text-rotation-alignment": "map",
  3901. "text-size": 14
  3902. },
  3903. "paint": {
  3904. "text-color": "#74aee9",
  3905. "text-halo-color": "rgba(255,255,255,0.7)",
  3906. "text-halo-width": 1.5
  3907. }
  3908. },
  3909. {
  3910. "id": "water-name-other",
  3911. "type": "symbol",
  3912. "source": "openmaptiles",
  3913. "source-layer": "water_name",
  3914. "filter": [
  3915. "all",
  3916. [
  3917. "==",
  3918. "$type",
  3919. "Point"
  3920. ],
  3921. [
  3922. "!in",
  3923. "class",
  3924. "ocean"
  3925. ]
  3926. ],
  3927. "layout": {
  3928. "symbol-placement": "point",
  3929. "symbol-spacing": 350,
  3930. "text-field": "{name:nonlatin}",
  3931. "text-font": [
  3932. "Noto Sans Italic"
  3933. ],
  3934. "text-letter-spacing": 0.2,
  3935. "text-max-width": 5,
  3936. "text-rotation-alignment": "map",
  3937. "text-size": {
  3938. "stops": [
  3939. [
  3940. 0,
  3941. 10
  3942. ],
  3943. [
  3944. 6,
  3945. 14
  3946. ]
  3947. ]
  3948. },
  3949. "visibility": "visible"
  3950. },
  3951. "paint": {
  3952. "text-color": "#74aee9",
  3953. "text-halo-color": "rgba(255,255,255,0.7)",
  3954. "text-halo-width": 1.5
  3955. }
  3956. },
  3957. {
  3958. "id": "poi-level-3",
  3959. "type": "symbol",
  3960. "source": "openmaptiles",
  3961. "source-layer": "poi",
  3962. "minzoom": 16,
  3963. "filter": [
  3964. "all",
  3965. [
  3966. "==",
  3967. "$type",
  3968. "Point"
  3969. ],
  3970. [
  3971. ">=",
  3972. "rank",
  3973. 25
  3974. ],
  3975. [
  3976. "any",
  3977. [
  3978. "!has",
  3979. "level"
  3980. ],
  3981. [
  3982. "==",
  3983. "level",
  3984. 0
  3985. ]
  3986. ]
  3987. ],
  3988. "layout": {
  3989. "icon-image": "{class}_11",
  3990. "text-anchor": "top",
  3991. "text-field": "{name:nonlatin}",
  3992. "text-font": [
  3993. "Noto Sans Regular"
  3994. ],
  3995. "text-max-width": 9,
  3996. "text-offset": [
  3997. 0,
  3998. 0.6
  3999. ],
  4000. "text-padding": 2,
  4001. "text-size": 12,
  4002. "visibility": "visible"
  4003. },
  4004. "paint": {
  4005. "text-color": "#666",
  4006. "text-halo-blur": 0.5,
  4007. "text-halo-color": "#ffffff",
  4008. "text-halo-width": 1
  4009. }
  4010. },
  4011. {
  4012. "id": "poi-level-2",
  4013. "type": "symbol",
  4014. "source": "openmaptiles",
  4015. "source-layer": "poi",
  4016. "minzoom": 15,
  4017. "filter": [
  4018. "all",
  4019. [
  4020. "==",
  4021. "$type",
  4022. "Point"
  4023. ],
  4024. [
  4025. "<=",
  4026. "rank",
  4027. 24
  4028. ],
  4029. [
  4030. ">=",
  4031. "rank",
  4032. 15
  4033. ],
  4034. [
  4035. "any",
  4036. [
  4037. "!has",
  4038. "level"
  4039. ],
  4040. [
  4041. "==",
  4042. "level",
  4043. 0
  4044. ]
  4045. ]
  4046. ],
  4047. "layout": {
  4048. "icon-image": "{class}_11",
  4049. "text-anchor": "top",
  4050. "text-field": "{name:nonlatin}",
  4051. "text-font": [
  4052. "Noto Sans Regular"
  4053. ],
  4054. "text-max-width": 9,
  4055. "text-offset": [
  4056. 0,
  4057. 0.6
  4058. ],
  4059. "text-padding": 2,
  4060. "text-size": 12,
  4061. "visibility": "visible"
  4062. },
  4063. "paint": {
  4064. "text-color": "#666",
  4065. "text-halo-blur": 0.5,
  4066. "text-halo-color": "#ffffff",
  4067. "text-halo-width": 1
  4068. }
  4069. },
  4070. {
  4071. "id": "poi-level-1",
  4072. "type": "symbol",
  4073. "source": "openmaptiles",
  4074. "source-layer": "poi",
  4075. "minzoom": 14,
  4076. "filter": [
  4077. "all",
  4078. [
  4079. "==",
  4080. "$type",
  4081. "Point"
  4082. ],
  4083. [
  4084. "<=",
  4085. "rank",
  4086. 14
  4087. ],
  4088. [
  4089. "has",
  4090. "name"
  4091. ],
  4092. [
  4093. "any",
  4094. [
  4095. "!has",
  4096. "level"
  4097. ],
  4098. [
  4099. "==",
  4100. "level",
  4101. 0
  4102. ]
  4103. ]
  4104. ],
  4105. "layout": {
  4106. "icon-image": "{class}_11",
  4107. "text-anchor": "top",
  4108. "text-field": "{name:nonlatin}",
  4109. "text-font": [
  4110. "Noto Sans Regular"
  4111. ],
  4112. "text-max-width": 9,
  4113. "text-offset": [
  4114. 0,
  4115. 0.6
  4116. ],
  4117. "text-padding": 2,
  4118. "text-size": 12,
  4119. "visibility": "visible"
  4120. },
  4121. "paint": {
  4122. "text-color": "#666",
  4123. "text-halo-blur": 0.5,
  4124. "text-halo-color": "#ffffff",
  4125. "text-halo-width": 1
  4126. }
  4127. },
  4128. {
  4129. "id": "poi-railway",
  4130. "type": "symbol",
  4131. "source": "openmaptiles",
  4132. "source-layer": "poi",
  4133. "minzoom": 13,
  4134. "filter": [
  4135. "all",
  4136. [
  4137. "==",
  4138. "$type",
  4139. "Point"
  4140. ],
  4141. [
  4142. "has",
  4143. "name"
  4144. ],
  4145. [
  4146. "==",
  4147. "class",
  4148. "railway"
  4149. ],
  4150. [
  4151. "==",
  4152. "subclass",
  4153. "station"
  4154. ]
  4155. ],
  4156. "layout": {
  4157. "icon-allow-overlap": false,
  4158. "icon-ignore-placement": false,
  4159. "icon-image": "{class}_11",
  4160. "icon-optional": false,
  4161. "text-allow-overlap": false,
  4162. "text-anchor": "top",
  4163. "text-field": "{name:nonlatin}",
  4164. "text-font": [
  4165. "Noto Sans Regular"
  4166. ],
  4167. "text-ignore-placement": false,
  4168. "text-max-width": 9,
  4169. "text-offset": [
  4170. 0,
  4171. 0.6
  4172. ],
  4173. "text-optional": true,
  4174. "text-padding": 2,
  4175. "text-size": 12
  4176. },
  4177. "paint": {
  4178. "text-color": "#666",
  4179. "text-halo-blur": 0.5,
  4180. "text-halo-color": "#ffffff",
  4181. "text-halo-width": 1
  4182. }
  4183. },
  4184. {
  4185. "id": "road_oneway",
  4186. "type": "symbol",
  4187. "source": "openmaptiles",
  4188. "source-layer": "transportation",
  4189. "minzoom": 15,
  4190. "filter": [
  4191. "all",
  4192. [
  4193. "==",
  4194. "oneway",
  4195. 1
  4196. ],
  4197. [
  4198. "in",
  4199. "class",
  4200. "motorway",
  4201. "trunk",
  4202. "primary",
  4203. "secondary",
  4204. "tertiary",
  4205. "minor",
  4206. "service"
  4207. ]
  4208. ],
  4209. "layout": {
  4210. "icon-image": "oneway",
  4211. "icon-padding": 2,
  4212. "icon-rotate": 90,
  4213. "icon-rotation-alignment": "map",
  4214. "icon-size": {
  4215. "stops": [
  4216. [
  4217. 15,
  4218. 0.5
  4219. ],
  4220. [
  4221. 19,
  4222. 1
  4223. ]
  4224. ]
  4225. },
  4226. "symbol-placement": "line",
  4227. "symbol-spacing": 75
  4228. },
  4229. "paint": {
  4230. "icon-opacity": 0.5
  4231. }
  4232. },
  4233. {
  4234. "id": "road_oneway_opposite",
  4235. "type": "symbol",
  4236. "source": "openmaptiles",
  4237. "source-layer": "transportation",
  4238. "minzoom": 15,
  4239. "filter": [
  4240. "all",
  4241. [
  4242. "==",
  4243. "oneway",
  4244. -1
  4245. ],
  4246. [
  4247. "in",
  4248. "class",
  4249. "motorway",
  4250. "trunk",
  4251. "primary",
  4252. "secondary",
  4253. "tertiary",
  4254. "minor",
  4255. "service"
  4256. ]
  4257. ],
  4258. "layout": {
  4259. "icon-image": "oneway",
  4260. "icon-padding": 2,
  4261. "icon-rotate": -90,
  4262. "icon-rotation-alignment": "map",
  4263. "icon-size": {
  4264. "stops": [
  4265. [
  4266. 15,
  4267. 0.5
  4268. ],
  4269. [
  4270. 19,
  4271. 1
  4272. ]
  4273. ]
  4274. },
  4275. "symbol-placement": "line",
  4276. "symbol-spacing": 75
  4277. },
  4278. "paint": {
  4279. "icon-opacity": 0.5
  4280. }
  4281. },
  4282. {
  4283. "id": "highway-name-path",
  4284. "type": "symbol",
  4285. "source": "openmaptiles",
  4286. "source-layer": "transportation_name",
  4287. "minzoom": 15.5,
  4288. "filter": [
  4289. "==",
  4290. "class",
  4291. "path"
  4292. ],
  4293. "layout": {
  4294. "symbol-placement": "line",
  4295. "text-field": "{name:latin} {name:nonlatin}",
  4296. "text-font": [
  4297. "Noto Sans Regular"
  4298. ],
  4299. "text-rotation-alignment": "map",
  4300. "text-size": {
  4301. "base": 1,
  4302. "stops": [
  4303. [
  4304. 13,
  4305. 12
  4306. ],
  4307. [
  4308. 14,
  4309. 13
  4310. ]
  4311. ]
  4312. }
  4313. },
  4314. "paint": {
  4315. "text-color": "hsl(30, 23%, 62%)",
  4316. "text-halo-color": "#f8f4f0",
  4317. "text-halo-width": 0.5
  4318. }
  4319. },
  4320. {
  4321. "id": "highway-name-minor",
  4322. "type": "symbol",
  4323. "source": "openmaptiles",
  4324. "source-layer": "transportation_name",
  4325. "minzoom": 15,
  4326. "filter": [
  4327. "all",
  4328. [
  4329. "==",
  4330. "$type",
  4331. "LineString"
  4332. ],
  4333. [
  4334. "in",
  4335. "class",
  4336. "minor",
  4337. "service",
  4338. "track"
  4339. ]
  4340. ],
  4341. "layout": {
  4342. "symbol-placement": "line",
  4343. "text-field": "{name:latin} {name:nonlatin}",
  4344. "text-font": [
  4345. "Noto Sans Regular"
  4346. ],
  4347. "text-rotation-alignment": "map",
  4348. "text-size": {
  4349. "base": 1,
  4350. "stops": [
  4351. [
  4352. 13,
  4353. 12
  4354. ],
  4355. [
  4356. 14,
  4357. 13
  4358. ]
  4359. ]
  4360. }
  4361. },
  4362. "paint": {
  4363. "text-color": "#765",
  4364. "text-halo-blur": 0.5,
  4365. "text-halo-width": 1
  4366. }
  4367. },
  4368. {
  4369. "id": "highway-name-major",
  4370. "type": "symbol",
  4371. "source": "openmaptiles",
  4372. "source-layer": "transportation_name",
  4373. "minzoom": 12.2,
  4374. "filter": [
  4375. "in",
  4376. "class",
  4377. "primary",
  4378. "secondary",
  4379. "tertiary",
  4380. "trunk"
  4381. ],
  4382. "layout": {
  4383. "symbol-placement": "line",
  4384. "text-field": "{name:latin} {name:nonlatin}",
  4385. "text-font": [
  4386. "Noto Sans Regular"
  4387. ],
  4388. "text-rotation-alignment": "map",
  4389. "text-size": {
  4390. "base": 1,
  4391. "stops": [
  4392. [
  4393. 13,
  4394. 12
  4395. ],
  4396. [
  4397. 14,
  4398. 13
  4399. ]
  4400. ]
  4401. }
  4402. },
  4403. "paint": {
  4404. "text-color": "#765",
  4405. "text-halo-blur": 0.5,
  4406. "text-halo-width": 1
  4407. }
  4408. },
  4409. {
  4410. "id": "highway-shield",
  4411. "type": "symbol",
  4412. "source": "openmaptiles",
  4413. "source-layer": "transportation_name",
  4414. "minzoom": 8,
  4415. "filter": [
  4416. "all",
  4417. [
  4418. "<=",
  4419. "ref_length",
  4420. 6
  4421. ],
  4422. [
  4423. "==",
  4424. "$type",
  4425. "LineString"
  4426. ],
  4427. [
  4428. "!in",
  4429. "network",
  4430. "us-interstate",
  4431. "us-highway",
  4432. "us-state"
  4433. ]
  4434. ],
  4435. "layout": {
  4436. "icon-image": "road_{ref_length}",
  4437. "icon-rotation-alignment": "viewport",
  4438. "icon-size": 1,
  4439. "symbol-placement": {
  4440. "base": 1,
  4441. "stops": [
  4442. [
  4443. 10,
  4444. "point"
  4445. ],
  4446. [
  4447. 11,
  4448. "line"
  4449. ]
  4450. ]
  4451. },
  4452. "symbol-spacing": 200,
  4453. "text-field": "{ref}",
  4454. "text-font": [
  4455. "Noto Sans Regular"
  4456. ],
  4457. "text-rotation-alignment": "viewport",
  4458. "text-size": 10
  4459. },
  4460. "paint": {}
  4461. },
  4462. {
  4463. "id": "highway-shield-us-interstate",
  4464. "type": "symbol",
  4465. "source": "openmaptiles",
  4466. "source-layer": "transportation_name",
  4467. "minzoom": 7,
  4468. "filter": [
  4469. "all",
  4470. [
  4471. "<=",
  4472. "ref_length",
  4473. 6
  4474. ],
  4475. [
  4476. "==",
  4477. "$type",
  4478. "LineString"
  4479. ],
  4480. [
  4481. "in",
  4482. "network",
  4483. "us-interstate"
  4484. ]
  4485. ],
  4486. "layout": {
  4487. "icon-image": "{network}_{ref_length}",
  4488. "icon-rotation-alignment": "viewport",
  4489. "icon-size": 1,
  4490. "symbol-placement": {
  4491. "base": 1,
  4492. "stops": [
  4493. [
  4494. 7,
  4495. "point"
  4496. ],
  4497. [
  4498. 7,
  4499. "line"
  4500. ],
  4501. [
  4502. 8,
  4503. "line"
  4504. ]
  4505. ]
  4506. },
  4507. "symbol-spacing": 200,
  4508. "text-field": "{ref}",
  4509. "text-font": [
  4510. "Noto Sans Regular"
  4511. ],
  4512. "text-rotation-alignment": "viewport",
  4513. "text-size": 10
  4514. },
  4515. "paint": {
  4516. "text-color": "rgba(0, 0, 0, 1)"
  4517. }
  4518. },
  4519. {
  4520. "id": "highway-shield-us-other",
  4521. "type": "symbol",
  4522. "source": "openmaptiles",
  4523. "source-layer": "transportation_name",
  4524. "minzoom": 9,
  4525. "filter": [
  4526. "all",
  4527. [
  4528. "<=",
  4529. "ref_length",
  4530. 6
  4531. ],
  4532. [
  4533. "==",
  4534. "$type",
  4535. "LineString"
  4536. ],
  4537. [
  4538. "in",
  4539. "network",
  4540. "us-highway",
  4541. "us-state"
  4542. ]
  4543. ],
  4544. "layout": {
  4545. "icon-image": "{network}_{ref_length}",
  4546. "icon-rotation-alignment": "viewport",
  4547. "icon-size": 1,
  4548. "symbol-placement": {
  4549. "base": 1,
  4550. "stops": [
  4551. [
  4552. 10,
  4553. "point"
  4554. ],
  4555. [
  4556. 11,
  4557. "line"
  4558. ]
  4559. ]
  4560. },
  4561. "symbol-spacing": 200,
  4562. "text-field": "{ref}",
  4563. "text-font": [
  4564. "Noto Sans Regular"
  4565. ],
  4566. "text-rotation-alignment": "viewport",
  4567. "text-size": 10
  4568. },
  4569. "paint": {
  4570. "text-color": "rgba(0, 0, 0, 1)"
  4571. }
  4572. },
  4573. {
  4574. "id": "airport-label-major",
  4575. "type": "symbol",
  4576. "source": "openmaptiles",
  4577. "source-layer": "aerodrome_label",
  4578. "minzoom": 10,
  4579. "filter": [
  4580. "all",
  4581. [
  4582. "has",
  4583. "iata"
  4584. ]
  4585. ],
  4586. "layout": {
  4587. "icon-image": "airport_11",
  4588. "icon-size": 1,
  4589. "text-anchor": "top",
  4590. "text-field": "{name:nonlatin}",
  4591. "text-font": [
  4592. "Noto Sans Regular"
  4593. ],
  4594. "text-max-width": 9,
  4595. "text-offset": [
  4596. 0,
  4597. 0.6
  4598. ],
  4599. "text-optional": true,
  4600. "text-padding": 2,
  4601. "text-size": 12,
  4602. "visibility": "visible"
  4603. },
  4604. "paint": {
  4605. "text-color": "#666",
  4606. "text-halo-blur": 0.5,
  4607. "text-halo-color": "#ffffff",
  4608. "text-halo-width": 1
  4609. }
  4610. },
  4611. {
  4612. "id": "place-village",
  4613. "type": "symbol",
  4614. "metadata": {
  4615. "mapbox:group": "1444849242106.713"
  4616. },
  4617. "source": "openmaptiles",
  4618. "source-layer": "place",
  4619. "filter": [
  4620. "==",
  4621. "class",
  4622. "village"
  4623. ],
  4624. "layout": {
  4625. "text-field": "{name:nonlatin}",
  4626. "text-font": [
  4627. "Noto Sans Regular"
  4628. ],
  4629. "text-max-width": 8,
  4630. "text-size": {
  4631. "base": 1.2,
  4632. "stops": [
  4633. [
  4634. 10,
  4635. 12
  4636. ],
  4637. [
  4638. 15,
  4639. 22
  4640. ]
  4641. ]
  4642. },
  4643. "visibility": "visible"
  4644. },
  4645. "paint": {
  4646. "text-color": "#333",
  4647. "text-halo-color": "rgba(255,255,255,0.8)",
  4648. "text-halo-width": 1.2
  4649. }
  4650. },
  4651. {
  4652. "id": "place-town",
  4653. "type": "symbol",
  4654. "metadata": {
  4655. "mapbox:group": "1444849242106.713"
  4656. },
  4657. "source": "openmaptiles",
  4658. "source-layer": "place",
  4659. "filter": [
  4660. "==",
  4661. "class",
  4662. "town"
  4663. ],
  4664. "layout": {
  4665. "text-field": "{name:nonlatin}",
  4666. "text-font": [
  4667. "Noto Sans Regular"
  4668. ],
  4669. "text-max-width": 8,
  4670. "text-size": {
  4671. "base": 1.2,
  4672. "stops": [
  4673. [
  4674. 10,
  4675. 14
  4676. ],
  4677. [
  4678. 15,
  4679. 24
  4680. ]
  4681. ]
  4682. },
  4683. "visibility": "visible"
  4684. },
  4685. "paint": {
  4686. "text-color": "#333",
  4687. "text-halo-color": "rgba(255,255,255,0.8)",
  4688. "text-halo-width": 1.2
  4689. }
  4690. },
  4691. {
  4692. "id": "place-city",
  4693. "type": "symbol",
  4694. "metadata": {
  4695. "mapbox:group": "1444849242106.713"
  4696. },
  4697. "source": "openmaptiles",
  4698. "source-layer": "place",
  4699. "filter": [
  4700. "all",
  4701. [
  4702. "!=",
  4703. "capital",
  4704. 2
  4705. ],
  4706. [
  4707. "==",
  4708. "class",
  4709. "city"
  4710. ]
  4711. ],
  4712. "layout": {
  4713. "text-field": "{name:nonlatin}",
  4714. "text-font": [
  4715. "Noto Sans Regular"
  4716. ],
  4717. "text-max-width": 8,
  4718. "text-size": {
  4719. "base": 1.2,
  4720. "stops": [
  4721. [
  4722. 7,
  4723. 14
  4724. ],
  4725. [
  4726. 11,
  4727. 24
  4728. ]
  4729. ]
  4730. },
  4731. "visibility": "visible"
  4732. },
  4733. "paint": {
  4734. "text-color": "#333",
  4735. "text-halo-color": "rgba(255,255,255,0.8)",
  4736. "text-halo-width": 1.2
  4737. }
  4738. },
  4739. {
  4740. "id": "place-city-capital",
  4741. "type": "symbol",
  4742. "metadata": {
  4743. "mapbox:group": "1444849242106.713"
  4744. },
  4745. "source": "openmaptiles",
  4746. "source-layer": "place",
  4747. "filter": [
  4748. "all",
  4749. [
  4750. "==",
  4751. "capital",
  4752. 2
  4753. ],
  4754. [
  4755. "==",
  4756. "class",
  4757. "city"
  4758. ]
  4759. ],
  4760. "layout": {
  4761. "icon-image": "star_11",
  4762. "icon-size": 0.8,
  4763. "text-anchor": "left",
  4764. "text-field": "{name:nonlatin}",
  4765. "text-font": [
  4766. "Noto Sans Regular"
  4767. ],
  4768. "text-max-width": 8,
  4769. "text-offset": [
  4770. 0.4,
  4771. 0
  4772. ],
  4773. "text-size": {
  4774. "base": 1.2,
  4775. "stops": [
  4776. [
  4777. 7,
  4778. 14
  4779. ],
  4780. [
  4781. 11,
  4782. 24
  4783. ]
  4784. ]
  4785. },
  4786. "visibility": "visible"
  4787. },
  4788. "paint": {
  4789. "text-color": "#333",
  4790. "text-halo-color": "rgba(255,255,255,0.8)",
  4791. "text-halo-width": 1.2
  4792. }
  4793. },
  4794. {
  4795. "id": "place-continent",
  4796. "type": "symbol",
  4797. "metadata": {
  4798. "mapbox:group": "1444849242106.713"
  4799. },
  4800. "source": "openmaptiles",
  4801. "source-layer": "place",
  4802. "maxzoom": 1,
  4803. "filter": [
  4804. "==",
  4805. "class",
  4806. "continent"
  4807. ],
  4808. "layout": {
  4809. "text-field": "{name:latin}",
  4810. "text-font": [
  4811. "Noto Sans Bold"
  4812. ],
  4813. "text-max-width": 6.25,
  4814. "text-size": 14,
  4815. "text-transform": "uppercase",
  4816. "visibility": "visible"
  4817. },
  4818. "paint": {
  4819. "text-color": "#334",
  4820. "text-halo-blur": 1,
  4821. "text-halo-color": "rgba(255,255,255,0.8)",
  4822. "text-halo-width": 2
  4823. }
  4824. }
  4825. ],
  4826. "id": "bright"
  4827. }