| /** |
| Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
| in compliance with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software distributed under the License |
| is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
| or implied. See the License for the specific language governing permissions and limitations under |
| the License. |
| **/ |
| import config from "./config.js"; |
| |
| import background from "./layers/background/style.js"; |
| import aeroway_line from "./layers/aeroway/line.js"; |
| import aeroway_polygon from "./layers/aeroway/polygon.js"; |
| import amenity_background from "./layers/amenity/background.js"; |
| import amenity_fountain from "./layers/amenity/fountain.js"; |
| import amenity_overlay from "./layers/amenity/overlay.js"; |
| import boundary_line from "./layers/boundary/line.js" |
| import landuse_background from "./layers/landuse/background.js"; |
| import landuse_overlay from "./layers/landuse/overlay.js"; |
| import natural_background from "./layers/natural/background.js"; |
| import natural_overlay from "./layers/natural/overlay.js"; |
| import natural_tree from "./layers/natural/tree.js"; |
| import natural_trunk from "./layers/natural/trunk.js"; |
| import power_background from "./layers/power/background.js"; |
| import power_tower from "./layers/power/tower.js"; |
| import power_cable from "./layers/power/cable.js"; |
| import leisure_background from "./layers/leisure/background.js"; |
| import leisure_overlay from "./layers/leisure/overlay.js"; |
| import railway_tunnel from "./layers/railway/tunnel.js"; |
| import railway_line from "./layers/railway/line.js"; |
| import highway_line from './layers/highway/highway_line.js'; |
| import highway_outline from './layers/highway/highway_outline.js'; |
| import highway_dash from './layers/highway/highway_dash.js'; |
| import highway_tunnel_line from './layers/highway/tunnel_line.js'; |
| import highway_tunnel_outline from './layers/highway/tunnel_outline.js'; |
| import highway_pedestrian_area from './layers/highway/pedestrian_area.js'; |
| import highway_bridge_line from './layers/highway/bridge_line.js'; |
| import highway_bridge_outline from './layers/highway/bridge_outline.js'; |
| import highway_label from './layers/highway/highway_label.js'; |
| import ocean_overlay from './layers/ocean/overlay.js'; |
| import route_line from "./layers/route/style.js" |
| import building_shape from "./layers/building/shape.js"; |
| import building_number from "./layers/building/number.js"; |
| import man_made_bridge from "./layers/man_made/bridge.js"; |
| import man_made_pier_line from "./layers/man_made/pier_line.js"; |
| import man_made_pier_label from "./layers/man_made/pier_label.js"; |
| import waterway_line from "./layers/waterway/line.js" |
| import waterway_label from "./layers/waterway/label.js" |
| import waterway_tunnel_line from "./layers/waterway/tunnel_line.js" |
| import waterway_tunnel_casing from "./layers/waterway/tunnel_casing.js" |
| import icon from "./layers/point/icon.js"; |
| import country_label from './layers/point/country_label.js'; |
| import point_label from './layers/point/point_label.js'; |
| |
| export default { |
| "version": 8, |
| "name": "OpenStreetMapVecto", |
| "center": config.center, |
| "zoom": config.zoom, |
| "sources": { |
| "baremaps": { |
| "type": "vector", |
| "url": `${config.host}/tiles.json` |
| } |
| }, |
| "sprite": `https://tiles.baremaps.com/sprites/osm/sprite`, |
| "glyphs": "https://tiles.baremaps.com/fonts/{fontstack}/{range}.pbf", |
| "layers": [ |
| background, |
| power_background, |
| aeroway_polygon, |
| landuse_background, |
| natural_background, |
| amenity_background, |
| leisure_background, |
| landuse_overlay, |
| natural_overlay, |
| amenity_overlay, |
| leisure_overlay, |
| ocean_overlay, |
| waterway_line, |
| waterway_tunnel_casing, |
| waterway_tunnel_line, |
| man_made_bridge, |
| amenity_fountain, |
| highway_tunnel_outline, |
| highway_tunnel_line, |
| railway_tunnel, |
| building_shape, |
| building_number, |
| highway_outline, |
| highway_line, |
| highway_dash, |
| highway_pedestrian_area, |
| railway_line, |
| highway_bridge_outline, |
| highway_bridge_line, |
| highway_label, |
| aeroway_line, |
| route_line, |
| power_cable, |
| power_tower, |
| man_made_pier_line, |
| man_made_pier_label, |
| natural_tree, |
| natural_trunk, |
| boundary_line, |
| waterway_label, |
| icon, |
| country_label, |
| point_label, |
| ], |
| }; |