├── .browserslistrc ├── .circleci └── config.yml ├── .editorconfig ├── .eslintrc ├── .flowconfig ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── deploy-package.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .stylelintrc ├── .topissuesrc ├── ARCHITECTURE.md ├── CHANGELOG.md ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── RFC_TEMPLATE.md ├── _config.yml ├── babel.config.js ├── batfish.config.js ├── bench ├── .eslintrc ├── README.md ├── benchmarks.js ├── benchmarks │ ├── expressions.js │ ├── filter_create.js │ ├── filter_evaluate.js │ ├── layers.js │ ├── layout.js │ ├── layout_dds.js │ ├── map_load.js │ ├── paint.js │ ├── query_box.js │ ├── query_point.js │ ├── style_layer_create.js │ └── style_validate.js ├── benchmarks_generated-v0.43.0.js ├── benchmarks_view.js ├── data │ ├── 785.vector.pbf │ ├── empty.json │ ├── filters.json │ └── naturalearth-land.json ├── index.html ├── lib │ ├── access_token.js │ ├── axis.js │ ├── benchmark.js │ ├── create_map.js │ ├── create_style.js │ └── statistics.js └── unit │ ├── bench_transform.js │ ├── feature_filter │ └── big.js │ └── function │ └── profile.js ├── cloudformation ├── travis-cn.template └── travis.template ├── debug ├── .eslintrc ├── 2762.html ├── 3895.html ├── access_token.js ├── basic │ ├── defaults.js │ ├── google.html │ ├── google.js │ ├── index.html │ ├── main.js │ ├── mapbox_google_overlay.js │ ├── package.json │ ├── readme.md │ └── unpack_tiles.js ├── canvas.html ├── chinese.html ├── circles.html ├── cluster.html ├── color_spaces.html ├── cross_source_points.geojson ├── csp.html ├── dark-v9.js ├── debug.html ├── events.html ├── expressions.html ├── heatmap.html ├── hillshade.html ├── image.html ├── index.html ├── light-v9.js ├── markers.html ├── multiple.html ├── no_wrap.html ├── query_features.html ├── satellite.html ├── setstyle.html ├── style_property_editor.js ├── textsize.html ├── tinysdf.html ├── video.html └── wms.html ├── dist ├── mapbox-gl.css ├── mapbox-gl.js ├── mapbox-gl.js.map └── svg │ ├── mapboxgl-ctrl-attrib.svg │ ├── mapboxgl-ctrl-compass.svg │ ├── mapboxgl-ctrl-geolocate.svg │ ├── mapboxgl-ctrl-zoom-in.svg │ └── mapboxgl-ctrl-zoom-out.svg ├── docs ├── .eslintrc ├── README.md ├── components │ ├── application-wrapper.js │ ├── copyable.js │ ├── example.js │ ├── expression-metadata.js │ ├── left_nav.js │ ├── md.js │ ├── page_shell.js │ ├── prism_highlight.css │ ├── prism_highlight.js │ ├── quickstart.js │ ├── redirect.js │ ├── site.css │ ├── top_nav.js │ └── urls.js ├── documentation.yml └── pages │ ├── api.js │ ├── assets │ ├── earthquakes.geojson │ ├── gallery.png │ ├── google.png │ ├── hike.geojson │ ├── indoor-3d-map.geojson │ ├── landinsight.png │ ├── logo.png │ ├── radar.gif │ ├── radar0.gif │ ├── radar1.gif │ ├── radar2.gif │ ├── radar3.gif │ ├── radar4.gif │ ├── rendertiles.png │ ├── significant-earthquakes-2015.geojson │ └── washington-monument.jpg │ ├── dist │ ├── example │ ├── .eslintrc │ ├── 3d-buildings.html │ ├── 3d-buildings.js │ ├── 3d-extrusion-floorplan.html │ ├── 3d-extrusion-floorplan.js │ ├── add-image-generated.html │ ├── add-image-generated.js │ ├── add-image.html │ ├── add-image.js │ ├── adjust-layer-opacity.html │ ├── adjust-layer-opacity.js │ ├── animate-a-line.html │ ├── animate-a-line.js │ ├── animate-images.html │ ├── animate-images.js │ ├── animate-point-along-line.html │ ├── animate-point-along-line.js │ ├── animate-point-along-route.html │ ├── animate-point-along-route.js │ ├── attribution-position.html │ ├── attribution-position.js │ ├── center-on-symbol.html │ ├── center-on-symbol.js │ ├── check-for-support.html │ ├── check-for-support.js │ ├── cluster.html │ ├── cluster.js │ ├── color-switcher.html │ ├── color-switcher.js │ ├── custom-marker-icons.html │ ├── custom-marker-icons.js │ ├── custom-style-id.html │ ├── custom-style-id.js │ ├── dancing-buildings.html │ ├── dancing-buildings.js │ ├── data-driven-circle-colors.html │ ├── data-driven-circle-colors.js │ ├── data-driven-lines.html │ ├── data-driven-lines.js │ ├── data-join.html │ ├── data-join.js │ ├── disable-rotation.html │ ├── disable-rotation.js │ ├── disable-scroll-zoom.html │ ├── disable-scroll-zoom.js │ ├── drag-a-point.html │ ├── drag-a-point.js │ ├── featuresat.js │ ├── filter-features-within-map-view.html │ ├── filter-features-within-map-view.js │ ├── filter-markers-by-input.html │ ├── filter-markers-by-input.js │ ├── filter-markers.html │ ├── filter-markers.js │ ├── fitbounds.html │ ├── fitbounds.js │ ├── flyto-options.html │ ├── flyto-options.js │ ├── flyto.html │ ├── flyto.js │ ├── fullscreen.html │ ├── fullscreen.js │ ├── game-controls.html │ ├── game-controls.js │ ├── geojson-layer-in-stack.html │ ├── geojson-layer-in-stack.js │ ├── geojson-line.html │ ├── geojson-line.js │ ├── geojson-markers.html │ ├── geojson-markers.js │ ├── geojson-polygon.html │ ├── geojson-polygon.js │ ├── heatmap-layer.html │ ├── heatmap-layer.js │ ├── heatmap.js │ ├── hillshade.html │ ├── hillshade.js │ ├── hover-styles.html │ ├── hover-styles.js │ ├── image-on-a-map.html │ ├── image-on-a-map.js │ ├── interactive-false.html │ ├── interactive-false.js │ ├── language-switch.html │ ├── language-switch.js │ ├── live-geojson.html │ ├── live-geojson.js │ ├── live-update-feature.html │ ├── live-update-feature.js │ ├── local-ideographs.html │ ├── local-ideographs.js │ ├── locate-user.html │ ├── locate-user.js │ ├── map-tiles.html │ ├── map-tiles.js │ ├── mapbox-gl-compare.html │ ├── mapbox-gl-compare.js │ ├── mapbox-gl-directions.html │ ├── mapbox-gl-directions.js │ ├── mapbox-gl-draw.html │ ├── mapbox-gl-draw.js │ ├── mapbox-gl-geocoder.html │ ├── mapbox-gl-geocoder.js │ ├── mapbox-gl-rtl-text.html │ ├── mapbox-gl-rtl-text.js │ ├── mapbox-gl-supported.js │ ├── marker-popup.js │ ├── measure.html │ ├── measure.js │ ├── mouse-position.html │ ├── mouse-position.js │ ├── multiple-geometries.html │ ├── multiple-geometries.js │ ├── navigation.html │ ├── navigation.js │ ├── playback-locations.html │ ├── playback-locations.js │ ├── point-from-geocoder-result.html │ ├── point-from-geocoder-result.js │ ├── polygon-popup-on-click.html │ ├── polygon-popup-on-click.js │ ├── popup-on-click.html │ ├── popup-on-click.js │ ├── popup-on-hover.html │ ├── popup-on-hover.js │ ├── popup.html │ ├── popup.js │ ├── query-similar-features.html │ ├── query-similar-features.js │ ├── queryrenderedfeatures-around-point.html │ ├── queryrenderedfeatures-around-point.js │ ├── queryrenderedfeatures.html │ ├── queryrenderedfeatures.js │ ├── restrict-bounds.html │ ├── restrict-bounds.js │ ├── rotating-controllable-marker.html │ ├── rotating-controllable-marker.js │ ├── satellite-map.html │ ├── satellite-map.js │ ├── scroll-fly-to.html │ ├── scroll-fly-to.js │ ├── set-perspective.html │ ├── set-perspective.js │ ├── set-popup.html │ ├── set-popup.js │ ├── setstyle.html │ ├── setstyle.js │ ├── simple-map.html │ ├── simple-map.js │ ├── third-party.html │ ├── third-party.js │ ├── timeline-animation.html │ ├── timeline-animation.js │ ├── toggle-interaction-handlers.html │ ├── toggle-interaction-handlers.js │ ├── toggle-layers.html │ ├── toggle-layers.js │ ├── updating-choropleth.html │ ├── updating-choropleth.js │ ├── using-box-queryrenderedfeatures.html │ ├── using-box-queryrenderedfeatures.js │ ├── using-featuresin.js │ ├── vector-source.html │ ├── vector-source.js │ ├── video-on-a-map.html │ ├── video-on-a-map.js │ ├── wms.html │ ├── wms.js │ ├── zoomto-linestring.html │ └── zoomto-linestring.js │ ├── examples.js │ ├── index.js │ ├── plugins.js │ ├── roadmap.js │ └── style-spec.js ├── flow-typed ├── geojson.js ├── mapbox-gl-js-test.js ├── mapbox-gl-supported.js ├── mapbox-unitbezier.js ├── pbf.js ├── point-geometry.js ├── pointlike.js ├── shelf-pack.js ├── style-spec.js ├── unitbezier.js ├── vector-tile.js └── window.js ├── package.json ├── src ├── .eslintrc ├── basic │ ├── painter.js │ ├── renderer.js │ ├── source_cache.js │ ├── style.js │ └── tileSpec.js ├── data │ ├── array_types.js │ ├── bucket.js │ ├── bucket │ │ ├── circle_attributes.js │ │ ├── circle_bucket.js │ │ ├── fill_attributes.js │ │ ├── fill_bucket.js │ │ ├── fill_extrusion_attributes.js │ │ ├── fill_extrusion_bucket.js │ │ ├── heatmap_bucket.js │ │ ├── line_attributes.js │ │ ├── line_bucket.js │ │ ├── symbol_attributes.js │ │ └── symbol_bucket.js │ ├── dem_data.js │ ├── extent.js │ ├── feature_index.js │ ├── index_array_type.js │ ├── load_geometry.js │ ├── pos_attributes.js │ ├── program_configuration.js │ ├── raster_bounds_attributes.js │ └── segment.js ├── geo │ ├── coordinate.js │ ├── lng_lat.js │ ├── lng_lat_bounds.js │ └── transform.js ├── gl │ ├── color_mode.js │ ├── context.js │ ├── depth_mode.js │ ├── framebuffer.js │ ├── index_buffer.js │ ├── stencil_mode.js │ ├── types.js │ ├── value.js │ └── vertex_buffer.js ├── index.js ├── render │ ├── draw_background.js │ ├── draw_circle.js │ ├── draw_collision_debug.js │ ├── draw_debug.js │ ├── draw_fill.js │ ├── draw_fill_extrusion.js │ ├── draw_heatmap.js │ ├── draw_hillshade.js │ ├── draw_line.js │ ├── draw_raster.js │ ├── draw_symbol.js │ ├── glyph_atlas.js │ ├── glyph_manager.js │ ├── image_atlas.js │ ├── image_manager.js │ ├── line_atlas.js │ ├── painter.js │ ├── pattern.js │ ├── program.js │ ├── texture.js │ ├── tile_mask.js │ └── vertex_array_object.js ├── shaders │ ├── README.md │ ├── _prelude.fragment.glsl │ ├── _prelude.vertex.glsl │ ├── background.fragment.glsl │ ├── background.vertex.glsl │ ├── background_pattern.fragment.glsl │ ├── background_pattern.vertex.glsl │ ├── circle.fragment.glsl │ ├── circle.vertex.glsl │ ├── clipping_mask.fragment.glsl │ ├── clipping_mask.vertex.glsl │ ├── collision_box.fragment.glsl │ ├── collision_box.vertex.glsl │ ├── collision_circle.fragment.glsl │ ├── collision_circle.vertex.glsl │ ├── debug.fragment.glsl │ ├── debug.vertex.glsl │ ├── encode_attribute.js │ ├── extrusion_texture.fragment.glsl │ ├── extrusion_texture.vertex.glsl │ ├── fill.fragment.glsl │ ├── fill.vertex.glsl │ ├── fill_extrusion.fragment.glsl │ ├── fill_extrusion.vertex.glsl │ ├── fill_extrusion_pattern.fragment.glsl │ ├── fill_extrusion_pattern.vertex.glsl │ ├── fill_outline.fragment.glsl │ ├── fill_outline.vertex.glsl │ ├── fill_outline_pattern.fragment.glsl │ ├── fill_outline_pattern.vertex.glsl │ ├── fill_pattern.fragment.glsl │ ├── fill_pattern.vertex.glsl │ ├── heatmap.fragment.glsl │ ├── heatmap.vertex.glsl │ ├── heatmap_texture.fragment.glsl │ ├── heatmap_texture.vertex.glsl │ ├── hillshade.fragment.glsl │ ├── hillshade.vertex.glsl │ ├── hillshade_prepare.fragment.glsl │ ├── hillshade_prepare.vertex.glsl │ ├── index.js │ ├── line.fragment.glsl │ ├── line.vertex.glsl │ ├── line_pattern.fragment.glsl │ ├── line_pattern.vertex.glsl │ ├── line_sdf.fragment.glsl │ ├── line_sdf.vertex.glsl │ ├── raster.fragment.glsl │ ├── raster.vertex.glsl │ ├── symbol_icon.fragment.glsl │ ├── symbol_icon.vertex.glsl │ ├── symbol_sdf.fragment.glsl │ └── symbol_sdf.vertex.glsl ├── source │ ├── canvas_source.js │ ├── geojson_source.js │ ├── geojson_worker_source.js │ ├── geojson_wrapper.js │ ├── image_source.js │ ├── load_tilejson.js │ ├── pixels_to_tile_units.js │ ├── query_features.js │ ├── raster_dem_tile_source.js │ ├── raster_dem_tile_worker_source.js │ ├── raster_tile_source.js │ ├── rtl_text_plugin.js │ ├── source.js │ ├── source_cache.js │ ├── tile.js │ ├── tile_bounds.js │ ├── tile_id.js │ ├── vector_tile_source.js │ ├── vector_tile_worker_source.js │ ├── video_source.js │ ├── worker.js │ ├── worker_source.js │ └── worker_tile.js ├── style-spec │ ├── .eslintrc │ ├── CHANGELOG.md │ ├── README.md │ ├── bin │ │ ├── gl-style-composite │ │ ├── gl-style-format │ │ ├── gl-style-migrate │ │ └── gl-style-validate │ ├── build │ │ └── strictify.js │ ├── composite.js │ ├── declass.js │ ├── deref.js │ ├── diff.js │ ├── error │ │ ├── parsing_error.js │ │ └── validation_error.js │ ├── expression │ │ ├── compound_expression.js │ │ ├── definitions │ │ │ ├── array.js │ │ │ ├── assertion.js │ │ │ ├── at.js │ │ │ ├── case.js │ │ │ ├── coalesce.js │ │ │ ├── coercion.js │ │ │ ├── equals.js │ │ │ ├── index.js │ │ │ ├── interpolate.js │ │ │ ├── let.js │ │ │ ├── literal.js │ │ │ ├── match.js │ │ │ ├── step.js │ │ │ └── var.js │ │ ├── evaluation_context.js │ │ ├── expression.js │ │ ├── index.js │ │ ├── is_constant.js │ │ ├── parsing_context.js │ │ ├── parsing_error.js │ │ ├── runtime_error.js │ │ ├── scope.js │ │ ├── stops.js │ │ ├── types.js │ │ └── values.js │ ├── feature_filter │ │ ├── README.md │ │ └── index.js │ ├── format.js │ ├── function │ │ ├── convert.js │ │ └── index.js │ ├── group_by_layout.js │ ├── migrate.js │ ├── migrate │ │ ├── v8.js │ │ └── v9.js │ ├── package.json │ ├── reference │ │ ├── latest.js │ │ └── v8.json │ ├── style-spec.js │ ├── util │ │ ├── color.js │ │ ├── color_spaces.js │ │ ├── deep_equal.js │ │ ├── eval_support.js │ │ ├── extend.js │ │ ├── get_type.js │ │ ├── interpolate.js │ │ ├── ref_properties.js │ │ ├── result.js │ │ └── unbundle_jsonlint.js │ ├── validate │ │ ├── latest.js │ │ ├── validate.js │ │ ├── validate_array.js │ │ ├── validate_boolean.js │ │ ├── validate_color.js │ │ ├── validate_constants.js │ │ ├── validate_enum.js │ │ ├── validate_expression.js │ │ ├── validate_filter.js │ │ ├── validate_function.js │ │ ├── validate_glyphs_url.js │ │ ├── validate_layer.js │ │ ├── validate_layout_property.js │ │ ├── validate_light.js │ │ ├── validate_number.js │ │ ├── validate_object.js │ │ ├── validate_paint_property.js │ │ ├── validate_property.js │ │ ├── validate_source.js │ │ └── validate_string.js │ ├── validate_style.js │ └── validate_style.min.js ├── style │ ├── cross_faded.js │ ├── evaluation_parameters.js │ ├── light.js │ ├── load_glyph_range.js │ ├── load_sprite.js │ ├── parse_glyph_pbf.js │ ├── pauseable_placement.js │ ├── properties.js │ ├── query_utils.js │ ├── style.js │ ├── style_glyph.js │ ├── style_image.js │ ├── style_layer.js │ ├── style_layer │ │ ├── background_style_layer.js │ │ ├── background_style_layer_properties.js │ │ ├── circle_style_layer.js │ │ ├── circle_style_layer_properties.js │ │ ├── fill_extrusion_style_layer.js │ │ ├── fill_extrusion_style_layer_properties.js │ │ ├── fill_style_layer.js │ │ ├── fill_style_layer_properties.js │ │ ├── heatmap_style_layer.js │ │ ├── heatmap_style_layer_properties.js │ │ ├── hillshade_style_layer.js │ │ ├── hillshade_style_layer_properties.js │ │ ├── layer_properties.js.ejs │ │ ├── line_style_layer.js │ │ ├── line_style_layer_properties.js │ │ ├── raster_style_layer.js │ │ ├── raster_style_layer_properties.js │ │ ├── symbol_style_layer.js │ │ ├── symbol_style_layer_properties.js │ │ └── typed_style_layer.js │ ├── style_layer_index.js │ ├── validate_style.js │ └── zoom_history.js ├── symbol │ ├── anchor.js │ ├── check_max_angle.js │ ├── clip_line.js │ ├── collision_feature.js │ ├── collision_index.js │ ├── cross_tile_symbol_index.js │ ├── get_anchors.js │ ├── grid_index.js │ ├── mergelines.js │ ├── opacity_state.js │ ├── placement.js │ ├── projection.js │ ├── quads.js │ ├── shaping.js │ ├── symbol_layout.js │ ├── symbol_size.js │ └── transform_text.js ├── types │ ├── callback.js │ ├── tilejson.js │ └── transferable.js ├── ui │ ├── bind_handlers.js │ ├── camera.js │ ├── control │ │ ├── attribution_control.js │ │ ├── fullscreen_control.js │ │ ├── geolocate_control.js │ │ ├── logo_control.js │ │ ├── navigation_control.js │ │ └── scale_control.js │ ├── events.js │ ├── handler │ │ ├── box_zoom.js │ │ ├── dblclick_zoom.js │ │ ├── drag_pan.js │ │ ├── drag_rotate.js │ │ ├── keyboard.js │ │ ├── scroll_zoom.js │ │ └── touch_zoom_rotate.js │ ├── hash.js │ ├── map.js │ ├── marker.js │ └── popup.js └── util │ ├── actor.js │ ├── ajax.js │ ├── browser.js │ ├── browser │ ├── web_worker.js │ └── window.js │ ├── classify_rings.js │ ├── config.js │ ├── dictionary_coder.js │ ├── dispatcher.js │ ├── dom.js │ ├── evented.js │ ├── find_pole_of_inaccessibility.js │ ├── global_worker_pool.js │ ├── image.js │ ├── intersection_tests.js │ ├── is_char_in_unicode_block.js │ ├── lru_cache.js │ ├── mapbox.js │ ├── script_detection.js │ ├── smart_wrap.js │ ├── struct_array.js │ ├── struct_array.js.ejs │ ├── struct_array_layout.js.ejs │ ├── throttle.js │ ├── tile_cover.js │ ├── token.js │ ├── util.js │ ├── vectortile_to_geojson.js │ ├── verticalize_punctuation.js │ ├── web_worker.js │ ├── web_worker_transfer.js │ ├── window.js │ └── worker_pool.js ├── test ├── .eslintrc ├── README.md ├── build │ ├── browserify-test-fixture.js │ ├── dev.test.js │ ├── min.test.js │ └── style-spec.test.js ├── expected │ ├── text-shaping-default.json │ ├── text-shaping-linebreak.json │ ├── text-shaping-newline.json │ ├── text-shaping-newlines-in-middle.json │ ├── text-shaping-null.json │ └── text-shaping-spacing.json ├── expression.test.js ├── fixtures │ ├── 0-255.pbf │ ├── fontstack-glyphs.json │ ├── mbsv5-6-18-23.vector.pbf │ ├── source.json │ └── style.json ├── ignores.json ├── integration │ ├── .eslintrc │ ├── README.md │ ├── data │ │ ├── 121points.geojson │ │ ├── chinese.geojson │ │ ├── feature.geojson │ │ ├── invalid.geojson │ │ ├── linestring.geojson │ │ ├── malformed.geojson │ │ ├── places.geojson │ │ └── winding.geojson │ ├── expression-tests │ │ ├── acos │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── all │ │ │ ├── arity-0 │ │ │ │ └── test.json │ │ │ ├── arity-1 │ │ │ │ └── test.json │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ └── short-circuiting │ │ │ │ └── test.json │ │ ├── any │ │ │ ├── arity-0 │ │ │ │ └── test.json │ │ │ ├── arity-1 │ │ │ │ └── test.json │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ └── short-circuiting │ │ │ │ └── test.json │ │ ├── array │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ ├── implicit-1 │ │ │ │ └── test.json │ │ │ ├── implicit-2 │ │ │ │ └── test.json │ │ │ ├── implicit-3 │ │ │ │ └── test.json │ │ │ ├── item-type-and-length │ │ │ │ └── test.json │ │ │ └── item-type │ │ │ │ └── test.json │ │ ├── asin │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── at │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ └── infer-array-type │ │ │ │ └── test.json │ │ ├── atan │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── boolean │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ └── default-value │ │ │ │ └── test.json │ │ ├── case │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ ├── infer-array-type │ │ │ │ └── test.json │ │ │ └── precedence │ │ │ │ └── test.json │ │ ├── coalesce │ │ │ ├── argument-type-mismatch │ │ │ │ └── test.json │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ ├── error │ │ │ │ └── test.json │ │ │ ├── infer-array-type │ │ │ │ └── test.json │ │ │ ├── inference │ │ │ │ └── test.json │ │ │ └── null │ │ │ │ └── test.json │ │ ├── concat │ │ │ ├── arity-0 │ │ │ │ └── test.json │ │ │ ├── arity-1 │ │ │ │ └── test.json │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── constant-folding │ │ │ ├── evaluation-error │ │ │ │ └── test.json │ │ │ └── to-color │ │ │ │ └── test.json │ │ ├── cos │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── divide │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── downcase │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── e │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── equal │ │ │ ├── array │ │ │ │ └── test.json │ │ │ ├── color │ │ │ │ └── test.json │ │ │ ├── mismatch │ │ │ │ └── test.json │ │ │ ├── null-lhs │ │ │ │ └── test.json │ │ │ ├── null-rhs │ │ │ │ └── test.json │ │ │ ├── number │ │ │ │ └── test.json │ │ │ ├── object │ │ │ │ └── test.json │ │ │ ├── string │ │ │ │ └── test.json │ │ │ └── value │ │ │ │ └── test.json │ │ ├── geometry-type │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── get │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ ├── from-literal--missing │ │ │ │ └── test.json │ │ │ ├── from-literal │ │ │ │ └── test.json │ │ │ └── from-object-property │ │ │ │ └── test.json │ │ ├── greater │ │ │ ├── boolean │ │ │ │ └── test.json │ │ │ ├── mismatch │ │ │ │ └── test.json │ │ │ ├── null │ │ │ │ └── test.json │ │ │ ├── number │ │ │ │ └── test.json │ │ │ ├── string │ │ │ │ └── test.json │ │ │ └── value │ │ │ │ └── test.json │ │ ├── greater_or_equal │ │ │ ├── boolean │ │ │ │ └── test.json │ │ │ ├── mismatch │ │ │ │ └── test.json │ │ │ ├── null │ │ │ │ └── test.json │ │ │ ├── number │ │ │ │ └── test.json │ │ │ ├── string │ │ │ │ └── test.json │ │ │ └── value │ │ │ │ └── test.json │ │ ├── has │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── heatmap-density │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── id │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── interpolate │ │ │ ├── cubic-bezier-3-args │ │ │ │ └── test.json │ │ │ ├── cubic-bezier-5-args │ │ │ │ └── test.json │ │ │ ├── cubic-bezier-invalid-control-point │ │ │ │ └── test.json │ │ │ ├── cubic-bezier │ │ │ │ └── test.json │ │ │ ├── duplicate_stops │ │ │ │ └── test.json │ │ │ ├── exponential-number-array │ │ │ │ └── test.json │ │ │ ├── exponential-single-stop │ │ │ │ └── test.json │ │ │ ├── exponential-string-array │ │ │ │ └── test.json │ │ │ ├── exponential-uninterpolatable-numeric-array │ │ │ │ └── test.json │ │ │ ├── exponential │ │ │ │ └── test.json │ │ │ ├── infer-array-type │ │ │ │ └── test.json │ │ │ ├── linear-color │ │ │ │ └── test.json │ │ │ ├── linear-many-stops │ │ │ │ └── test.json │ │ │ └── linear │ │ │ │ └── test.json │ │ ├── length │ │ │ ├── array │ │ │ │ └── test.json │ │ │ └── string │ │ │ │ └── test.json │ │ ├── less │ │ │ ├── boolean │ │ │ │ └── test.json │ │ │ ├── mismatch │ │ │ │ └── test.json │ │ │ ├── null │ │ │ │ └── test.json │ │ │ ├── number │ │ │ │ └── test.json │ │ │ ├── string │ │ │ │ └── test.json │ │ │ └── value │ │ │ │ └── test.json │ │ ├── less_or_equal │ │ │ ├── boolean │ │ │ │ └── test.json │ │ │ ├── mismatch │ │ │ │ └── test.json │ │ │ ├── null │ │ │ │ └── test.json │ │ │ ├── number │ │ │ │ └── test.json │ │ │ ├── string │ │ │ │ └── test.json │ │ │ └── value │ │ │ │ └── test.json │ │ ├── let │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ ├── invalid-name │ │ │ │ └── test.json │ │ │ ├── nested │ │ │ │ └── test.json │ │ │ ├── property-function │ │ │ │ └── test.json │ │ │ ├── shadow │ │ │ │ └── test.json │ │ │ ├── unbound │ │ │ │ └── test.json │ │ │ └── zoom │ │ │ │ └── test.json │ │ ├── literal │ │ │ ├── boolean-array │ │ │ │ └── test.json │ │ │ ├── empty │ │ │ │ └── test.json │ │ │ ├── infer-empty-array-type │ │ │ │ └── test.json │ │ │ ├── mixed-primitive-array │ │ │ │ └── test.json │ │ │ ├── multiple-args │ │ │ │ └── test.json │ │ │ ├── nested-array │ │ │ │ └── test.json │ │ │ ├── number-array │ │ │ │ └── test.json │ │ │ ├── object │ │ │ │ └── test.json │ │ │ ├── string-array │ │ │ │ └── test.json │ │ │ ├── string │ │ │ │ └── test.json │ │ │ └── u2028u2029 │ │ │ │ └── test.json │ │ ├── ln │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── ln2 │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── log10 │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── log2 │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── match │ │ │ ├── arity-0 │ │ │ │ └── test.json │ │ │ ├── arity-1 │ │ │ │ └── test.json │ │ │ ├── arity-2 │ │ │ │ └── test.json │ │ │ ├── arity-3 │ │ │ │ └── test.json │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ ├── empty-case │ │ │ │ └── test.json │ │ │ ├── infer-array-type │ │ │ │ └── test.json │ │ │ ├── label-array │ │ │ │ └── test.json │ │ │ ├── label-boolean │ │ │ │ └── test.json │ │ │ ├── label-non-integer │ │ │ │ └── test.json │ │ │ ├── label-null │ │ │ │ └── test.json │ │ │ ├── label-number │ │ │ │ └── test.json │ │ │ ├── label-object │ │ │ │ └── test.json │ │ │ ├── label-overflow │ │ │ │ └── test.json │ │ │ ├── label-string-invalid-identifier │ │ │ │ └── test.json │ │ │ ├── label-string │ │ │ │ └── test.json │ │ │ ├── mismatch-input │ │ │ │ └── test.json │ │ │ ├── mismatch-label-1 │ │ │ │ └── test.json │ │ │ ├── mismatch-label-2 │ │ │ │ └── test.json │ │ │ ├── mismatch-output │ │ │ │ └── test.json │ │ │ ├── mixed-type │ │ │ │ └── test.json │ │ │ ├── multi-value │ │ │ │ └── test.json │ │ │ ├── unreachable-branch-1 │ │ │ │ └── test.json │ │ │ └── unreachable-branch-2 │ │ │ │ └── test.json │ │ ├── max │ │ │ ├── arity-0 │ │ │ │ └── test.json │ │ │ ├── arity-1 │ │ │ │ └── test.json │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── min │ │ │ ├── arity-0 │ │ │ │ └── test.json │ │ │ ├── arity-1 │ │ │ │ └── test.json │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── minus │ │ │ ├── arity-0 │ │ │ │ └── test.json │ │ │ ├── arity-1 │ │ │ │ └── test.json │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ └── inference-arity-2 │ │ │ │ └── test.json │ │ ├── mod │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── not │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── not_equal │ │ │ ├── mismatch │ │ │ │ └── test.json │ │ │ ├── number │ │ │ │ └── test.json │ │ │ ├── string │ │ │ │ └── test.json │ │ │ └── value │ │ │ │ └── test.json │ │ ├── number │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ └── default-value │ │ │ │ └── test.json │ │ ├── object │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ └── default-value │ │ │ │ └── test.json │ │ ├── parse │ │ │ ├── empty │ │ │ │ └── test.json │ │ │ ├── non-array │ │ │ │ └── test.json │ │ │ ├── non-string │ │ │ │ └── test.json │ │ │ └── unknown-expression │ │ │ │ └── test.json │ │ ├── pi │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── plus │ │ │ ├── arity-0 │ │ │ │ └── test.json │ │ │ ├── arity-1 │ │ │ │ └── test.json │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── pow │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── properties │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── result_item.html.tmpl │ │ ├── rgb │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── rgba │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ └── out-of-bounds │ │ │ │ └── test.json │ │ ├── sin │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── sqrt │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── step │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ └── duplicate_stops │ │ │ │ └── test.json │ │ ├── string │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ └── default-value │ │ │ │ └── test.json │ │ ├── tan │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── times │ │ │ ├── arity-0 │ │ │ │ └── test.json │ │ │ ├── arity-1 │ │ │ │ └── test.json │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── to-boolean │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── to-color │ │ │ ├── 2-ary │ │ │ │ └── test.json │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── to-number │ │ │ ├── 2-ary │ │ │ │ └── test.json │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── to-rgba │ │ │ ├── alpha │ │ │ │ └── test.json │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── to-string │ │ │ ├── basic │ │ │ │ └── test.json │ │ │ └── color │ │ │ │ └── test.json │ │ ├── typecheck │ │ │ ├── array-invalid-item │ │ │ │ └── test.json │ │ │ ├── array-item-subtyping │ │ │ │ └── test.json │ │ │ ├── array-length-subtyping--no-length │ │ │ │ └── test.json │ │ │ ├── array-length-subtyping │ │ │ │ └── test.json │ │ │ └── array-wrong-length │ │ │ │ └── test.json │ │ ├── typeof │ │ │ └── basic │ │ │ │ └── test.json │ │ ├── upcase │ │ │ └── basic │ │ │ │ └── test.json │ │ └── zoom │ │ │ ├── basic │ │ │ └── test.json │ │ │ ├── invalid-nested-1 │ │ │ └── test.json │ │ │ ├── invalid-nested-2 │ │ │ └── test.json │ │ │ ├── invalid-nested-3 │ │ │ └── test.json │ │ │ ├── invalid-nested-4 │ │ │ └── test.json │ │ │ ├── invalid-nested-5 │ │ │ └── test.json │ │ │ ├── invalid-no-curve │ │ │ └── test.json │ │ │ ├── nested-coalesce │ │ │ └── test.json │ │ │ └── nested-let │ │ │ └── test.json │ ├── geojson │ │ └── point.json │ ├── glyphs │ │ ├── NotoCJK │ │ │ ├── 0-255.pbf │ │ │ ├── 1024-1279.pbf │ │ │ ├── 10240-10495.pbf │ │ │ ├── 10496-10751.pbf │ │ │ ├── 10752-11007.pbf │ │ │ ├── 11008-11263.pbf │ │ │ ├── 11264-11519.pbf │ │ │ ├── 11520-11775.pbf │ │ │ ├── 11776-12031.pbf │ │ │ ├── 12032-12287.pbf │ │ │ ├── 12288-12543.pbf │ │ │ ├── 12544-12799.pbf │ │ │ ├── 1280-1535.pbf │ │ │ ├── 12800-13055.pbf │ │ │ ├── 13056-13311.pbf │ │ │ ├── 13312-13567.pbf │ │ │ ├── 13568-13823.pbf │ │ │ ├── 13824-14079.pbf │ │ │ ├── 14080-14335.pbf │ │ │ ├── 14336-14591.pbf │ │ │ ├── 14592-14847.pbf │ │ │ ├── 14848-15103.pbf │ │ │ ├── 15104-15359.pbf │ │ │ ├── 1536-1791.pbf │ │ │ ├── 15360-15615.pbf │ │ │ ├── 15616-15871.pbf │ │ │ ├── 15872-16127.pbf │ │ │ ├── 16128-16383.pbf │ │ │ ├── 16384-16639.pbf │ │ │ ├── 16640-16895.pbf │ │ │ ├── 16896-17151.pbf │ │ │ ├── 17152-17407.pbf │ │ │ ├── 17408-17663.pbf │ │ │ ├── 17664-17919.pbf │ │ │ ├── 1792-2047.pbf │ │ │ ├── 17920-18175.pbf │ │ │ ├── 18176-18431.pbf │ │ │ ├── 18432-18687.pbf │ │ │ ├── 18688-18943.pbf │ │ │ ├── 18944-19199.pbf │ │ │ ├── 19200-19455.pbf │ │ │ ├── 19456-19711.pbf │ │ │ ├── 19712-19967.pbf │ │ │ ├── 19968-20223.pbf │ │ │ ├── 20224-20479.pbf │ │ │ ├── 2048-2303.pbf │ │ │ ├── 20480-20735.pbf │ │ │ ├── 20736-20991.pbf │ │ │ ├── 20992-21247.pbf │ │ │ ├── 21248-21503.pbf │ │ │ ├── 21504-21759.pbf │ │ │ ├── 21760-22015.pbf │ │ │ ├── 22016-22271.pbf │ │ │ ├── 22272-22527.pbf │ │ │ ├── 22528-22783.pbf │ │ │ ├── 22784-23039.pbf │ │ │ ├── 2304-2559.pbf │ │ │ ├── 23040-23295.pbf │ │ │ ├── 23296-23551.pbf │ │ │ ├── 23552-23807.pbf │ │ │ ├── 23808-24063.pbf │ │ │ ├── 24064-24319.pbf │ │ │ ├── 24320-24575.pbf │ │ │ ├── 24576-24831.pbf │ │ │ ├── 24832-25087.pbf │ │ │ ├── 25088-25343.pbf │ │ │ ├── 25344-25599.pbf │ │ │ ├── 256-511.pbf │ │ │ ├── 2560-2815.pbf │ │ │ ├── 25600-25855.pbf │ │ │ ├── 25856-26111.pbf │ │ │ ├── 26112-26367.pbf │ │ │ ├── 26368-26623.pbf │ │ │ ├── 26624-26879.pbf │ │ │ ├── 26880-27135.pbf │ │ │ ├── 27136-27391.pbf │ │ │ ├── 27392-27647.pbf │ │ │ ├── 27648-27903.pbf │ │ │ ├── 27904-28159.pbf │ │ │ ├── 2816-3071.pbf │ │ │ ├── 28160-28415.pbf │ │ │ ├── 28416-28671.pbf │ │ │ ├── 28672-28927.pbf │ │ │ ├── 28928-29183.pbf │ │ │ ├── 29184-29439.pbf │ │ │ ├── 29440-29695.pbf │ │ │ ├── 29696-29951.pbf │ │ │ ├── 29952-30207.pbf │ │ │ ├── 30208-30463.pbf │ │ │ ├── 30464-30719.pbf │ │ │ ├── 3072-3327.pbf │ │ │ ├── 30720-30975.pbf │ │ │ ├── 30976-31231.pbf │ │ │ ├── 31232-31487.pbf │ │ │ ├── 31488-31743.pbf │ │ │ ├── 31744-31999.pbf │ │ │ ├── 32000-32255.pbf │ │ │ ├── 32256-32511.pbf │ │ │ ├── 32512-32767.pbf │ │ │ ├── 32768-33023.pbf │ │ │ ├── 33024-33279.pbf │ │ │ ├── 3328-3583.pbf │ │ │ ├── 33280-33535.pbf │ │ │ ├── 33536-33791.pbf │ │ │ ├── 33792-34047.pbf │ │ │ ├── 34048-34303.pbf │ │ │ ├── 34304-34559.pbf │ │ │ ├── 34560-34815.pbf │ │ │ ├── 34816-35071.pbf │ │ │ ├── 35072-35327.pbf │ │ │ ├── 35328-35583.pbf │ │ │ ├── 35584-35839.pbf │ │ │ ├── 3584-3839.pbf │ │ │ ├── 35840-36095.pbf │ │ │ ├── 36096-36351.pbf │ │ │ ├── 36352-36607.pbf │ │ │ ├── 36608-36863.pbf │ │ │ ├── 36864-37119.pbf │ │ │ ├── 37120-37375.pbf │ │ │ ├── 37376-37631.pbf │ │ │ ├── 37632-37887.pbf │ │ │ ├── 37888-38143.pbf │ │ │ ├── 38144-38399.pbf │ │ │ ├── 3840-4095.pbf │ │ │ ├── 38400-38655.pbf │ │ │ ├── 38656-38911.pbf │ │ │ ├── 38912-39167.pbf │ │ │ ├── 39168-39423.pbf │ │ │ ├── 39424-39679.pbf │ │ │ ├── 39680-39935.pbf │ │ │ ├── 39936-40191.pbf │ │ │ ├── 40192-40447.pbf │ │ │ ├── 40448-40703.pbf │ │ │ ├── 40704-40959.pbf │ │ │ ├── 4096-4351.pbf │ │ │ ├── 4352-4607.pbf │ │ │ ├── 4608-4863.pbf │ │ │ ├── 4864-5119.pbf │ │ │ ├── 512-767.pbf │ │ │ ├── 5120-5375.pbf │ │ │ ├── 5376-5631.pbf │ │ │ ├── 5632-5887.pbf │ │ │ ├── 5888-6143.pbf │ │ │ ├── 6144-6399.pbf │ │ │ ├── 6400-6655.pbf │ │ │ ├── 65024-65279.pbf │ │ │ ├── 65280-65535.pbf │ │ │ ├── 6656-6911.pbf │ │ │ ├── 6912-7167.pbf │ │ │ ├── 7168-7423.pbf │ │ │ ├── 7424-7679.pbf │ │ │ ├── 768-1023.pbf │ │ │ ├── 7680-7935.pbf │ │ │ ├── 7936-8191.pbf │ │ │ ├── 8192-8447.pbf │ │ │ ├── 8448-8703.pbf │ │ │ ├── 8704-8959.pbf │ │ │ ├── 8960-9215.pbf │ │ │ ├── 9216-9471.pbf │ │ │ ├── 9472-9727.pbf │ │ │ ├── 9728-9983.pbf │ │ │ └── 9984-10239.pbf │ │ ├── Open Sans Semibold,Arial Unicode MS Bold │ │ │ ├── 0-255.pbf │ │ │ ├── 12288-12543.pbf │ │ │ ├── 1536-1791.pbf │ │ │ ├── 256-511.pbf │ │ │ ├── 64256-64511.pbf │ │ │ ├── 65024-65279.pbf │ │ │ └── 8192-8447.pbf │ │ └── mapbox │ │ │ ├── Open Sans Bold,Arial Unicode MS Bold │ │ │ └── 0-255.pbf │ │ │ └── Open Sans Semibold,Arial Unicode MS Bold │ │ │ └── 0-255.pbf │ ├── image │ │ ├── 0.png │ │ ├── line.sdf.png │ │ ├── marker.png │ │ └── rocket.png │ ├── index.js │ ├── lib │ │ ├── expression.js │ │ ├── harness.js │ │ ├── query.js │ │ ├── render.js │ │ └── server.js │ ├── package.json │ ├── query-tests │ │ ├── circle-radius-features-in │ │ │ ├── inside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── circle-radius │ │ │ ├── inside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── circle-stroke-width │ │ │ ├── inside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── circle-translate-anchor │ │ │ ├── map │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── viewport │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── circle-translate │ │ │ ├── inside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── edge-cases │ │ │ ├── box-cutting-antimeridian-z0 │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── box-cutting-antimeridian-z1 │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── null-island │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── unsorted-keys │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── fill-features-in │ │ │ ├── default │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── rotated │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── tilted │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── fill-translate-anchor │ │ │ ├── map │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── viewport │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── fill-translate │ │ │ └── literal │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── fill │ │ │ ├── default │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── overscaled │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── geometry │ │ │ ├── linestring │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── multilinestring │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── multipoint │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── multipolygon │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── point │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── polygon │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── invisible-features │ │ │ ├── visibility-none │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── zero-opacity │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── line-gap-width │ │ │ ├── inside-fractional │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── inside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── outside-fractional │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── line-offset │ │ │ ├── inside-fractional │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── inside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── outside-fractional │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── line-translate-anchor │ │ │ ├── map │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── viewport │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── line-translate │ │ │ ├── inside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── line-width-features-in │ │ │ ├── inside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── tilt-inside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── tilt-outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── line-width │ │ │ ├── inside-fractional │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── inside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── outside-fractional │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── options │ │ │ ├── filter-false │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── filter-true │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── layers-multiple │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── layers-one │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── regressions │ │ │ ├── mapbox-gl-js#3534 │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4417 │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4494 │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5172 │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5473 │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── mapbox-gl-js#5554 │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── result_item.html.tmpl │ │ ├── symbol-features-in │ │ │ ├── fractional-outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── hidden │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── inside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── pitched-screen │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── tilted-inside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── tilted-outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── symbol-ignore-placement │ │ │ └── inside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ ├── symbol │ │ │ ├── filtered │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── fractional-outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── hidden │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── inside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── panned-after-insert │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── rotated-after-insert │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ ├── rotated-inside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ │ └── rotated-outside │ │ │ │ ├── expected.json │ │ │ │ └── style.json │ │ └── world-wrapping │ │ │ ├── box │ │ │ ├── expected.json │ │ │ └── style.json │ │ │ └── point │ │ │ ├── expected.json │ │ │ └── style.json │ ├── render-tests │ │ ├── axonometric-multiple │ │ │ ├── expected.png │ │ │ └── style.json │ │ ├── background-color │ │ │ ├── colorSpace-hcl │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── colorSpace-lab │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── transition │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── background-opacity │ │ │ ├── color │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── image │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── overlay │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── background-pattern │ │ │ ├── @2x │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── missing │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── pitch │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── rotated │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoomed │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── background-visibility │ │ │ ├── none │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── visible │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── basic-v9 │ │ │ └── z0 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── bright-v9 │ │ │ └── z0 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── circle-blur │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-stroke │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── circle-color │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── identity-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── circle-geometry │ │ │ ├── linestring │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── multilinestring │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── multipoint │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── multipolygon │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── point │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── polygon │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── circle-opacity │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── circle-pitch-alignment │ │ │ ├── map-scale-map │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── map-scale-viewport │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── viewport-scale-map │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── viewport-scale-viewport │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── circle-pitch-scale │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── map │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── viewport │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── circle-radius │ │ │ ├── antimeridian │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── identity-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── circle-stroke-color │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── circle-stroke-opacity │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── stroke-only │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── circle-stroke-width │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── circle-translate-anchor │ │ │ ├── map │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── viewport │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── circle-translate │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── combinations │ │ │ ├── background-opaque--background-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-opaque--background-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-opaque--circle-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-opaque--fill-extrusion-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-opaque--fill-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-opaque--fill-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-opaque--heatmap-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-opaque--hillshade-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-opaque--line-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-opaque--raster-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-opaque--symbol-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-translucent--background-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-translucent--background-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-translucent--circle-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-translucent--fill-extrusion-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-translucent--fill-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-translucent--fill-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-translucent--heatmap-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-translucent--hillshade-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-translucent--line-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-translucent--raster-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── background-translucent--symbol-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── circle-translucent--background-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── circle-translucent--background-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── circle-translucent--circle-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── circle-translucent--fill-extrusion-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── circle-translucent--fill-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── circle-translucent--fill-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── circle-translucent--heatmap-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── circle-translucent--hillshade-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── circle-translucent--line-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── circle-translucent--raster-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── circle-translucent--symbol-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-extrusion-translucent--background-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-extrusion-translucent--background-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-extrusion-translucent--circle-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-extrusion-translucent--fill-extrusion-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-extrusion-translucent--fill-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-extrusion-translucent--fill-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-extrusion-translucent--heatmap-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-extrusion-translucent--hillshade-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-extrusion-translucent--line-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-extrusion-translucent--raster-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-extrusion-translucent--symbol-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-opaque--background-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-opaque--background-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-opaque--circle-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-opaque--fill-extrusion-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-opaque--fill-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-opaque--fill-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-opaque--heatmap-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-opaque--hillshade-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-opaque--line-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-opaque--raster-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-opaque--symbol-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-translucent--background-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-translucent--background-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-translucent--circle-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-translucent--fill-extrusion-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-translucent--fill-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-translucent--fill-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-translucent--heatmap-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-translucent--hillshade-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-translucent--line-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-translucent--raster-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill-translucent--symbol-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── heatmap-translucent--background-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── heatmap-translucent--background-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── heatmap-translucent--circle-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── heatmap-translucent--fill-extrusion-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── heatmap-translucent--fill-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── heatmap-translucent--fill-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── heatmap-translucent--heatmap-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── heatmap-translucent--hillshade-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── heatmap-translucent--line-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── heatmap-translucent--raster-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── heatmap-translucent--symbol-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── hillshade-translucent--background-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── hillshade-translucent--background-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── hillshade-translucent--circle-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── hillshade-translucent--fill-extrusion-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── hillshade-translucent--fill-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── hillshade-translucent--fill-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── hillshade-translucent--heatmap-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── hillshade-translucent--hillshade-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── hillshade-translucent--line-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── hillshade-translucent--raster-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── hillshade-translucent--symbol-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-translucent--background-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-translucent--background-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-translucent--circle-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-translucent--fill-extrusion-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-translucent--fill-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-translucent--fill-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-translucent--heatmap-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-translucent--hillshade-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-translucent--line-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-translucent--raster-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-translucent--symbol-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-translucent--background-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-translucent--background-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-translucent--circle-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-translucent--fill-extrusion-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-translucent--fill-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-translucent--fill-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-translucent--heatmap-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-translucent--hillshade-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-translucent--line-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-translucent--raster-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-translucent--symbol-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── symbol-translucent--background-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── symbol-translucent--background-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── symbol-translucent--circle-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── symbol-translucent--fill-extrusion-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── symbol-translucent--fill-opaque │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── symbol-translucent--fill-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── symbol-translucent--heatmap-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── symbol-translucent--hillshade-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── symbol-translucent--line-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── symbol-translucent--raster-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── symbol-translucent--symbol-translucent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── debug │ │ │ ├── collision-lines-pitched │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── collision-lines │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── collision-overscaled │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── collision-pitched-wrapped │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── collision-pitched │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── collision │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── overdraw │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── tile-overscaled │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── tile │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── empty │ │ │ └── empty │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── extent │ │ │ ├── 1024-circle │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── 1024-fill │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── 1024-line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── 1024-symbol │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-antialias │ │ │ └── false │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-color │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── multiply │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── opacity │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-extrusion-base │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── negative │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-extrusion-color │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── no-alpha-no-multiply │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-extrusion-height │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── negative │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-extrusion-multiple │ │ │ └── multiple │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-extrusion-opacity │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-extrusion-pattern │ │ │ ├── @2x │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function-2 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── missing │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── opacity │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-extrusion-translate-anchor │ │ │ ├── map │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── viewport │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-extrusion-translate │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-opacity │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-opacity │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── overlapping │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function-pattern │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── zoom-and-property-function-pattern │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-outline-color │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fill │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── multiply │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── opacity │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-pattern │ │ │ ├── @2x │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── missing │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── opacity │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── uneven-pattern │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── wrapping-with-interpolation │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoomed │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-translate-anchor │ │ │ ├── map │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── viewport │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-translate │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── fill-visibility │ │ │ ├── none │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── visible │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── geojson │ │ │ ├── clustered │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── external-feature │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── external-invalid │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── external-linestring │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── external-malformed │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inconsistent-winding-order │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inline-feature │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inline-invalid │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inline-linestring-circle │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inline-linestring-fill │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inline-linestring-line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inline-linestring-symbol │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inline-malformed │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inline-point-circle │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inline-point-fill │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inline-point-line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inline-point-symbol │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inline-polygon-circle │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inline-polygon-fill │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inline-polygon-line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── inline-polygon-symbol │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── missing │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── reparse-overscaled │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── heatmap-color │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── heatmap-intensity │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── heatmap-opacity │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── heatmap-radius │ │ │ ├── antimeridian │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── data-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── pitch30 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── heatmap-weight │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── identity-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── hillshade-accent-color │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── hillshade-highlight-color │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── hillshade-shadow-color │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-anchor │ │ │ ├── bottom-left │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── bottom-right │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── bottom │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── center │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── left │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── right │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── top-left │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── top-right │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── top │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-color │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-halo-blur │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-halo-color │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── multiply │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── opacity │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── transparent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-halo-width │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-image │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── token │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-offset │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-opacity │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── icon-only │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── text-and-icon │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── text-only │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-pitch-alignment │ │ │ ├── auto-rotation-alignment-map │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── auto-rotation-alignment-viewport │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── map-rotation-alignment-viewport │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── viewport-rotation-alignment-map │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-pitch-scaling │ │ │ ├── rotation-alignment-map │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── rotation-alignment-viewport │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-pixelratio-mismatch │ │ │ └── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-rotate │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-rotation-alignment │ │ │ ├── auto-symbol-placement-line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── auto-symbol-placement-point │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── map-symbol-placement-line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── map-symbol-placement-point │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── viewport-symbol-placement-line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── viewport-symbol-placement-point │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-size │ │ │ ├── camera-function-high-base-plain │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── camera-function-high-base-sdf │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── camera-function-plain │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── camera-function-sdf │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── composite-function-plain │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── composite-function-sdf │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function-plain │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function-sdf │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-text-fit │ │ │ ├── both-padding │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── both │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── height-padding │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── height │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── none │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── placement-line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── width-padding │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── width │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-translate-anchor │ │ │ ├── map │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── viewport │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-translate │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── icon-visibility │ │ │ ├── none │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── visible │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── image │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── pitched │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-brightness │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-contrast │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-hue-rotate │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-opacity │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── raster-saturation │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── raster-visibility │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── line-blur │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── line-cap │ │ │ ├── butt │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── round │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── square │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── line-color │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function-identity │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── line-dasharray │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── fractional-zoom │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function--line-width-composite-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function--line-width-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal--line-width-composite-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal--line-width-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal--line-width-zoom-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── long-segment │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── overscaled │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── slant │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-history │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── line-gap-width │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── line-join │ │ │ ├── bevel-transparent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── bevel │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── miter-transparent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── miter │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function-dasharray │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── round-transparent │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── round │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── line-offset │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-negative │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── line-opacity │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── step-curve │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── line-pattern │ │ │ ├── @2x │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── opacity │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── overscaled │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── pitch │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── line-pitch │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── pitch0 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── pitch15 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── pitch30 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── pitchAndBearing │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── line-translate-anchor │ │ │ ├── map │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── viewport │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── line-translate │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── line-triangulation │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── round │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── line-visibility │ │ │ ├── none │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── visible │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── line-width │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── very-overscaled │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── linear-filter-opacity-edge │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── map-mode │ │ │ ├── static │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── tile │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── mixed-zoom │ │ │ └── z10-z11 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── projection │ │ │ ├── axonometric │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── perspective │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── skew │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── raster-alpha │ │ │ └── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── raster-brightness │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── raster-contrast │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── raster-extent │ │ │ ├── maxzoom │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── minzoom │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── raster-hue-rotate │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── raster-loading │ │ │ └── missing │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── raster-masking │ │ │ ├── overlapping-zoom │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── overlapping │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── raster-opacity │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── raster-saturation │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── raster-visibility │ │ │ ├── none │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── visible │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── regressions │ │ │ ├── mapbox-gl-js#2305 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#2467 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#2523 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#2533 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#2534 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#2762 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#2769 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#2787 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#2846 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#2929 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3010 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3107 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3320 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3365 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3394 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3426 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3548 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3612 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3614 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3623 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3633 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3682 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3702 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3723 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3819 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3903 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3910 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#3949 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4124 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4144 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4146 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4150 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4172 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4235 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4550 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4551 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4564 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4573 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4579 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4605 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4617 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4647 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4651 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4860 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#4928 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5370 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5466 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5496 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5544 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5546 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5576 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5599 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5631 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5642 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5740 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5776 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5911 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5911a │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5947 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5953 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-js#5982 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#3292 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#5648 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#5701 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#5754 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#6063 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#6233 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#6820 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#6903 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#7241 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#7357 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#7572 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#7714 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#7792 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#8078 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#8303 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#8460 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#8505 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#8871 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#8952 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#9406 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#9557 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#9792 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#9900 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#9976 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mapbox-gl-native#9979 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── mapbox-gl-shaders#37 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── result_item.html.tmpl │ │ ├── retina-raster │ │ │ └── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── runtime-styling │ │ │ ├── filter-default-to-false │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── filter-default-to-true │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── filter-false-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── filter-false-to-true │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── filter-true-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── filter-true-to-false │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── image-add-1.5x-image-1x-screen │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── image-add-1.5x-image-2x-screen │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── image-add-1x-image-1x-screen │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── image-add-1x-image-2x-screen │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── image-add-2x-image-1x-screen │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── image-add-2x-image-2x-screen │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── image-add-alpha │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── image-add-nonsdf │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── image-add-pattern │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── image-add-sdf │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── image-remove │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── image-update-icon │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── image-update-pattern │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layer-add-background │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layer-add-circle │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layer-add-fill │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layer-add-line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layer-add-raster │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layer-add-symbol │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layer-remove-background │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layer-remove-circle │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layer-remove-fill │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layer-remove-line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layer-remove-raster │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layer-remove-symbol │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-default-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-default-to-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-default-to-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-default-to-zoom-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-default-to-zoom-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-literal-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-literal-to-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-literal-to-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-literal-to-zoom-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-literal-to-zoom-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-property-expression-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-property-expression-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-property-expression-to-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-property-expression-to-zoom-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-property-function-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-property-function-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-zoom-and-property-expression-to-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-zoom-and-property-expression-to-zoom-and-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-zoom-and-property-expression-to-zoom-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-zoom-expression-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-zoom-expression-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-zoom-expression-to-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-zoom-expression-to-zoom-and-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-zoom-expression-to-zoom-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-zoom-function-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── layout-property-zoom-function-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-default-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-default-to-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-default-to-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-default-to-zoom-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-default-to-zoom-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-fill-flat-to-extrude │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-literal-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-literal-to-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-literal-to-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-literal-to-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-literal-to-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-property-expression-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-property-expression-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-property-expression-to-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-property-expression-to-zoom-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-property-function-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-property-function-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-zoom-and-property-expression-to-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-zoom-and-property-expression-to-zoom-and-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-zoom-and-property-expression-to-zoom-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-zoom-expression-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-zoom-expression-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-zoom-expression-to-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-zoom-expression-to-zoom-and-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-zoom-expression-to-zoom-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-zoom-function-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── paint-property-zoom-function-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-filter-default-to-false │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-filter-default-to-true │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-filter-false-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-filter-false-to-true │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-filter-true-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-filter-true-to-false │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-glyphs │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-add-background │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-add-circle │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-add-fill │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-add-line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-add-raster │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-add-symbol │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-change-source-layer │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-change-source-type │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-change-source │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-remove-background │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-remove-circle │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-remove-fill │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-remove-line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-remove-raster │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-remove-symbol │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layer-reorder │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-default-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-default-to-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-default-to-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-default-to-zoom-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-default-to-zoom-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-literal-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-literal-to-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-literal-to-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-literal-to-zoom-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-literal-to-zoom-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-property-expression-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-property-expression-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-property-function-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-property-function-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-zoom-expression-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-zoom-expression-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-zoom-function-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-layout-property-zoom-function-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-default-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-default-to-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-default-to-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-default-to-zoom-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-default-to-zoom-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-fill-flat-to-extrude │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-literal-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-literal-to-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-literal-to-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-literal-to-property-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-literal-to-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-property-expression-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-property-expression-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-property-function-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-property-function-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-zoom-expression-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-zoom-expression-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-zoom-function-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-paint-property-zoom-function-to-literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-source-add-geojson-inline │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-source-add-geojson-url │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-source-add-raster-inline │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-source-add-raster-url │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-source-add-vector-inline │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-source-add-vector-url │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-source-update │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-sprite │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-visibility-default-to-none │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-visibility-default-to-visible │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-visibility-none-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-visibility-none-to-visible │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-visibility-visible-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── set-style-visibility-visible-to-none │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── source-add-geojson-inline │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── source-add-geojson-url │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── source-add-raster-inline │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── source-add-raster-url │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── source-add-vector-inline │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── source-add-vector-url │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── visibility-default-to-none │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── visibility-default-to-visible │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── visibility-none-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── visibility-none-to-visible │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── visibility-visible-to-default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── visibility-visible-to-none │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── satellite-v9 │ │ │ └── z0 │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── sprites │ │ │ ├── 1x-screen-1x-icon │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── 1x-screen-1x-pattern │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── 1x-screen-2x-icon │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── 1x-screen-2x-pattern │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── 2x-screen-1x-icon │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── 2x-screen-1x-pattern │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── 2x-screen-2x-icon │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── 2x-screen-2x-pattern │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── symbol-geometry │ │ │ ├── linestring │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── multilinestring │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── multipoint │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── multipolygon │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── point │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── polygon │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── symbol-placement │ │ │ ├── line-overscaled │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── point-polygon │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── point │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── symbol-spacing │ │ │ ├── line-close │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-far │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-overscaled │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── point-close │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── point-far │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── symbol-visibility │ │ │ ├── none │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── visible │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-anchor │ │ │ ├── bottom-left │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── bottom-right │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── bottom │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── center │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── left │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── right │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── top-left │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── top-right │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── top │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-arabic │ │ │ ├── letter-spacing │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-break-mixed │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-break │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── mixed-numeric │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── multi-paragraph │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-color │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-field │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── token │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-font │ │ │ ├── camera-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── chinese │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── data-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-halo-blur │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-halo-color │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-halo-width │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-justify │ │ │ ├── left │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── right │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-keep-upright │ │ │ ├── line-placement-false │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-placement-true-offset │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-placement-true-pitched │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-placement-true-rotated │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-placement-true-text-anchor │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── line-placement-true │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── point-placement-align-map-false │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── point-placement-align-map-true │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── point-placement-align-viewport-false │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── point-placement-align-viewport-true │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-letter-spacing │ │ │ ├── function-close │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function-far │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-line-height │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-max-angle │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-max-width │ │ │ ├── force-double-newline │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── force-newline │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── ideographic-breaking │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── ideographic-punctuation-breaking │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── zoom-and-property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-offset │ │ │ ├── literal-multiline-anchorcenter-justifycenter-offsetnegative │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorcenter-justifycenter-offsetpositive │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorcenter-justifyleft-offsetnegative │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorcenter-justifyleft-offsetpositive │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorcenter-justifyright-offsetnegative │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorcenter-justifyright-offsetpositive │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorleft-justifycenter-offsetnegative │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorleft-justifycenter-offsetpositive │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorleft-justifyleft-offsetnegative │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorleft-justifyleft-offsetpositive │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorleft-justifyright-offsetnegative │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorleft-justifyright-offsetpositive │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorright-justifycenter-offsetnegative │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorright-justifycenter-offsetpositive │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorright-justifyleft-offsetnegative │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorright-justifyleft-offsetpositive │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorright-justifyright-offsetnegative │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal-multiline-anchorright-justifyright-offsetpositive │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-opacity │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-pitch-alignment │ │ │ ├── auto-text-rotation-alignment-map │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── auto-text-rotation-alignment-viewport │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── map-text-depthtest │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── map-text-rotation-alignment-map │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── map-text-rotation-alignment-viewport │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── viewport-overzoomed-single-glyph │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── viewport-overzoomed │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── viewport-text-depthtest │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── viewport-text-rotation-alignment-map │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── viewport-text-rotation-alignment-viewport │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-pitch-scaling │ │ │ └── line-half │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-rotate │ │ │ ├── anchor-bottom │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── anchor-left │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── anchor-right │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── anchor-top │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-rotation-alignment │ │ │ ├── auto-symbol-placement-line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── auto-symbol-placement-point │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── map-symbol-placement-line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── map-symbol-placement-point │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── viewport-symbol-placement-line │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── viewport-symbol-placement-point │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-size │ │ │ ├── camera-function-high-base │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── camera-function-interval │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── composite-expression │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── composite-function-line-placement │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── composite-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-tile-edge-clipping │ │ │ └── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-transform │ │ │ ├── lowercase │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── property-function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── uppercase │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-translate-anchor │ │ │ ├── map │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── viewport │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-translate │ │ │ ├── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── function │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── literal │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-visibility │ │ │ ├── none │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── visible │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── text-writing-mode │ │ │ ├── chinese-punctuation │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── chinese │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ ├── latin │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ │ └── mixed │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── tilejson-bounds │ │ │ └── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── tms │ │ │ └── tms │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── video │ │ │ └── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ ├── zoomed-fill │ │ │ └── default │ │ │ │ ├── expected.png │ │ │ │ └── style.json │ │ └── zoomed-raster │ │ │ ├── fractional │ │ │ ├── expected.png │ │ │ └── style.json │ │ │ ├── overzoom │ │ │ ├── expected.png │ │ │ └── style.json │ │ │ └── underzoom │ │ │ ├── expected.png │ │ │ └── style.json │ ├── results.html.tmpl │ ├── sprites │ │ ├── 1.5x.png │ │ ├── 1x.json │ │ ├── 1x.png │ │ ├── 1x@2x.json │ │ ├── 1x@2x.png │ │ ├── 2x.json │ │ ├── 2x.png │ │ ├── 2x@2x.json │ │ ├── 2x@2x.png │ │ ├── 3x.png │ │ ├── dark.json │ │ ├── dark.png │ │ ├── emerald.json │ │ ├── emerald.png │ │ ├── emerald@2x.json │ │ ├── emerald@2x.png │ │ ├── icon-text-fit.json │ │ ├── icon-text-fit.png │ │ ├── icon-text-fit.svg │ │ ├── light.json │ │ ├── light.png │ │ ├── mapbox │ │ │ ├── basic-v9.json │ │ │ ├── basic-v9.png │ │ │ ├── bright-v9.json │ │ │ ├── bright-v9.png │ │ │ ├── satellite-v9.json │ │ │ └── satellite-v9.png │ │ ├── solid-black.json │ │ ├── solid-black.png │ │ ├── sprite.json │ │ └── sprite.png │ ├── tiles │ │ ├── 0-0-0.mvt │ │ ├── 0-0-0.png │ │ ├── 1-0-0.cross-fade.png │ │ ├── 1-0-0.satellite.png │ │ ├── 1-0-1.cross-fade.png │ │ ├── 1-0-1.satellite.png │ │ ├── 1-1-0.cross-fade.png │ │ ├── 1-1-0.satellite.png │ │ ├── 1-1-1.cross-fade.png │ │ ├── 1-1-1.satellite.png │ │ ├── 11-327-791.contour.png │ │ ├── 12-758-1608.satellite.png │ │ ├── 12-758-1608.terrain.png │ │ ├── 12-758-1609.satellite.png │ │ ├── 12-758-1609.terrain.png │ │ ├── 12-759-1608.satellite.png │ │ ├── 12-759-1608.terrain.png │ │ ├── 12-759-1609.satellite.png │ │ ├── 12-759-1609.terrain.png │ │ ├── 13-1308-3164.contour.png │ │ ├── 14-2617-6329.contour.png │ │ ├── 14-4357-6245.mvt │ │ ├── 14-8802-5374.mvt │ │ ├── 14-8802-5375.mvt │ │ ├── 14-8803-5374.mvt │ │ ├── 14-8803-5375.mvt │ │ ├── 15-5235-12658.contour.png │ │ ├── 17-70420-42997.satellite.png │ │ ├── 17-70420-42998.satellite.png │ │ ├── 17-70421-42997.satellite.png │ │ ├── 17-70421-42998.satellite.png │ │ ├── 17-70422-42997.satellite.png │ │ ├── 17-70422-42998.satellite.png │ │ ├── 2-1-1.cross-fade.png │ │ ├── 2-1-1.mvt │ │ ├── 2-1-1.tms.mvt │ │ ├── 2-1-2.cross-fade.png │ │ ├── 2-1-2.mvt │ │ ├── 2-1-2.tms.mvt │ │ ├── 2-2-1.cross-fade.png │ │ ├── 2-2-1.mvt │ │ ├── 2-2-1.tms.mvt │ │ ├── 2-2-2.cross-fade.png │ │ ├── 2-2-2.mvt │ │ ├── 2-2-2.tms.mvt │ │ ├── alpha.png │ │ ├── counties-7-37-48.mvt │ │ ├── extent-1024.mvt │ │ ├── extent1024-0-0-0.mvt │ │ ├── extent1024-14-8802-5374.mvt │ │ ├── mapbox.mapbox-streets-v7 │ │ │ ├── 0-0-0.mvt │ │ │ ├── 10-175-409.mvt │ │ │ ├── 11-351-818.mvt │ │ │ └── 16-11235-26208.mvt │ │ ├── mapbox.satellite │ │ │ ├── 1-0-0.png │ │ │ ├── 1-0-1.png │ │ │ ├── 1-1-0.png │ │ │ └── 1-1-1.png │ │ ├── package.json │ │ └── upgrade.js │ ├── tilesets │ │ ├── raster.json │ │ └── vector.json │ └── video │ │ └── 0.png ├── node_modules │ ├── mapbox-gl-js-test.js │ └── mapbox-gl-js-test │ │ ├── fixed.js │ │ └── simulate_interaction.js ├── query.test.js ├── render.test.js ├── suite_implementation.js └── unit │ ├── data │ ├── dem_data.test.js │ ├── fill_bucket.test.js │ ├── line_bucket.test.js │ ├── load_geometry.test.js │ ├── symbol_bucket.test.js │ └── vertex_buffer.test.js │ ├── geo │ ├── coordinate.test.js │ ├── lng_lat.test.js │ ├── lng_lat_bounds.test.js │ └── transform.test.js │ ├── gl │ └── state.test.js │ ├── mapbox-gl.js │ ├── render │ └── glyph_manager.test.js │ ├── shaders │ └── encode_attribute.test.js │ ├── source │ ├── canvas_source.test.js │ ├── geojson_source.test.js │ ├── geojson_worker_source.test.js │ ├── geojson_wrapper.test.js │ ├── image_source.test.js │ ├── query_features.test.js │ ├── raster_dem_tile_source.test.js │ ├── raster_dem_tile_worker_source.test.js │ ├── raster_tile_source.test.js │ ├── source_cache.test.js │ ├── tile.test.js │ ├── tile_id.test.js │ ├── tile_mask.test.js │ ├── vector_tile_source.test.js │ ├── vector_tile_worker_source.test.js │ ├── worker.test.js │ └── worker_tile.test.js │ ├── style-spec │ ├── color.js │ ├── composite.test.js │ ├── convert_function.test.js │ ├── declass.test.js │ ├── deref.test.js │ ├── diff.test.js │ ├── expression.test.js │ ├── feature_filter.test.js │ ├── fixture │ │ ├── bad-color.input.json │ │ ├── bad-color.output.json │ │ ├── constants.input.json │ │ ├── constants.output.json │ │ ├── extrakeys.input.json │ │ ├── extrakeys.output.json │ │ ├── filters.input.json │ │ ├── filters.output.json │ │ ├── functions.input.json │ │ ├── functions.output.json │ │ ├── invalidjson.input.json │ │ ├── invalidjson.output.json │ │ ├── layers.input.json │ │ ├── layers.output.json │ │ ├── light-arbitrary.input.json │ │ ├── light-arbitrary.output.json │ │ ├── light.input.json │ │ ├── light.output.json │ │ ├── malformed-glyphs-type.input.json │ │ ├── malformed-glyphs-type.output.json │ │ ├── malformed-glyphs.input.json │ │ ├── malformed-glyphs.output.json │ │ ├── map-properties.input.json │ │ ├── map-properties.output.json │ │ ├── metadata.input.json │ │ ├── metadata.output.json │ │ ├── missing-glyphs.input.json │ │ ├── missing-glyphs.output.json │ │ ├── no-sources.input.json │ │ ├── no-sources.output.json │ │ ├── pitch.input.json │ │ ├── pitch.output.json │ │ ├── properties.input.json │ │ ├── properties.output.json │ │ ├── required.input.json │ │ ├── required.output.json │ │ ├── root-properties.input.json │ │ ├── root-properties.output.json │ │ ├── sources.input.json │ │ ├── sources.output.json │ │ ├── text-font.input.json │ │ ├── text-font.output.json │ │ ├── unknown-keys-nested.input.json │ │ └── unknown-keys-nested.output.json │ ├── format.test.js │ ├── function.test.js │ ├── group_by_layout.test.js │ ├── interpolate.test.js │ ├── migrate.test.js │ ├── migrate │ │ ├── v8.js │ │ └── v9.js │ ├── spec.test.js │ ├── util │ │ └── color_spaces.test.js │ └── validate.test.js │ ├── style │ ├── light.test.js │ ├── load_glyph_range.test.js │ ├── style.test.js │ ├── style_layer.test.js │ └── style_layer_index.test.js │ ├── symbol │ ├── anchor.test.js │ ├── check_max_angle.test.js │ ├── collision_feature.js │ ├── cross_tile_symbol_index.js │ ├── get_anchors.test.js │ ├── grid_index.test.js │ ├── mergelines.test.js │ ├── quads.test.js │ └── shaping.test.js │ ├── ui │ ├── camera.test.js │ ├── control │ │ ├── attribution.test.js │ │ ├── fullscreen.test.js │ │ ├── geolocate.test.js │ │ └── logo.test.js │ ├── handler │ │ └── drag_rotate.test.js │ ├── hash.test.js │ ├── map.test.js │ ├── map_events.test.js │ ├── marker.test.js │ └── popup.test.js │ └── util │ ├── actor.test.js │ ├── ajax.test.js │ ├── browser.test.js │ ├── classify_rings.test.js │ ├── dispatcher.test.js │ ├── evented.test.js │ ├── find_pole_of_inaccessibility.test.js │ ├── lru_cache.test.js │ ├── mapbox.test.js │ ├── struct_array.test.js │ ├── throttle.test.js │ ├── tile_cover.test.js │ ├── token.test.js │ ├── util.test.js │ ├── web_worker_transfer.test.js │ └── worker_pool.test.js ├── vendor └── dotcom-page-shell │ ├── page-shell-script.js │ ├── page-shell-styles.css │ └── react-page-shell.js ├── webpack.config.js └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 0.25% 2 | not dead -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/deploy-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/.github/workflows/deploy-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.22.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.js -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.topissuesrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/.topissuesrc -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/README.md -------------------------------------------------------------------------------- /RFC_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/RFC_TEMPLATE.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/_config.yml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/babel.config.js -------------------------------------------------------------------------------- /batfish.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/batfish.config.js -------------------------------------------------------------------------------- /bench/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/.eslintrc -------------------------------------------------------------------------------- /bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/README.md -------------------------------------------------------------------------------- /bench/benchmarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/benchmarks.js -------------------------------------------------------------------------------- /bench/benchmarks/expressions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/benchmarks/expressions.js -------------------------------------------------------------------------------- /bench/benchmarks/filter_create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/benchmarks/filter_create.js -------------------------------------------------------------------------------- /bench/benchmarks/filter_evaluate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/benchmarks/filter_evaluate.js -------------------------------------------------------------------------------- /bench/benchmarks/layers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/benchmarks/layers.js -------------------------------------------------------------------------------- /bench/benchmarks/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/benchmarks/layout.js -------------------------------------------------------------------------------- /bench/benchmarks/layout_dds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/benchmarks/layout_dds.js -------------------------------------------------------------------------------- /bench/benchmarks/map_load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/benchmarks/map_load.js -------------------------------------------------------------------------------- /bench/benchmarks/paint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/benchmarks/paint.js -------------------------------------------------------------------------------- /bench/benchmarks/query_box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/benchmarks/query_box.js -------------------------------------------------------------------------------- /bench/benchmarks/query_point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/benchmarks/query_point.js -------------------------------------------------------------------------------- /bench/benchmarks/style_layer_create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/benchmarks/style_layer_create.js -------------------------------------------------------------------------------- /bench/benchmarks/style_validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/benchmarks/style_validate.js -------------------------------------------------------------------------------- /bench/benchmarks_generated-v0.43.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/benchmarks_generated-v0.43.0.js -------------------------------------------------------------------------------- /bench/benchmarks_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/benchmarks_view.js -------------------------------------------------------------------------------- /bench/data/785.vector.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/data/785.vector.pbf -------------------------------------------------------------------------------- /bench/data/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/data/empty.json -------------------------------------------------------------------------------- /bench/data/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/data/filters.json -------------------------------------------------------------------------------- /bench/data/naturalearth-land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/data/naturalearth-land.json -------------------------------------------------------------------------------- /bench/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/index.html -------------------------------------------------------------------------------- /bench/lib/access_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/lib/access_token.js -------------------------------------------------------------------------------- /bench/lib/axis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/lib/axis.js -------------------------------------------------------------------------------- /bench/lib/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/lib/benchmark.js -------------------------------------------------------------------------------- /bench/lib/create_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/lib/create_map.js -------------------------------------------------------------------------------- /bench/lib/create_style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/lib/create_style.js -------------------------------------------------------------------------------- /bench/lib/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/lib/statistics.js -------------------------------------------------------------------------------- /bench/unit/bench_transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/unit/bench_transform.js -------------------------------------------------------------------------------- /bench/unit/feature_filter/big.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/unit/feature_filter/big.js -------------------------------------------------------------------------------- /bench/unit/function/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/bench/unit/function/profile.js -------------------------------------------------------------------------------- /cloudformation/travis-cn.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/cloudformation/travis-cn.template -------------------------------------------------------------------------------- /cloudformation/travis.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/cloudformation/travis.template -------------------------------------------------------------------------------- /debug/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/.eslintrc -------------------------------------------------------------------------------- /debug/2762.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/2762.html -------------------------------------------------------------------------------- /debug/3895.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/3895.html -------------------------------------------------------------------------------- /debug/access_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/access_token.js -------------------------------------------------------------------------------- /debug/basic/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/basic/defaults.js -------------------------------------------------------------------------------- /debug/basic/google.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/basic/google.html -------------------------------------------------------------------------------- /debug/basic/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/basic/google.js -------------------------------------------------------------------------------- /debug/basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/basic/index.html -------------------------------------------------------------------------------- /debug/basic/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/basic/main.js -------------------------------------------------------------------------------- /debug/basic/mapbox_google_overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/basic/mapbox_google_overlay.js -------------------------------------------------------------------------------- /debug/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/basic/package.json -------------------------------------------------------------------------------- /debug/basic/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/basic/readme.md -------------------------------------------------------------------------------- /debug/basic/unpack_tiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/basic/unpack_tiles.js -------------------------------------------------------------------------------- /debug/canvas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/canvas.html -------------------------------------------------------------------------------- /debug/chinese.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/chinese.html -------------------------------------------------------------------------------- /debug/circles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/circles.html -------------------------------------------------------------------------------- /debug/cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/cluster.html -------------------------------------------------------------------------------- /debug/color_spaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/color_spaces.html -------------------------------------------------------------------------------- /debug/cross_source_points.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/cross_source_points.geojson -------------------------------------------------------------------------------- /debug/csp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/csp.html -------------------------------------------------------------------------------- /debug/dark-v9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/dark-v9.js -------------------------------------------------------------------------------- /debug/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/debug.html -------------------------------------------------------------------------------- /debug/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/events.html -------------------------------------------------------------------------------- /debug/expressions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/expressions.html -------------------------------------------------------------------------------- /debug/heatmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/heatmap.html -------------------------------------------------------------------------------- /debug/hillshade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/hillshade.html -------------------------------------------------------------------------------- /debug/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/image.html -------------------------------------------------------------------------------- /debug/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/index.html -------------------------------------------------------------------------------- /debug/light-v9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/light-v9.js -------------------------------------------------------------------------------- /debug/markers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/markers.html -------------------------------------------------------------------------------- /debug/multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/multiple.html -------------------------------------------------------------------------------- /debug/no_wrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/no_wrap.html -------------------------------------------------------------------------------- /debug/query_features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/query_features.html -------------------------------------------------------------------------------- /debug/satellite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/satellite.html -------------------------------------------------------------------------------- /debug/setstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/setstyle.html -------------------------------------------------------------------------------- /debug/style_property_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/style_property_editor.js -------------------------------------------------------------------------------- /debug/textsize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/textsize.html -------------------------------------------------------------------------------- /debug/tinysdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/tinysdf.html -------------------------------------------------------------------------------- /debug/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/video.html -------------------------------------------------------------------------------- /debug/wms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/debug/wms.html -------------------------------------------------------------------------------- /dist/mapbox-gl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/dist/mapbox-gl.css -------------------------------------------------------------------------------- /dist/mapbox-gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/dist/mapbox-gl.js -------------------------------------------------------------------------------- /dist/mapbox-gl.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/dist/mapbox-gl.js.map -------------------------------------------------------------------------------- /dist/svg/mapboxgl-ctrl-attrib.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/dist/svg/mapboxgl-ctrl-attrib.svg -------------------------------------------------------------------------------- /dist/svg/mapboxgl-ctrl-compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/dist/svg/mapboxgl-ctrl-compass.svg -------------------------------------------------------------------------------- /dist/svg/mapboxgl-ctrl-geolocate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/dist/svg/mapboxgl-ctrl-geolocate.svg -------------------------------------------------------------------------------- /dist/svg/mapboxgl-ctrl-zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/dist/svg/mapboxgl-ctrl-zoom-in.svg -------------------------------------------------------------------------------- /dist/svg/mapboxgl-ctrl-zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/dist/svg/mapboxgl-ctrl-zoom-out.svg -------------------------------------------------------------------------------- /docs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/.eslintrc -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/components/application-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/components/application-wrapper.js -------------------------------------------------------------------------------- /docs/components/copyable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/components/copyable.js -------------------------------------------------------------------------------- /docs/components/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/components/example.js -------------------------------------------------------------------------------- /docs/components/expression-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/components/expression-metadata.js -------------------------------------------------------------------------------- /docs/components/left_nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/components/left_nav.js -------------------------------------------------------------------------------- /docs/components/md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/components/md.js -------------------------------------------------------------------------------- /docs/components/page_shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/components/page_shell.js -------------------------------------------------------------------------------- /docs/components/prism_highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/components/prism_highlight.css -------------------------------------------------------------------------------- /docs/components/prism_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/components/prism_highlight.js -------------------------------------------------------------------------------- /docs/components/quickstart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/components/quickstart.js -------------------------------------------------------------------------------- /docs/components/redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/components/redirect.js -------------------------------------------------------------------------------- /docs/components/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/components/site.css -------------------------------------------------------------------------------- /docs/components/top_nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/components/top_nav.js -------------------------------------------------------------------------------- /docs/components/urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/components/urls.js -------------------------------------------------------------------------------- /docs/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/documentation.yml -------------------------------------------------------------------------------- /docs/pages/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/api.js -------------------------------------------------------------------------------- /docs/pages/assets/earthquakes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/assets/earthquakes.geojson -------------------------------------------------------------------------------- /docs/pages/assets/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/assets/gallery.png -------------------------------------------------------------------------------- /docs/pages/assets/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/assets/google.png -------------------------------------------------------------------------------- /docs/pages/assets/hike.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/assets/hike.geojson -------------------------------------------------------------------------------- /docs/pages/assets/indoor-3d-map.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/assets/indoor-3d-map.geojson -------------------------------------------------------------------------------- /docs/pages/assets/landinsight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/assets/landinsight.png -------------------------------------------------------------------------------- /docs/pages/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/assets/logo.png -------------------------------------------------------------------------------- /docs/pages/assets/radar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/assets/radar.gif -------------------------------------------------------------------------------- /docs/pages/assets/radar0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/assets/radar0.gif -------------------------------------------------------------------------------- /docs/pages/assets/radar1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/assets/radar1.gif -------------------------------------------------------------------------------- /docs/pages/assets/radar2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/assets/radar2.gif -------------------------------------------------------------------------------- /docs/pages/assets/radar3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/assets/radar3.gif -------------------------------------------------------------------------------- /docs/pages/assets/radar4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/assets/radar4.gif -------------------------------------------------------------------------------- /docs/pages/assets/rendertiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/assets/rendertiles.png -------------------------------------------------------------------------------- /docs/pages/assets/washington-monument.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/assets/washington-monument.jpg -------------------------------------------------------------------------------- /docs/pages/dist: -------------------------------------------------------------------------------- 1 | ../../dist -------------------------------------------------------------------------------- /docs/pages/example/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/.eslintrc -------------------------------------------------------------------------------- /docs/pages/example/3d-buildings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/3d-buildings.html -------------------------------------------------------------------------------- /docs/pages/example/3d-buildings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/3d-buildings.js -------------------------------------------------------------------------------- /docs/pages/example/3d-extrusion-floorplan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/3d-extrusion-floorplan.js -------------------------------------------------------------------------------- /docs/pages/example/add-image-generated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/add-image-generated.html -------------------------------------------------------------------------------- /docs/pages/example/add-image-generated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/add-image-generated.js -------------------------------------------------------------------------------- /docs/pages/example/add-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/add-image.html -------------------------------------------------------------------------------- /docs/pages/example/add-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/add-image.js -------------------------------------------------------------------------------- /docs/pages/example/adjust-layer-opacity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/adjust-layer-opacity.html -------------------------------------------------------------------------------- /docs/pages/example/adjust-layer-opacity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/adjust-layer-opacity.js -------------------------------------------------------------------------------- /docs/pages/example/animate-a-line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/animate-a-line.html -------------------------------------------------------------------------------- /docs/pages/example/animate-a-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/animate-a-line.js -------------------------------------------------------------------------------- /docs/pages/example/animate-images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/animate-images.html -------------------------------------------------------------------------------- /docs/pages/example/animate-images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/animate-images.js -------------------------------------------------------------------------------- /docs/pages/example/attribution-position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/attribution-position.html -------------------------------------------------------------------------------- /docs/pages/example/attribution-position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/attribution-position.js -------------------------------------------------------------------------------- /docs/pages/example/center-on-symbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/center-on-symbol.html -------------------------------------------------------------------------------- /docs/pages/example/center-on-symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/center-on-symbol.js -------------------------------------------------------------------------------- /docs/pages/example/check-for-support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/check-for-support.html -------------------------------------------------------------------------------- /docs/pages/example/check-for-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/check-for-support.js -------------------------------------------------------------------------------- /docs/pages/example/cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/cluster.html -------------------------------------------------------------------------------- /docs/pages/example/cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/cluster.js -------------------------------------------------------------------------------- /docs/pages/example/color-switcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/color-switcher.html -------------------------------------------------------------------------------- /docs/pages/example/color-switcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/color-switcher.js -------------------------------------------------------------------------------- /docs/pages/example/custom-marker-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/custom-marker-icons.html -------------------------------------------------------------------------------- /docs/pages/example/custom-marker-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/custom-marker-icons.js -------------------------------------------------------------------------------- /docs/pages/example/custom-style-id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/custom-style-id.html -------------------------------------------------------------------------------- /docs/pages/example/custom-style-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/custom-style-id.js -------------------------------------------------------------------------------- /docs/pages/example/dancing-buildings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/dancing-buildings.html -------------------------------------------------------------------------------- /docs/pages/example/dancing-buildings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/dancing-buildings.js -------------------------------------------------------------------------------- /docs/pages/example/data-driven-lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/data-driven-lines.html -------------------------------------------------------------------------------- /docs/pages/example/data-driven-lines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/data-driven-lines.js -------------------------------------------------------------------------------- /docs/pages/example/data-join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/data-join.html -------------------------------------------------------------------------------- /docs/pages/example/data-join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/data-join.js -------------------------------------------------------------------------------- /docs/pages/example/disable-rotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/disable-rotation.html -------------------------------------------------------------------------------- /docs/pages/example/disable-rotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/disable-rotation.js -------------------------------------------------------------------------------- /docs/pages/example/disable-scroll-zoom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/disable-scroll-zoom.html -------------------------------------------------------------------------------- /docs/pages/example/disable-scroll-zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/disable-scroll-zoom.js -------------------------------------------------------------------------------- /docs/pages/example/drag-a-point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/drag-a-point.html -------------------------------------------------------------------------------- /docs/pages/example/drag-a-point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/drag-a-point.js -------------------------------------------------------------------------------- /docs/pages/example/featuresat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/featuresat.js -------------------------------------------------------------------------------- /docs/pages/example/filter-markers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/filter-markers.html -------------------------------------------------------------------------------- /docs/pages/example/filter-markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/filter-markers.js -------------------------------------------------------------------------------- /docs/pages/example/fitbounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/fitbounds.html -------------------------------------------------------------------------------- /docs/pages/example/fitbounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/fitbounds.js -------------------------------------------------------------------------------- /docs/pages/example/flyto-options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/flyto-options.html -------------------------------------------------------------------------------- /docs/pages/example/flyto-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/flyto-options.js -------------------------------------------------------------------------------- /docs/pages/example/flyto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/flyto.html -------------------------------------------------------------------------------- /docs/pages/example/flyto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/flyto.js -------------------------------------------------------------------------------- /docs/pages/example/fullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/fullscreen.html -------------------------------------------------------------------------------- /docs/pages/example/fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/fullscreen.js -------------------------------------------------------------------------------- /docs/pages/example/game-controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/game-controls.html -------------------------------------------------------------------------------- /docs/pages/example/game-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/game-controls.js -------------------------------------------------------------------------------- /docs/pages/example/geojson-line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/geojson-line.html -------------------------------------------------------------------------------- /docs/pages/example/geojson-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/geojson-line.js -------------------------------------------------------------------------------- /docs/pages/example/geojson-markers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/geojson-markers.html -------------------------------------------------------------------------------- /docs/pages/example/geojson-markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/geojson-markers.js -------------------------------------------------------------------------------- /docs/pages/example/geojson-polygon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/geojson-polygon.html -------------------------------------------------------------------------------- /docs/pages/example/geojson-polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/geojson-polygon.js -------------------------------------------------------------------------------- /docs/pages/example/heatmap-layer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/heatmap-layer.html -------------------------------------------------------------------------------- /docs/pages/example/heatmap-layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/heatmap-layer.js -------------------------------------------------------------------------------- /docs/pages/example/heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/heatmap.js -------------------------------------------------------------------------------- /docs/pages/example/hillshade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/hillshade.html -------------------------------------------------------------------------------- /docs/pages/example/hillshade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/hillshade.js -------------------------------------------------------------------------------- /docs/pages/example/hover-styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/hover-styles.html -------------------------------------------------------------------------------- /docs/pages/example/hover-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/hover-styles.js -------------------------------------------------------------------------------- /docs/pages/example/image-on-a-map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/image-on-a-map.html -------------------------------------------------------------------------------- /docs/pages/example/image-on-a-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/image-on-a-map.js -------------------------------------------------------------------------------- /docs/pages/example/interactive-false.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/interactive-false.html -------------------------------------------------------------------------------- /docs/pages/example/interactive-false.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/interactive-false.js -------------------------------------------------------------------------------- /docs/pages/example/language-switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/language-switch.html -------------------------------------------------------------------------------- /docs/pages/example/language-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/language-switch.js -------------------------------------------------------------------------------- /docs/pages/example/live-geojson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/live-geojson.html -------------------------------------------------------------------------------- /docs/pages/example/live-geojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/live-geojson.js -------------------------------------------------------------------------------- /docs/pages/example/live-update-feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/live-update-feature.js -------------------------------------------------------------------------------- /docs/pages/example/local-ideographs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/local-ideographs.html -------------------------------------------------------------------------------- /docs/pages/example/local-ideographs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/local-ideographs.js -------------------------------------------------------------------------------- /docs/pages/example/locate-user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/locate-user.html -------------------------------------------------------------------------------- /docs/pages/example/locate-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/locate-user.js -------------------------------------------------------------------------------- /docs/pages/example/map-tiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/map-tiles.html -------------------------------------------------------------------------------- /docs/pages/example/map-tiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/map-tiles.js -------------------------------------------------------------------------------- /docs/pages/example/mapbox-gl-compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/mapbox-gl-compare.html -------------------------------------------------------------------------------- /docs/pages/example/mapbox-gl-compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/mapbox-gl-compare.js -------------------------------------------------------------------------------- /docs/pages/example/mapbox-gl-draw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/mapbox-gl-draw.html -------------------------------------------------------------------------------- /docs/pages/example/mapbox-gl-draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/mapbox-gl-draw.js -------------------------------------------------------------------------------- /docs/pages/example/mapbox-gl-geocoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/mapbox-gl-geocoder.js -------------------------------------------------------------------------------- /docs/pages/example/mapbox-gl-rtl-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/mapbox-gl-rtl-text.js -------------------------------------------------------------------------------- /docs/pages/example/mapbox-gl-supported.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/mapbox-gl-supported.js -------------------------------------------------------------------------------- /docs/pages/example/marker-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/marker-popup.js -------------------------------------------------------------------------------- /docs/pages/example/measure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/measure.html -------------------------------------------------------------------------------- /docs/pages/example/measure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/measure.js -------------------------------------------------------------------------------- /docs/pages/example/mouse-position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/mouse-position.html -------------------------------------------------------------------------------- /docs/pages/example/mouse-position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/mouse-position.js -------------------------------------------------------------------------------- /docs/pages/example/multiple-geometries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/multiple-geometries.js -------------------------------------------------------------------------------- /docs/pages/example/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/navigation.html -------------------------------------------------------------------------------- /docs/pages/example/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/navigation.js -------------------------------------------------------------------------------- /docs/pages/example/playback-locations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/playback-locations.js -------------------------------------------------------------------------------- /docs/pages/example/popup-on-click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/popup-on-click.html -------------------------------------------------------------------------------- /docs/pages/example/popup-on-click.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/popup-on-click.js -------------------------------------------------------------------------------- /docs/pages/example/popup-on-hover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/popup-on-hover.html -------------------------------------------------------------------------------- /docs/pages/example/popup-on-hover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/popup-on-hover.js -------------------------------------------------------------------------------- /docs/pages/example/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/popup.html -------------------------------------------------------------------------------- /docs/pages/example/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/popup.js -------------------------------------------------------------------------------- /docs/pages/example/restrict-bounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/restrict-bounds.html -------------------------------------------------------------------------------- /docs/pages/example/restrict-bounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/restrict-bounds.js -------------------------------------------------------------------------------- /docs/pages/example/satellite-map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/satellite-map.html -------------------------------------------------------------------------------- /docs/pages/example/satellite-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/satellite-map.js -------------------------------------------------------------------------------- /docs/pages/example/scroll-fly-to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/scroll-fly-to.html -------------------------------------------------------------------------------- /docs/pages/example/scroll-fly-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/scroll-fly-to.js -------------------------------------------------------------------------------- /docs/pages/example/set-perspective.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/set-perspective.html -------------------------------------------------------------------------------- /docs/pages/example/set-perspective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/set-perspective.js -------------------------------------------------------------------------------- /docs/pages/example/set-popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/set-popup.html -------------------------------------------------------------------------------- /docs/pages/example/set-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/set-popup.js -------------------------------------------------------------------------------- /docs/pages/example/setstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/setstyle.html -------------------------------------------------------------------------------- /docs/pages/example/setstyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/setstyle.js -------------------------------------------------------------------------------- /docs/pages/example/simple-map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/simple-map.html -------------------------------------------------------------------------------- /docs/pages/example/simple-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/simple-map.js -------------------------------------------------------------------------------- /docs/pages/example/third-party.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/third-party.html -------------------------------------------------------------------------------- /docs/pages/example/third-party.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/third-party.js -------------------------------------------------------------------------------- /docs/pages/example/timeline-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/timeline-animation.js -------------------------------------------------------------------------------- /docs/pages/example/toggle-layers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/toggle-layers.html -------------------------------------------------------------------------------- /docs/pages/example/toggle-layers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/toggle-layers.js -------------------------------------------------------------------------------- /docs/pages/example/updating-choropleth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/updating-choropleth.js -------------------------------------------------------------------------------- /docs/pages/example/using-featuresin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/using-featuresin.js -------------------------------------------------------------------------------- /docs/pages/example/vector-source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/vector-source.html -------------------------------------------------------------------------------- /docs/pages/example/vector-source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/vector-source.js -------------------------------------------------------------------------------- /docs/pages/example/video-on-a-map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/video-on-a-map.html -------------------------------------------------------------------------------- /docs/pages/example/video-on-a-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/video-on-a-map.js -------------------------------------------------------------------------------- /docs/pages/example/wms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/wms.html -------------------------------------------------------------------------------- /docs/pages/example/wms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/wms.js -------------------------------------------------------------------------------- /docs/pages/example/zoomto-linestring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/zoomto-linestring.html -------------------------------------------------------------------------------- /docs/pages/example/zoomto-linestring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/example/zoomto-linestring.js -------------------------------------------------------------------------------- /docs/pages/examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/examples.js -------------------------------------------------------------------------------- /docs/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/index.js -------------------------------------------------------------------------------- /docs/pages/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/plugins.js -------------------------------------------------------------------------------- /docs/pages/roadmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/roadmap.js -------------------------------------------------------------------------------- /docs/pages/style-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/docs/pages/style-spec.js -------------------------------------------------------------------------------- /flow-typed/geojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/flow-typed/geojson.js -------------------------------------------------------------------------------- /flow-typed/mapbox-gl-js-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/flow-typed/mapbox-gl-js-test.js -------------------------------------------------------------------------------- /flow-typed/mapbox-gl-supported.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/flow-typed/mapbox-gl-supported.js -------------------------------------------------------------------------------- /flow-typed/mapbox-unitbezier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/flow-typed/mapbox-unitbezier.js -------------------------------------------------------------------------------- /flow-typed/pbf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/flow-typed/pbf.js -------------------------------------------------------------------------------- /flow-typed/point-geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/flow-typed/point-geometry.js -------------------------------------------------------------------------------- /flow-typed/pointlike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/flow-typed/pointlike.js -------------------------------------------------------------------------------- /flow-typed/shelf-pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/flow-typed/shelf-pack.js -------------------------------------------------------------------------------- /flow-typed/style-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/flow-typed/style-spec.js -------------------------------------------------------------------------------- /flow-typed/unitbezier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/flow-typed/unitbezier.js -------------------------------------------------------------------------------- /flow-typed/vector-tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/flow-typed/vector-tile.js -------------------------------------------------------------------------------- /flow-typed/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/flow-typed/window.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/package.json -------------------------------------------------------------------------------- /src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/.eslintrc -------------------------------------------------------------------------------- /src/basic/painter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/basic/painter.js -------------------------------------------------------------------------------- /src/basic/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/basic/renderer.js -------------------------------------------------------------------------------- /src/basic/source_cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/basic/source_cache.js -------------------------------------------------------------------------------- /src/basic/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/basic/style.js -------------------------------------------------------------------------------- /src/basic/tileSpec.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data/array_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/array_types.js -------------------------------------------------------------------------------- /src/data/bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/bucket.js -------------------------------------------------------------------------------- /src/data/bucket/circle_attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/bucket/circle_attributes.js -------------------------------------------------------------------------------- /src/data/bucket/circle_bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/bucket/circle_bucket.js -------------------------------------------------------------------------------- /src/data/bucket/fill_attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/bucket/fill_attributes.js -------------------------------------------------------------------------------- /src/data/bucket/fill_bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/bucket/fill_bucket.js -------------------------------------------------------------------------------- /src/data/bucket/fill_extrusion_bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/bucket/fill_extrusion_bucket.js -------------------------------------------------------------------------------- /src/data/bucket/heatmap_bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/bucket/heatmap_bucket.js -------------------------------------------------------------------------------- /src/data/bucket/line_attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/bucket/line_attributes.js -------------------------------------------------------------------------------- /src/data/bucket/line_bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/bucket/line_bucket.js -------------------------------------------------------------------------------- /src/data/bucket/symbol_attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/bucket/symbol_attributes.js -------------------------------------------------------------------------------- /src/data/bucket/symbol_bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/bucket/symbol_bucket.js -------------------------------------------------------------------------------- /src/data/dem_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/dem_data.js -------------------------------------------------------------------------------- /src/data/extent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/extent.js -------------------------------------------------------------------------------- /src/data/feature_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/feature_index.js -------------------------------------------------------------------------------- /src/data/index_array_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/index_array_type.js -------------------------------------------------------------------------------- /src/data/load_geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/load_geometry.js -------------------------------------------------------------------------------- /src/data/pos_attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/pos_attributes.js -------------------------------------------------------------------------------- /src/data/program_configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/program_configuration.js -------------------------------------------------------------------------------- /src/data/raster_bounds_attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/raster_bounds_attributes.js -------------------------------------------------------------------------------- /src/data/segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/data/segment.js -------------------------------------------------------------------------------- /src/geo/coordinate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/geo/coordinate.js -------------------------------------------------------------------------------- /src/geo/lng_lat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/geo/lng_lat.js -------------------------------------------------------------------------------- /src/geo/lng_lat_bounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/geo/lng_lat_bounds.js -------------------------------------------------------------------------------- /src/geo/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/geo/transform.js -------------------------------------------------------------------------------- /src/gl/color_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/gl/color_mode.js -------------------------------------------------------------------------------- /src/gl/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/gl/context.js -------------------------------------------------------------------------------- /src/gl/depth_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/gl/depth_mode.js -------------------------------------------------------------------------------- /src/gl/framebuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/gl/framebuffer.js -------------------------------------------------------------------------------- /src/gl/index_buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/gl/index_buffer.js -------------------------------------------------------------------------------- /src/gl/stencil_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/gl/stencil_mode.js -------------------------------------------------------------------------------- /src/gl/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/gl/types.js -------------------------------------------------------------------------------- /src/gl/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/gl/value.js -------------------------------------------------------------------------------- /src/gl/vertex_buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/gl/vertex_buffer.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/index.js -------------------------------------------------------------------------------- /src/render/draw_background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/draw_background.js -------------------------------------------------------------------------------- /src/render/draw_circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/draw_circle.js -------------------------------------------------------------------------------- /src/render/draw_collision_debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/draw_collision_debug.js -------------------------------------------------------------------------------- /src/render/draw_debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/draw_debug.js -------------------------------------------------------------------------------- /src/render/draw_fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/draw_fill.js -------------------------------------------------------------------------------- /src/render/draw_fill_extrusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/draw_fill_extrusion.js -------------------------------------------------------------------------------- /src/render/draw_heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/draw_heatmap.js -------------------------------------------------------------------------------- /src/render/draw_hillshade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/draw_hillshade.js -------------------------------------------------------------------------------- /src/render/draw_line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/draw_line.js -------------------------------------------------------------------------------- /src/render/draw_raster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/draw_raster.js -------------------------------------------------------------------------------- /src/render/draw_symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/draw_symbol.js -------------------------------------------------------------------------------- /src/render/glyph_atlas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/glyph_atlas.js -------------------------------------------------------------------------------- /src/render/glyph_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/glyph_manager.js -------------------------------------------------------------------------------- /src/render/image_atlas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/image_atlas.js -------------------------------------------------------------------------------- /src/render/image_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/image_manager.js -------------------------------------------------------------------------------- /src/render/line_atlas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/line_atlas.js -------------------------------------------------------------------------------- /src/render/painter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/painter.js -------------------------------------------------------------------------------- /src/render/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/pattern.js -------------------------------------------------------------------------------- /src/render/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/program.js -------------------------------------------------------------------------------- /src/render/texture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/texture.js -------------------------------------------------------------------------------- /src/render/tile_mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/tile_mask.js -------------------------------------------------------------------------------- /src/render/vertex_array_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/render/vertex_array_object.js -------------------------------------------------------------------------------- /src/shaders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/README.md -------------------------------------------------------------------------------- /src/shaders/_prelude.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/_prelude.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/_prelude.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/_prelude.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/background.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/background.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/background.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/background.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/circle.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/circle.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/circle.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/circle.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/clipping_mask.fragment.glsl: -------------------------------------------------------------------------------- 1 | void main() { 2 | gl_FragColor = vec4(1.0); 3 | } 4 | -------------------------------------------------------------------------------- /src/shaders/clipping_mask.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/clipping_mask.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/collision_box.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/collision_box.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/collision_box.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/collision_box.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/collision_circle.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/collision_circle.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/debug.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/debug.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/debug.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/debug.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/encode_attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/encode_attribute.js -------------------------------------------------------------------------------- /src/shaders/extrusion_texture.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/extrusion_texture.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/fill.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/fill.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/fill.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/fill.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/fill_extrusion.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/fill_extrusion.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/fill_extrusion.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/fill_extrusion.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/fill_outline.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/fill_outline.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/fill_outline.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/fill_outline.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/fill_pattern.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/fill_pattern.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/fill_pattern.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/fill_pattern.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/heatmap.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/heatmap.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/heatmap.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/heatmap.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/heatmap_texture.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/heatmap_texture.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/heatmap_texture.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/heatmap_texture.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/hillshade.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/hillshade.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/hillshade.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/hillshade.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/hillshade_prepare.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/hillshade_prepare.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/index.js -------------------------------------------------------------------------------- /src/shaders/line.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/line.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/line.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/line.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/line_pattern.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/line_pattern.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/line_pattern.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/line_pattern.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/line_sdf.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/line_sdf.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/line_sdf.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/line_sdf.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/raster.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/raster.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/raster.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/raster.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/symbol_icon.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/symbol_icon.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/symbol_icon.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/symbol_icon.vertex.glsl -------------------------------------------------------------------------------- /src/shaders/symbol_sdf.fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/symbol_sdf.fragment.glsl -------------------------------------------------------------------------------- /src/shaders/symbol_sdf.vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/shaders/symbol_sdf.vertex.glsl -------------------------------------------------------------------------------- /src/source/canvas_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/canvas_source.js -------------------------------------------------------------------------------- /src/source/geojson_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/geojson_source.js -------------------------------------------------------------------------------- /src/source/geojson_worker_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/geojson_worker_source.js -------------------------------------------------------------------------------- /src/source/geojson_wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/geojson_wrapper.js -------------------------------------------------------------------------------- /src/source/image_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/image_source.js -------------------------------------------------------------------------------- /src/source/load_tilejson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/load_tilejson.js -------------------------------------------------------------------------------- /src/source/pixels_to_tile_units.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/pixels_to_tile_units.js -------------------------------------------------------------------------------- /src/source/query_features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/query_features.js -------------------------------------------------------------------------------- /src/source/raster_dem_tile_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/raster_dem_tile_source.js -------------------------------------------------------------------------------- /src/source/raster_tile_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/raster_tile_source.js -------------------------------------------------------------------------------- /src/source/rtl_text_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/rtl_text_plugin.js -------------------------------------------------------------------------------- /src/source/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/source.js -------------------------------------------------------------------------------- /src/source/source_cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/source_cache.js -------------------------------------------------------------------------------- /src/source/tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/tile.js -------------------------------------------------------------------------------- /src/source/tile_bounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/tile_bounds.js -------------------------------------------------------------------------------- /src/source/tile_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/tile_id.js -------------------------------------------------------------------------------- /src/source/vector_tile_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/vector_tile_source.js -------------------------------------------------------------------------------- /src/source/vector_tile_worker_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/vector_tile_worker_source.js -------------------------------------------------------------------------------- /src/source/video_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/video_source.js -------------------------------------------------------------------------------- /src/source/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/worker.js -------------------------------------------------------------------------------- /src/source/worker_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/worker_source.js -------------------------------------------------------------------------------- /src/source/worker_tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/source/worker_tile.js -------------------------------------------------------------------------------- /src/style-spec/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/.eslintrc -------------------------------------------------------------------------------- /src/style-spec/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/CHANGELOG.md -------------------------------------------------------------------------------- /src/style-spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/README.md -------------------------------------------------------------------------------- /src/style-spec/bin/gl-style-composite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/bin/gl-style-composite -------------------------------------------------------------------------------- /src/style-spec/bin/gl-style-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/bin/gl-style-format -------------------------------------------------------------------------------- /src/style-spec/bin/gl-style-migrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/bin/gl-style-migrate -------------------------------------------------------------------------------- /src/style-spec/bin/gl-style-validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/bin/gl-style-validate -------------------------------------------------------------------------------- /src/style-spec/build/strictify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/build/strictify.js -------------------------------------------------------------------------------- /src/style-spec/composite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/composite.js -------------------------------------------------------------------------------- /src/style-spec/declass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/declass.js -------------------------------------------------------------------------------- /src/style-spec/deref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/deref.js -------------------------------------------------------------------------------- /src/style-spec/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/diff.js -------------------------------------------------------------------------------- /src/style-spec/error/parsing_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/error/parsing_error.js -------------------------------------------------------------------------------- /src/style-spec/error/validation_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/error/validation_error.js -------------------------------------------------------------------------------- /src/style-spec/expression/expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/expression/expression.js -------------------------------------------------------------------------------- /src/style-spec/expression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/expression/index.js -------------------------------------------------------------------------------- /src/style-spec/expression/is_constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/expression/is_constant.js -------------------------------------------------------------------------------- /src/style-spec/expression/scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/expression/scope.js -------------------------------------------------------------------------------- /src/style-spec/expression/stops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/expression/stops.js -------------------------------------------------------------------------------- /src/style-spec/expression/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/expression/types.js -------------------------------------------------------------------------------- /src/style-spec/expression/values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/expression/values.js -------------------------------------------------------------------------------- /src/style-spec/feature_filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/feature_filter/README.md -------------------------------------------------------------------------------- /src/style-spec/feature_filter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/feature_filter/index.js -------------------------------------------------------------------------------- /src/style-spec/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/format.js -------------------------------------------------------------------------------- /src/style-spec/function/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/function/convert.js -------------------------------------------------------------------------------- /src/style-spec/function/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/function/index.js -------------------------------------------------------------------------------- /src/style-spec/group_by_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/group_by_layout.js -------------------------------------------------------------------------------- /src/style-spec/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/migrate.js -------------------------------------------------------------------------------- /src/style-spec/migrate/v8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/migrate/v8.js -------------------------------------------------------------------------------- /src/style-spec/migrate/v9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/migrate/v9.js -------------------------------------------------------------------------------- /src/style-spec/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/package.json -------------------------------------------------------------------------------- /src/style-spec/reference/latest.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./v8.json'); 3 | -------------------------------------------------------------------------------- /src/style-spec/reference/v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/reference/v8.json -------------------------------------------------------------------------------- /src/style-spec/style-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/style-spec.js -------------------------------------------------------------------------------- /src/style-spec/util/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/util/color.js -------------------------------------------------------------------------------- /src/style-spec/util/color_spaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/util/color_spaces.js -------------------------------------------------------------------------------- /src/style-spec/util/deep_equal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/util/deep_equal.js -------------------------------------------------------------------------------- /src/style-spec/util/eval_support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/util/eval_support.js -------------------------------------------------------------------------------- /src/style-spec/util/extend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/util/extend.js -------------------------------------------------------------------------------- /src/style-spec/util/get_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/util/get_type.js -------------------------------------------------------------------------------- /src/style-spec/util/interpolate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/util/interpolate.js -------------------------------------------------------------------------------- /src/style-spec/util/ref_properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/util/ref_properties.js -------------------------------------------------------------------------------- /src/style-spec/util/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/util/result.js -------------------------------------------------------------------------------- /src/style-spec/util/unbundle_jsonlint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/util/unbundle_jsonlint.js -------------------------------------------------------------------------------- /src/style-spec/validate/latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/validate/latest.js -------------------------------------------------------------------------------- /src/style-spec/validate/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/validate/validate.js -------------------------------------------------------------------------------- /src/style-spec/validate/validate_array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/validate/validate_array.js -------------------------------------------------------------------------------- /src/style-spec/validate/validate_color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/validate/validate_color.js -------------------------------------------------------------------------------- /src/style-spec/validate/validate_enum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/validate/validate_enum.js -------------------------------------------------------------------------------- /src/style-spec/validate/validate_layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/validate/validate_layer.js -------------------------------------------------------------------------------- /src/style-spec/validate/validate_light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/validate/validate_light.js -------------------------------------------------------------------------------- /src/style-spec/validate_style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/validate_style.js -------------------------------------------------------------------------------- /src/style-spec/validate_style.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style-spec/validate_style.min.js -------------------------------------------------------------------------------- /src/style/cross_faded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/cross_faded.js -------------------------------------------------------------------------------- /src/style/evaluation_parameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/evaluation_parameters.js -------------------------------------------------------------------------------- /src/style/light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/light.js -------------------------------------------------------------------------------- /src/style/load_glyph_range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/load_glyph_range.js -------------------------------------------------------------------------------- /src/style/load_sprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/load_sprite.js -------------------------------------------------------------------------------- /src/style/parse_glyph_pbf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/parse_glyph_pbf.js -------------------------------------------------------------------------------- /src/style/pauseable_placement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/pauseable_placement.js -------------------------------------------------------------------------------- /src/style/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/properties.js -------------------------------------------------------------------------------- /src/style/query_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/query_utils.js -------------------------------------------------------------------------------- /src/style/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/style.js -------------------------------------------------------------------------------- /src/style/style_glyph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/style_glyph.js -------------------------------------------------------------------------------- /src/style/style_image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/style_image.js -------------------------------------------------------------------------------- /src/style/style_layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/style_layer.js -------------------------------------------------------------------------------- /src/style/style_layer/fill_style_layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/style_layer/fill_style_layer.js -------------------------------------------------------------------------------- /src/style/style_layer/line_style_layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/style_layer/line_style_layer.js -------------------------------------------------------------------------------- /src/style/style_layer_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/style_layer_index.js -------------------------------------------------------------------------------- /src/style/validate_style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/validate_style.js -------------------------------------------------------------------------------- /src/style/zoom_history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/style/zoom_history.js -------------------------------------------------------------------------------- /src/symbol/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/anchor.js -------------------------------------------------------------------------------- /src/symbol/check_max_angle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/check_max_angle.js -------------------------------------------------------------------------------- /src/symbol/clip_line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/clip_line.js -------------------------------------------------------------------------------- /src/symbol/collision_feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/collision_feature.js -------------------------------------------------------------------------------- /src/symbol/collision_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/collision_index.js -------------------------------------------------------------------------------- /src/symbol/cross_tile_symbol_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/cross_tile_symbol_index.js -------------------------------------------------------------------------------- /src/symbol/get_anchors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/get_anchors.js -------------------------------------------------------------------------------- /src/symbol/grid_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/grid_index.js -------------------------------------------------------------------------------- /src/symbol/mergelines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/mergelines.js -------------------------------------------------------------------------------- /src/symbol/opacity_state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/opacity_state.js -------------------------------------------------------------------------------- /src/symbol/placement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/placement.js -------------------------------------------------------------------------------- /src/symbol/projection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/projection.js -------------------------------------------------------------------------------- /src/symbol/quads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/quads.js -------------------------------------------------------------------------------- /src/symbol/shaping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/shaping.js -------------------------------------------------------------------------------- /src/symbol/symbol_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/symbol_layout.js -------------------------------------------------------------------------------- /src/symbol/symbol_size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/symbol_size.js -------------------------------------------------------------------------------- /src/symbol/transform_text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/symbol/transform_text.js -------------------------------------------------------------------------------- /src/types/callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/types/callback.js -------------------------------------------------------------------------------- /src/types/tilejson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/types/tilejson.js -------------------------------------------------------------------------------- /src/types/transferable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/types/transferable.js -------------------------------------------------------------------------------- /src/ui/bind_handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/bind_handlers.js -------------------------------------------------------------------------------- /src/ui/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/camera.js -------------------------------------------------------------------------------- /src/ui/control/attribution_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/control/attribution_control.js -------------------------------------------------------------------------------- /src/ui/control/fullscreen_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/control/fullscreen_control.js -------------------------------------------------------------------------------- /src/ui/control/geolocate_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/control/geolocate_control.js -------------------------------------------------------------------------------- /src/ui/control/logo_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/control/logo_control.js -------------------------------------------------------------------------------- /src/ui/control/navigation_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/control/navigation_control.js -------------------------------------------------------------------------------- /src/ui/control/scale_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/control/scale_control.js -------------------------------------------------------------------------------- /src/ui/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/events.js -------------------------------------------------------------------------------- /src/ui/handler/box_zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/handler/box_zoom.js -------------------------------------------------------------------------------- /src/ui/handler/dblclick_zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/handler/dblclick_zoom.js -------------------------------------------------------------------------------- /src/ui/handler/drag_pan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/handler/drag_pan.js -------------------------------------------------------------------------------- /src/ui/handler/drag_rotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/handler/drag_rotate.js -------------------------------------------------------------------------------- /src/ui/handler/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/handler/keyboard.js -------------------------------------------------------------------------------- /src/ui/handler/scroll_zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/handler/scroll_zoom.js -------------------------------------------------------------------------------- /src/ui/handler/touch_zoom_rotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/handler/touch_zoom_rotate.js -------------------------------------------------------------------------------- /src/ui/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/hash.js -------------------------------------------------------------------------------- /src/ui/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/map.js -------------------------------------------------------------------------------- /src/ui/marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/marker.js -------------------------------------------------------------------------------- /src/ui/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/ui/popup.js -------------------------------------------------------------------------------- /src/util/actor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/actor.js -------------------------------------------------------------------------------- /src/util/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/ajax.js -------------------------------------------------------------------------------- /src/util/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/browser.js -------------------------------------------------------------------------------- /src/util/browser/web_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/browser/web_worker.js -------------------------------------------------------------------------------- /src/util/browser/window.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | /* eslint-env browser */ 4 | module.exports = (self: Window); 5 | -------------------------------------------------------------------------------- /src/util/classify_rings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/classify_rings.js -------------------------------------------------------------------------------- /src/util/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/config.js -------------------------------------------------------------------------------- /src/util/dictionary_coder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/dictionary_coder.js -------------------------------------------------------------------------------- /src/util/dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/dispatcher.js -------------------------------------------------------------------------------- /src/util/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/dom.js -------------------------------------------------------------------------------- /src/util/evented.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/evented.js -------------------------------------------------------------------------------- /src/util/find_pole_of_inaccessibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/find_pole_of_inaccessibility.js -------------------------------------------------------------------------------- /src/util/global_worker_pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/global_worker_pool.js -------------------------------------------------------------------------------- /src/util/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/image.js -------------------------------------------------------------------------------- /src/util/intersection_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/intersection_tests.js -------------------------------------------------------------------------------- /src/util/is_char_in_unicode_block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/is_char_in_unicode_block.js -------------------------------------------------------------------------------- /src/util/lru_cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/lru_cache.js -------------------------------------------------------------------------------- /src/util/mapbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/mapbox.js -------------------------------------------------------------------------------- /src/util/script_detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/script_detection.js -------------------------------------------------------------------------------- /src/util/smart_wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/smart_wrap.js -------------------------------------------------------------------------------- /src/util/struct_array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/struct_array.js -------------------------------------------------------------------------------- /src/util/struct_array.js.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/struct_array.js.ejs -------------------------------------------------------------------------------- /src/util/struct_array_layout.js.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/struct_array_layout.js.ejs -------------------------------------------------------------------------------- /src/util/throttle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/throttle.js -------------------------------------------------------------------------------- /src/util/tile_cover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/tile_cover.js -------------------------------------------------------------------------------- /src/util/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/token.js -------------------------------------------------------------------------------- /src/util/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/util.js -------------------------------------------------------------------------------- /src/util/vectortile_to_geojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/vectortile_to_geojson.js -------------------------------------------------------------------------------- /src/util/verticalize_punctuation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/verticalize_punctuation.js -------------------------------------------------------------------------------- /src/util/web_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/web_worker.js -------------------------------------------------------------------------------- /src/util/web_worker_transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/web_worker_transfer.js -------------------------------------------------------------------------------- /src/util/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/window.js -------------------------------------------------------------------------------- /src/util/worker_pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/src/util/worker_pool.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/README.md -------------------------------------------------------------------------------- /test/build/browserify-test-fixture.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../..'); 3 | -------------------------------------------------------------------------------- /test/build/dev.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/build/dev.test.js -------------------------------------------------------------------------------- /test/build/min.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/build/min.test.js -------------------------------------------------------------------------------- /test/build/style-spec.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/build/style-spec.test.js -------------------------------------------------------------------------------- /test/expected/text-shaping-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/expected/text-shaping-default.json -------------------------------------------------------------------------------- /test/expected/text-shaping-linebreak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/expected/text-shaping-linebreak.json -------------------------------------------------------------------------------- /test/expected/text-shaping-newline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/expected/text-shaping-newline.json -------------------------------------------------------------------------------- /test/expected/text-shaping-null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/expected/text-shaping-null.json -------------------------------------------------------------------------------- /test/expected/text-shaping-spacing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/expected/text-shaping-spacing.json -------------------------------------------------------------------------------- /test/expression.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/expression.test.js -------------------------------------------------------------------------------- /test/fixtures/0-255.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/fixtures/0-255.pbf -------------------------------------------------------------------------------- /test/fixtures/fontstack-glyphs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/fixtures/fontstack-glyphs.json -------------------------------------------------------------------------------- /test/fixtures/mbsv5-6-18-23.vector.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/fixtures/mbsv5-6-18-23.vector.pbf -------------------------------------------------------------------------------- /test/fixtures/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/fixtures/source.json -------------------------------------------------------------------------------- /test/fixtures/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/fixtures/style.json -------------------------------------------------------------------------------- /test/ignores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/ignores.json -------------------------------------------------------------------------------- /test/integration/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/.eslintrc -------------------------------------------------------------------------------- /test/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/README.md -------------------------------------------------------------------------------- /test/integration/data/121points.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/data/121points.geojson -------------------------------------------------------------------------------- /test/integration/data/chinese.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/data/chinese.geojson -------------------------------------------------------------------------------- /test/integration/data/feature.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/data/feature.geojson -------------------------------------------------------------------------------- /test/integration/data/invalid.geojson: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /test/integration/data/linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/data/linestring.geojson -------------------------------------------------------------------------------- /test/integration/data/malformed.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/data/malformed.geojson -------------------------------------------------------------------------------- /test/integration/data/places.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/data/places.geojson -------------------------------------------------------------------------------- /test/integration/data/winding.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/data/winding.geojson -------------------------------------------------------------------------------- /test/integration/geojson/point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/geojson/point.json -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/0-255.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/glyphs/NotoCJK/0-255.pbf -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/10240-10495.pbf: -------------------------------------------------------------------------------- 1 | 2 | $ 3 | Noto Sans CJK JP Thin 10240-10495 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/10752-11007.pbf: -------------------------------------------------------------------------------- 1 | 2 | $ 3 | Noto Sans CJK JP Thin 10752-11007 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/11264-11519.pbf: -------------------------------------------------------------------------------- 1 | 2 | $ 3 | Noto Sans CJK JP Thin 11264-11519 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/11520-11775.pbf: -------------------------------------------------------------------------------- 1 | 2 | $ 3 | Noto Sans CJK JP Thin 11520-11775 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/1280-1535.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 1280-1535 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/1536-1791.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 1536-1791 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/1792-2047.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 1792-2047 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/2048-2303.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 2048-2303 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/2304-2559.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 2304-2559 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/2560-2815.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 2560-2815 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/2816-3071.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 2816-3071 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/3072-3327.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 3072-3327 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/3328-3583.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 3328-3583 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/3584-3839.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 3584-3839 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/3840-4095.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 3840-4095 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/4096-4351.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 4096-4351 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/4608-4863.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 4608-4863 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/4864-5119.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 4864-5119 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/5120-5375.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 5120-5375 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/5376-5631.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 5376-5631 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/5632-5887.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 5632-5887 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/5888-6143.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 5888-6143 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/6144-6399.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 6144-6399 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/6400-6655.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 6400-6655 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/6656-6911.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 6656-6911 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/6912-7167.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 6912-7167 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/7168-7423.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 7168-7423 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/7424-7679.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 7424-7679 -------------------------------------------------------------------------------- /test/integration/glyphs/NotoCJK/7936-8191.pbf: -------------------------------------------------------------------------------- 1 | 2 | " 3 | Noto Sans CJK JP Thin 7936-8191 -------------------------------------------------------------------------------- /test/integration/image/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/image/0.png -------------------------------------------------------------------------------- /test/integration/image/line.sdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/image/line.sdf.png -------------------------------------------------------------------------------- /test/integration/image/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/image/marker.png -------------------------------------------------------------------------------- /test/integration/image/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/image/rocket.png -------------------------------------------------------------------------------- /test/integration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/index.js -------------------------------------------------------------------------------- /test/integration/lib/expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/lib/expression.js -------------------------------------------------------------------------------- /test/integration/lib/harness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/lib/harness.js -------------------------------------------------------------------------------- /test/integration/lib/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/lib/query.js -------------------------------------------------------------------------------- /test/integration/lib/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/lib/render.js -------------------------------------------------------------------------------- /test/integration/lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/lib/server.js -------------------------------------------------------------------------------- /test/integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/package.json -------------------------------------------------------------------------------- /test/integration/query-tests/circle-radius-features-in/outside/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/circle-radius/outside/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/circle-stroke-width/outside/expected.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /test/integration/query-tests/circle-translate/outside/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/invisible-features/visibility-none/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/line-gap-width/outside-fractional/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/line-gap-width/outside/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/line-offset/outside-fractional/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/line-offset/outside/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/line-translate/outside/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/line-width-features-in/outside/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/line-width-features-in/tilt-outside/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/line-width/outside-fractional/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/line-width/outside/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/options/filter-false/expected.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /test/integration/query-tests/regressions/mapbox-gl-js#5473/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/symbol-features-in/fractional-outside/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/symbol-features-in/hidden/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/symbol-features-in/outside/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/symbol-features-in/tilted-outside/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/symbol/fractional-outside/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/symbol/hidden/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/symbol/outside/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/query-tests/symbol/rotated-outside/expected.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/integration/results.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/results.html.tmpl -------------------------------------------------------------------------------- /test/integration/sprites/1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/1.5x.png -------------------------------------------------------------------------------- /test/integration/sprites/1x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/1x.json -------------------------------------------------------------------------------- /test/integration/sprites/1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/1x.png -------------------------------------------------------------------------------- /test/integration/sprites/1x@2x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/1x@2x.json -------------------------------------------------------------------------------- /test/integration/sprites/1x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/1x@2x.png -------------------------------------------------------------------------------- /test/integration/sprites/2x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/2x.json -------------------------------------------------------------------------------- /test/integration/sprites/2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/2x.png -------------------------------------------------------------------------------- /test/integration/sprites/2x@2x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/2x@2x.json -------------------------------------------------------------------------------- /test/integration/sprites/2x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/2x@2x.png -------------------------------------------------------------------------------- /test/integration/sprites/3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/3x.png -------------------------------------------------------------------------------- /test/integration/sprites/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/dark.json -------------------------------------------------------------------------------- /test/integration/sprites/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/dark.png -------------------------------------------------------------------------------- /test/integration/sprites/emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/emerald.json -------------------------------------------------------------------------------- /test/integration/sprites/emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/emerald.png -------------------------------------------------------------------------------- /test/integration/sprites/emerald@2x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/emerald@2x.json -------------------------------------------------------------------------------- /test/integration/sprites/emerald@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/emerald@2x.png -------------------------------------------------------------------------------- /test/integration/sprites/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/light.json -------------------------------------------------------------------------------- /test/integration/sprites/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/light.png -------------------------------------------------------------------------------- /test/integration/sprites/solid-black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/solid-black.json -------------------------------------------------------------------------------- /test/integration/sprites/solid-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/solid-black.png -------------------------------------------------------------------------------- /test/integration/sprites/sprite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/sprite.json -------------------------------------------------------------------------------- /test/integration/sprites/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/sprites/sprite.png -------------------------------------------------------------------------------- /test/integration/tiles/0-0-0.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/0-0-0.mvt -------------------------------------------------------------------------------- /test/integration/tiles/0-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/0-0-0.png -------------------------------------------------------------------------------- /test/integration/tiles/14-4357-6245.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/14-4357-6245.mvt -------------------------------------------------------------------------------- /test/integration/tiles/14-8802-5374.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/14-8802-5374.mvt -------------------------------------------------------------------------------- /test/integration/tiles/14-8802-5375.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/14-8802-5375.mvt -------------------------------------------------------------------------------- /test/integration/tiles/14-8803-5374.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/14-8803-5374.mvt -------------------------------------------------------------------------------- /test/integration/tiles/14-8803-5375.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/14-8803-5375.mvt -------------------------------------------------------------------------------- /test/integration/tiles/2-1-1.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/2-1-1.mvt -------------------------------------------------------------------------------- /test/integration/tiles/2-1-1.tms.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/2-1-1.tms.mvt -------------------------------------------------------------------------------- /test/integration/tiles/2-1-2.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/2-1-2.mvt -------------------------------------------------------------------------------- /test/integration/tiles/2-1-2.tms.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/2-1-2.tms.mvt -------------------------------------------------------------------------------- /test/integration/tiles/2-2-1.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/2-2-1.mvt -------------------------------------------------------------------------------- /test/integration/tiles/2-2-1.tms.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/2-2-1.tms.mvt -------------------------------------------------------------------------------- /test/integration/tiles/2-2-2.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/2-2-2.mvt -------------------------------------------------------------------------------- /test/integration/tiles/2-2-2.tms.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/2-2-2.tms.mvt -------------------------------------------------------------------------------- /test/integration/tiles/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/alpha.png -------------------------------------------------------------------------------- /test/integration/tiles/extent-1024.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/extent-1024.mvt -------------------------------------------------------------------------------- /test/integration/tiles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/package.json -------------------------------------------------------------------------------- /test/integration/tiles/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tiles/upgrade.js -------------------------------------------------------------------------------- /test/integration/tilesets/raster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tilesets/raster.json -------------------------------------------------------------------------------- /test/integration/tilesets/vector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/tilesets/vector.json -------------------------------------------------------------------------------- /test/integration/video/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/integration/video/0.png -------------------------------------------------------------------------------- /test/node_modules/mapbox-gl-js-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/node_modules/mapbox-gl-js-test.js -------------------------------------------------------------------------------- /test/query.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/query.test.js -------------------------------------------------------------------------------- /test/render.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/render.test.js -------------------------------------------------------------------------------- /test/suite_implementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/suite_implementation.js -------------------------------------------------------------------------------- /test/unit/data/dem_data.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/data/dem_data.test.js -------------------------------------------------------------------------------- /test/unit/data/fill_bucket.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/data/fill_bucket.test.js -------------------------------------------------------------------------------- /test/unit/data/line_bucket.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/data/line_bucket.test.js -------------------------------------------------------------------------------- /test/unit/data/load_geometry.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/data/load_geometry.test.js -------------------------------------------------------------------------------- /test/unit/data/symbol_bucket.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/data/symbol_bucket.test.js -------------------------------------------------------------------------------- /test/unit/data/vertex_buffer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/data/vertex_buffer.test.js -------------------------------------------------------------------------------- /test/unit/geo/coordinate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/geo/coordinate.test.js -------------------------------------------------------------------------------- /test/unit/geo/lng_lat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/geo/lng_lat.test.js -------------------------------------------------------------------------------- /test/unit/geo/lng_lat_bounds.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/geo/lng_lat_bounds.test.js -------------------------------------------------------------------------------- /test/unit/geo/transform.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/geo/transform.test.js -------------------------------------------------------------------------------- /test/unit/gl/state.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/gl/state.test.js -------------------------------------------------------------------------------- /test/unit/mapbox-gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/mapbox-gl.js -------------------------------------------------------------------------------- /test/unit/render/glyph_manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/render/glyph_manager.test.js -------------------------------------------------------------------------------- /test/unit/source/canvas_source.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/source/canvas_source.test.js -------------------------------------------------------------------------------- /test/unit/source/geojson_source.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/source/geojson_source.test.js -------------------------------------------------------------------------------- /test/unit/source/geojson_wrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/source/geojson_wrapper.test.js -------------------------------------------------------------------------------- /test/unit/source/image_source.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/source/image_source.test.js -------------------------------------------------------------------------------- /test/unit/source/query_features.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/source/query_features.test.js -------------------------------------------------------------------------------- /test/unit/source/source_cache.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/source/source_cache.test.js -------------------------------------------------------------------------------- /test/unit/source/tile.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/source/tile.test.js -------------------------------------------------------------------------------- /test/unit/source/tile_id.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/source/tile_id.test.js -------------------------------------------------------------------------------- /test/unit/source/tile_mask.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/source/tile_mask.test.js -------------------------------------------------------------------------------- /test/unit/source/worker.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/source/worker.test.js -------------------------------------------------------------------------------- /test/unit/source/worker_tile.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/source/worker_tile.test.js -------------------------------------------------------------------------------- /test/unit/style-spec/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style-spec/color.js -------------------------------------------------------------------------------- /test/unit/style-spec/composite.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style-spec/composite.test.js -------------------------------------------------------------------------------- /test/unit/style-spec/declass.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style-spec/declass.test.js -------------------------------------------------------------------------------- /test/unit/style-spec/deref.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style-spec/deref.test.js -------------------------------------------------------------------------------- /test/unit/style-spec/diff.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style-spec/diff.test.js -------------------------------------------------------------------------------- /test/unit/style-spec/expression.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style-spec/expression.test.js -------------------------------------------------------------------------------- /test/unit/style-spec/fixture/extrakeys.output.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/unit/style-spec/fixture/map-properties.output.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/unit/style-spec/fixture/required.input.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /test/unit/style-spec/fixture/unknown-keys-nested.output.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/unit/style-spec/format.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style-spec/format.test.js -------------------------------------------------------------------------------- /test/unit/style-spec/function.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style-spec/function.test.js -------------------------------------------------------------------------------- /test/unit/style-spec/interpolate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style-spec/interpolate.test.js -------------------------------------------------------------------------------- /test/unit/style-spec/migrate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style-spec/migrate.test.js -------------------------------------------------------------------------------- /test/unit/style-spec/migrate/v8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style-spec/migrate/v8.js -------------------------------------------------------------------------------- /test/unit/style-spec/migrate/v9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style-spec/migrate/v9.js -------------------------------------------------------------------------------- /test/unit/style-spec/spec.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style-spec/spec.test.js -------------------------------------------------------------------------------- /test/unit/style-spec/validate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style-spec/validate.test.js -------------------------------------------------------------------------------- /test/unit/style/light.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style/light.test.js -------------------------------------------------------------------------------- /test/unit/style/load_glyph_range.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style/load_glyph_range.test.js -------------------------------------------------------------------------------- /test/unit/style/style.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style/style.test.js -------------------------------------------------------------------------------- /test/unit/style/style_layer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style/style_layer.test.js -------------------------------------------------------------------------------- /test/unit/style/style_layer_index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/style/style_layer_index.test.js -------------------------------------------------------------------------------- /test/unit/symbol/anchor.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/symbol/anchor.test.js -------------------------------------------------------------------------------- /test/unit/symbol/check_max_angle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/symbol/check_max_angle.test.js -------------------------------------------------------------------------------- /test/unit/symbol/collision_feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/symbol/collision_feature.js -------------------------------------------------------------------------------- /test/unit/symbol/get_anchors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/symbol/get_anchors.test.js -------------------------------------------------------------------------------- /test/unit/symbol/grid_index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/symbol/grid_index.test.js -------------------------------------------------------------------------------- /test/unit/symbol/mergelines.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/symbol/mergelines.test.js -------------------------------------------------------------------------------- /test/unit/symbol/quads.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/symbol/quads.test.js -------------------------------------------------------------------------------- /test/unit/symbol/shaping.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/symbol/shaping.test.js -------------------------------------------------------------------------------- /test/unit/ui/camera.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/ui/camera.test.js -------------------------------------------------------------------------------- /test/unit/ui/control/attribution.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/ui/control/attribution.test.js -------------------------------------------------------------------------------- /test/unit/ui/control/fullscreen.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/ui/control/fullscreen.test.js -------------------------------------------------------------------------------- /test/unit/ui/control/geolocate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/ui/control/geolocate.test.js -------------------------------------------------------------------------------- /test/unit/ui/control/logo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/ui/control/logo.test.js -------------------------------------------------------------------------------- /test/unit/ui/handler/drag_rotate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/ui/handler/drag_rotate.test.js -------------------------------------------------------------------------------- /test/unit/ui/hash.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/ui/hash.test.js -------------------------------------------------------------------------------- /test/unit/ui/map.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/ui/map.test.js -------------------------------------------------------------------------------- /test/unit/ui/map_events.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/ui/map_events.test.js -------------------------------------------------------------------------------- /test/unit/ui/marker.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/ui/marker.test.js -------------------------------------------------------------------------------- /test/unit/ui/popup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/ui/popup.test.js -------------------------------------------------------------------------------- /test/unit/util/actor.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/util/actor.test.js -------------------------------------------------------------------------------- /test/unit/util/ajax.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/util/ajax.test.js -------------------------------------------------------------------------------- /test/unit/util/browser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/util/browser.test.js -------------------------------------------------------------------------------- /test/unit/util/classify_rings.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/util/classify_rings.test.js -------------------------------------------------------------------------------- /test/unit/util/dispatcher.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/util/dispatcher.test.js -------------------------------------------------------------------------------- /test/unit/util/evented.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/util/evented.test.js -------------------------------------------------------------------------------- /test/unit/util/lru_cache.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/util/lru_cache.test.js -------------------------------------------------------------------------------- /test/unit/util/mapbox.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/util/mapbox.test.js -------------------------------------------------------------------------------- /test/unit/util/struct_array.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/util/struct_array.test.js -------------------------------------------------------------------------------- /test/unit/util/throttle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/util/throttle.test.js -------------------------------------------------------------------------------- /test/unit/util/tile_cover.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/util/tile_cover.test.js -------------------------------------------------------------------------------- /test/unit/util/token.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/util/token.test.js -------------------------------------------------------------------------------- /test/unit/util/util.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/util/util.test.js -------------------------------------------------------------------------------- /test/unit/util/worker_pool.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/test/unit/util/worker_pool.test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer/HEAD/yarn.lock --------------------------------------------------------------------------------