Initial commit of open-source version

This commit is contained in:
Roger Tuan 2021-03-24 09:13:18 -07:00
commit 2ba17e63e3
105 changed files with 45354 additions and 0 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
# Project exclude paths
/node_modules/
/.cache/
/docs/CNAME

8
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# Editor-based HTTP Client requests
/httpRequests/

View File

@ -0,0 +1,5 @@
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
</state>
</component>

16
.idea/csv-plugin.xml Normal file
View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CsvFileAttributes">
<option name="attributeMap">
<map>
<entry key="/index.js">
<value>
<Attribute>
<option name="separator" value="," />
</Attribute>
</value>
</entry>
</map>
</option>
</component>
</project>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JavaScriptLibraryMappings">
<includedPredefinedLibrary name="Node.js Core" />
</component>
</project>

6
.idea/misc.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JavaScriptSettings">
<option name="languageLevel" value="ES6" />
</component>
</project>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/tfm_map.iml" filepath="$PROJECT_DIR$/.idea/tfm_map.iml" />
</modules>
</component>
</project>

4
.idea/php.xml Normal file
View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="PhpProjectSharedConfiguration" php_language_level="7.4" />
</project>

View File

@ -0,0 +1,12 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="start" type="js.build_tools.npm" nameIsGenerated="true">
<package-json value="$PROJECT_DIR$/package.json" />
<command value="run" />
<scripts>
<script value="start" />
</scripts>
<node-interpreter value="project" />
<envs />
<method v="2" />
</configuration>
</component>

8
.idea/startup.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectStartupSharedConfiguration">
<configurations>
<configuration id="npm.start" name="start" />
</configurations>
</component>
</project>

11
.idea/tfm_map.iml Normal file
View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.cache" />
<excludeFolder url="file://$MODULE_DIR$/docs" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

133
README.md Normal file
View File

@ -0,0 +1,133 @@
# tfm_map_openlayers
Example of an interactive, indoor museum map built by the Field Museum using OpenLayers 6.5 and QGIS 3.16.
This is an alpha release, meant more as an example of how to use OpenLayers to do indoor venue mapping. It's far from a complete project, and the codebase is messy and ugly. We hope to clean it up more and more over time, but in the meantime, at least it mostly works...
Please note that you're welcome to fork and use this code, but support will be limited. We're a small team with only one developer, and while we'll try to monitor and reply to issues, we can't promise the timely release of bugfixes or new features.
Thanks for checking this out :)
# FEATURES
* Different levels of detail depending on zoom, to preserve visual hierarchy and emphasize major exhibitions and important amenities (restrooms) while zoomed in. Minor exhibitions start to appear once you zoom in more.
* Clickable points of interest (labels, areas, pictograms) that pop up a sidebar with more information (picture, link, description). The map also zooms to the clicked POI, and if it's an exhibition/area, highlights that using a slightly desaturated version of its brand color
* Permalinks for areas (not yet for pictograms) so that clicked POIs can be shared/bookmarked.
* Integration with a CMS (Contentful) so non-developer editors can make changes to exhibition text, pictures, colors, and also open/close them depending on COVID social distancing rules or other reasons
* COVID one-way flows drawn as polylines, with automatic start/end styles (circle and arrowhead)
* Some icon or text sizes remain constant at certain zoom levels to ensure readability.
* Automatic thumbnail generation (for the sidebar) using cloud image APIs (Drupal and Cloudinary)
## Mobile-specific features
* Mobile-friendly UI
* Sidebar becomes a bottom popover
* Different initial viewport focused on the entrance instead of a whole floor
# VISITOR (END-USER) INSTRUCTIONS
We hope our map is intuitively usable by visitors already familiar with Google Maps or Apple Maps, though we don't have the data to prove this. In time, we hope to add more real user monitoring and in-app analytics.
Basic interactions are provided by OpenLayers by default and used like any other web map (panning, zooming, etc.)
In addition, visitors can:
* Zoom in and out to see varying levels of detail (minor exhibitions, etc)
* Click on specific exhibitions or labels to open a slide-in panel with a basic description, and a link out for more info
* Use permalinks to access a specific floor and/or exhibition
## Keyboard shortcuts
These are currently undocumented in the UI because most of our visitors are on mobile anyway. We just added these for our own convenience.
* -/+ - Zoom in/out
* ESC - Close the sidebar
* 1/2/3 - Switch floors
# DEVELOPER INSTRUCTIONS
## Installation
* Clone the repo from Github
* To spin up a dev server, use `npm start`. This will use Parcel to build a dev environment and start a dev server at `localhost:1234`. This should also enable autoreload, so editing code or CSS (anything that Parcel sees) should cause the page to automatically refresh
* To publish for production, use `npm build`. The built output should be in `/docs`. We use `docs` for Github Pages compatibility; you can reconfigure the output directory by editing `/package.json`.
## Folder structure & assets
```
index.js - The main app, containing all the custom code we built
index.css - Styling for the UI (buttons, logo, etc.)
assets/ - Source files for our assets
cms/ - Content (colors, descriptions, links, etc.) for our points of interest. A JSON dump from Contentful.
fonts/ - Webfonts (excluded due to copyright)
icons/ - SVG icons used for amenities and pictograms
images/ - UI images used in index.html
layers/ - Floor source files (tif, png), outputs (geoJSON), and QGIS project
docs/ - The built and minified production files from 'npm build'. This is what you serve to the public on a real webhost.
.idea/ - Ignore this. It's project-specific configuration used by our IDE, PHPStorm.
```
* We've provided our assets (layer geoJSONs, SVG icons, etc.) as Creative Commons-licensed examples, excluding webfonts that we don't have permission to redistribute. Feel free to use these while you're experimenting with the map, but obviously you'll want to use your own assets once you've built them.
* We created all our floor layers in QGIS (also FOSS) and exported them as geoJSON files for OpenLayers. The process of converting PDF maps or CAD files into usable geoJSON layers is out of scope of this readme, but in brief, it consists of georeferencing your PDF, using that as a tracing layer, and building vector features on top of it. We've included `/assets/layers/qgis-project.qgz` as an example so you can see how this was done, and there are numerous tutorials online and on YouTube. At some point we hope to record a video tutorial of our own showing how we did this; if that would be helpful, please let us know.
## Basic Workflow
1. Create vector layers in your GIS software for footprints (polygons), areas of interest (polygons), one-way flows (polylines), labels (points), amenities (points), etc.
1. Export or save those layers as geoJSON, making sure to [save their feature IDs in a geoJSON compatible way](https://gis.stackexchange.com/a/383629/12167) (by default QGIS will export IDs inside `properties{}`, which will NOT work)
1. Load the geoJSON sources into `LayerFiles{}`, configure them in `LayerSettings{}`, style them by layer type in `LayerStyles{}`, group them into floors in `Floors{}`
1. Create the map with `tfmMap` and view with `tfmView`. The map is the parent OpenLayers object that controls and draws everything. The view controls the human-visible viewport, along with zoom and rotation constraints.
1. Use `ol-layerswitcher` to handle switching between floors (layer groups)
1. Use interaction events (in our case, `tfmMap.on('click')`) and plain Javascript logic to handle clicks on different types of features, e.g. an area itself or the label associated (by ID) to that area.
1. Use various helper functions to provide quality-of-life benefits for the end-user (visitor), such as opening/closing the sidebar, producing thumbnails out of bigger pictures, handling permalinks, basic keyboard shortcuts
## Configuring the code
Apologies in advance: This project was built in a hurry, with only one developer, and we did not create the codebase in a very modular manner. Configuration parameters are spread all throughout `index.js`, though the majority are near the top. We hope to clean this up and refactor it into proper modules and files at a later point. In the meantime, here's the most important configurations to keep track of in `index.js`:
* Styling for map features: OpenLayers does not use CSS to control features on the actual canvas. Instead, the look and feel of all our layers an features are defined in the LayerStyles{} object.
* Point of interest content: Although geometries are hardcoded in the geoJSONs, we opted for a CMS for other POI content, such as titles, descriptions, links, images, etc. Data from that CMS is loaded into the `contentfulData{}` object. We chose to use Contentful for this project, but you can replace it with any other CMS you like (Drupal, Wordpress with Advanced Custom Forms, Airtable, Google Sheets... anything that can give you a JSON with IDs to work with). Or if you want to skip a CMS and hardcode it all into a JSON file, that's what we did with `fallback-data.json` (which is our local cache of Contentful's API output; we use this to ensure the map loads even if Contentful is unreachable, albeit that will result in slightly stagnant data).
* Layers: OpenLayers has a somewhat convoluted layer loading mechanism. First we use Parcel to `require` geoJSON files into the `LayerFiles{}` object, then loop through that to populate the actual `LayerSources{}` object using the OpenLayers API and a simple forEach loop. `LayerSources{}`. These sources are configured in `LayerSettings{}` and styled in `LayerStyles{}`. Phew! Messy, ain't it?
* Floors: A **layer** is a set of geoJSON features, configured by you, that OpenLayers renders. A **floor** is a mental construct we've made up for our visitors, consisting of one or more grouped layers (the floor footprint, exhibition areas, COVID one-way flows, amenities, labels, decorative pictograms, etc.). In our case, the specific layer configuration for each floor is set up in the `Floors{}` object, which brings together all the layers, settings, and styles for each floor.
* Various `tfmXXXXX{}` constants like `tfmZooms{}` or `tfmIcons{}`: These are really just for our convenience. Most are self-explanatory. Of particular note is `tfmIcons{}`, which loads in a bunch of SVGs using Parcel's `require`. This is a quirk of our particular toolchain; if you were using webpack or something else, you might be able to load in these SVGs another way (e.g. with `import`).
* `layerSwitcher` options: We use [ol-layerwitcher](https://github.com/walkermatt/ol-layerswitcher#api) to switch between floors (layer groups). Currently, users can deselect all the floors by clicking the same floor twice; we hope to address this with [this eventual patch](https://github.com/walkermatt/ol-layerswitcher/pull/360).
* Feature `closed` status: We use this in several layer types in order to indicate whether an exhibition is open to the public as normal (`closed='Open' or 0`), temporarily closed due to COVID (`closed='Closed' or 1`), or restricted to staff and never open to the public (`closed='Staff-Only' or 2`). We realize this numbering scheme is inconsistent, and that's something we hope to clean up in the future. You might see some orphaned styling code (commented out) where the temporarily closed areas can be displayed as diagonal gray lines instead of solid gray fill; we opted against that in the released version to maintain visual simplicity.
## How user interactions are handled (e.g. clicking on an exhibition)
* OpenLayers handles the basics: zooming, panning, catching clicks, etc.
* The click handler (`tfmMap.on('click', e=>{})`) near line 727 does the rest of the magic. The basic logic is:
* When a click is detected, first check it against a filter function in the `layerFilter` parameter of the click handler. In our case only layers marked as `tfmClickable=true` in their `LayerSettings{}` template will be considered clickable. In our case, that's labels (text and padding), pictograms (their SVG fills), and areas (geoJSON polygons). OpenLayers is pretty good at evaluating where the click actually happened, though it does struggle a bit with more complex, layered SVG files (which only matters for the pictograms). Our setup is a bit more complex than yours might be, because our branded print map design forced our hand in doing something similar for our exhibitions, giving them labels in addition to their polygonal areas. These labels are defined in another point layer (e.g. upper_area_labels.geojson) and formatted using OpenLayers. They are intended to be the main clickable things on the map, though users can also choose to click on an area if they so choose.
** Once a click is detected, we only want the topmost feature from `forEachFeatureAtPixel()`. The reason we use that instead of OL's `selection` handler is due to an apparent bug that sometimes catches label clicks at the edges of padded text (our labels) to register right. We never got to the bottom of that, so we use `forEachFeatureAtPixel()` instead, but just the first hit
* The `switch(tfmLayerType)` statement examines the kind of layer it is (again set in `LayerSettings{}`) and proceeds accordingly. Ultimately, exhibitions are areas, and labels witch matching IDs go to those areas. **It's important to make sure your IDs are unique and consistent between the .geoJSONs for the area and label layers, and also in your CMS.**
## Helper functions
Documentation for these will come later. For the most part, they are self-explanatory or explained in the code comments... hopefully. If anything is confusing, please reach out.
# KNOWN ISSUES
## Big-picture caveats
* OpenLayers is generally intended for outdoor use and has no built-in support for indoor functions (floors, stairs, doors, hallways, etc.). What we've made is a hack at best, using overlapping vector layers grouped together to create the mere illusion of floors inside a building.
* Each feature addition/change takes a lot of manual labor. Adding a new clickable area, for example, requires multiple layer changes in QGIS (polygons for areas, points for labels, polylines for COVID-flows), tweaking the geoJSON exporter (to fix feature IDs), creating a new entry in your CMS, then finally setting it all up in OpenLayers (adding new layers or styles if necessary).
* The codebase is messy and far from elegant; apologies in advance. We were working with minimal resources, using a single developer with limited Javascript experience. We hope to clean it up and refactor the spaghetti code into proper classes and modules later.
## UX / Visitor-facing
* Rectangular map labels don't look clickable
* Labels can overlap one another and make text unreadable. The layer setting `declutter=true` can hide some when they overlap, but that's not desirable behavior either. OpenLayers doesn't seem to have a "rearrange labels so they don't overlap" feature the way ArcMap or QGIS do
* `ol-layer-switcher` (the package we use for the floor switcher buttons) doesn't allow mutually exclusive layer groups (i.e. floors consisting of multiple layers) to be toggled as radio buttons. They are instead checkboxes styled to look like buttons, but clicking on one that's already selected will "uncheck" it and cause all the layer to disappear, resulting in no floor being visible.
## Accessibility
* In general, the map can only be used by sighted users able to interact by touch. Accessible navigation needs to be provided by other means, such as audio guides, docents, or textual turn-by-turn directions (on the wishlist, but work has not yet started)
* Working with a limited brand color palette, many POIs are difficult to distinguish for visitors with color deficiencies
* Very limited keyboard support
## Package vulnerabilities (false positive)
* Ignore the parcel-bundler/node-forge vulnerability, see https://github.com/parcel-bundler/parcel/issues/5145
## Exporting from QGIS
* If you save feature IDs from QGIS fields, they must be converted into geoJSON-compatible IDs using JQ or a similar tool, e.g. `for file in *.geojson; do jq '(.features[] | select(.properties.id != null)) |= (.id = .properties.id)' $file > "$file"_tmp; mv "$file"_tmp $file;done`. This is because QGIS saves feature IDs as properties (see https://github.com/qgis/QGIS/issues/40876).
## CMS (Contentful)
* We match features to our CMS based on their ID. It's a lookup between the geoJSON `id` member and the Contentful entry id, which is also the last part of an entry's URL. However, you can only specific this ID via the Contentful Content Management API, NOT via the Contentful website. If you try to add a new entry on the website, it will get a random UUID as its entry ID and OpenLayers won't be able to find it. In hindsight we should've used a separate field in Contentful to match entries.
* Contentful seemed a bit overkill for this. Probably a rudimentary CMS built in Airtable or even Google Sheets, with their respective JSON APIs, would've been fine. We were mainly trialing Contentful for a subsequent project, and this was an easy way to test it. We walked away with mixed impressions.
## Pictograms / SVGs
* SVG widths/heights must be explicitly defined in the SVG files themselves. Illustrator doesn't do this by default
* Scaling them up using the OpenLayers `scale` property causes aliasing. It appears OpenLayers is rendering to canvas first and then resizing, rather than using a high-res vector to scale. To work around this, we often start with a bigger-than-intended SVG declared size and then scale down from there.
## Misc technical / behind the scenes
* The floor switcher uses its own code to hide/show floors, instead of `switchFloors()`. `ol-layer-switcher` doesn't have any hooks/events we can tie into.
* We manipulate the DOM directly, such as for updating the sidebar. We opted not to use React or similar in order to minimize the download size for users who already have to grab a lot of assets (layers, pictures, fonts, etc.).

BIN
assets/.DS_Store vendored Normal file

Binary file not shown.

BIN
assets/cms/.DS_Store vendored Normal file

Binary file not shown.

File diff suppressed because it is too large Load Diff

10
assets/icons/atm.svg Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;" d="M 0.542969 0.527344 L 19.464844 0.527344 L 19.464844 19.480469 L 0.542969 19.480469 Z M 0.542969 0.527344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1.066406 1.035156 L 18.949219 1.035156 L 18.949219 18.941406 L 1.050781 18.941406 L 1.050781 1.027344 M 0.015625 0 L 0.015625 19.984375 L 19.953125 19.984375 L 19.953125 0 Z M 0.015625 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 5.707031 7.90625 L 4.171875 12.386719 L 4.824219 12.386719 L 5.246094 11.136719 L 6.917969 11.136719 L 7.347656 12.386719 L 8.019531 12.386719 L 6.488281 7.90625 Z M 6.726562 10.566406 L 5.429688 10.566406 L 6.082031 8.648438 Z M 6.726562 10.566406 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 7.808594 8.480469 L 9.0625 8.480469 L 9.0625 12.386719 L 9.738281 12.386719 L 9.738281 8.480469 L 10.996094 8.488281 L 10.996094 7.90625 L 7.808594 7.90625 Z M 7.808594 8.480469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 14.953125 7.90625 L 13.710938 11.148438 L 12.445312 7.953125 L 12.429688 7.90625 L 11.570312 7.90625 L 11.5625 12.394531 L 12.199219 12.394531 L 12.199219 9.050781 L 13.558594 12.394531 L 13.820312 12.394531 L 15.128906 9.0625 L 15.128906 12.394531 L 15.804688 12.394531 L 15.804688 7.914062 Z M 14.953125 7.90625 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

11
assets/icons/elevator.svg Normal file
View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 14.949219 16.632812 L 4.421875 16.632812 L 4.421875 3.367188 L 14.949219 3.367188 L 14.949219 5.789062 L 15.578125 5.789062 L 15.578125 2.738281 L 3.789062 2.738281 L 3.789062 17.261719 L 15.578125 17.261719 L 15.578125 14.105469 L 14.949219 14.105469 Z M 14.949219 16.632812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 9.050781 6.738281 C 9.578125 6.738281 10.105469 6.316406 10.105469 5.789062 C 10.105469 5.261719 9.683594 4.738281 9.15625 4.738281 C 8.632812 4.738281 8.105469 5.15625 8.105469 5.683594 C 8 6.316406 8.527344 6.738281 9.050781 6.738281 Z M 9.050781 6.738281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 10 15.683594 L 10 12.632812 L 11.15625 12.632812 L 11.15625 8.632812 C 11.15625 8 10.632812 7.472656 10 7.472656 L 8 7.472656 C 7.367188 7.472656 6.84375 8 6.84375 8.632812 L 6.84375 12.632812 L 8 12.632812 L 8 15.683594 L 8.632812 15.683594 L 8.632812 12.632812 L 9.367188 12.632812 L 9.367188 15.683594 Z M 10 15.683594 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 15.261719 12.421875 L 13.894531 11.15625 L 13.472656 11.578125 L 15.261719 13.367188 L 17.050781 11.578125 L 16.632812 11.15625 Z M 15.261719 12.421875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 13.472656 8.316406 L 13.894531 8.632812 L 15.261719 7.472656 L 16.632812 8.632812 L 17.050781 8.316406 L 15.261719 6.527344 Z M 13.472656 8.316406 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 11.726562 4.664062 L 8.210938 4.664062 L 8.210938 8.199219 L 4.671875 8.199219 L 4.671875 11.714844 L 8.199219 11.714844 L 8.199219 15.253906 L 11.707031 15.253906 L 11.707031 11.714844 L 15.242188 11.714844 L 15.242188 8.199219 L 11.726562 8.199219 Z M 11.726562 4.664062 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 704 B

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 10 3.894531 L 3.578125 8.316406 L 3.578125 10.105469 L 5.261719 10.105469 L 5.261719 16.105469 L 8.84375 16.105469 L 8.84375 11.578125 L 11.15625 11.578125 L 11.15625 16.105469 L 14.738281 16.105469 L 14.738281 10.105469 L 16.527344 10.105469 L 16.527344 8.316406 Z M 10 3.894531 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 711 B

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 16.769531 9.367188 L 13.90625 9.367188 L 13.09375 7.011719 L 15.253906 7.011719 L 15.253906 4.664062 L 4.726562 4.664062 L 4.726562 7.011719 L 6.832031 7.011719 L 6.019531 9.367188 L 3.15625 9.367188 L 3.15625 11.714844 L 5.261719 11.714844 L 3.851562 15.789062 L 4.484375 16 L 5.9375 11.714844 L 13.988281 11.714844 L 15.441406 15.988281 L 16.074219 15.777344 L 14.738281 11.714844 L 16.84375 11.714844 Z M 7.535156 7.011719 L 12.390625 7.011719 L 13.199219 9.367188 L 6.726562 9.367188 Z M 7.535156 7.011719 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 941 B

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;" d="M 0.0273438 0.0078125 L 19.984375 0.0078125 L 19.984375 19.992188 L 0.0273438 19.992188 Z M 0.0273438 0.0078125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 13.007812 3.15625 C 12.0625 3.15625 11.296875 3.925781 11.296875 4.871094 L 11.296875 12.441406 L 12.621094 12.441406 L 12.621094 16.722656 L 14.617188 16.722656 L 14.617188 4.742188 C 14.59375 3.867188 13.882812 3.167969 13.007812 3.15625 Z M 13.007812 3.15625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 9.480469 7.238281 L 9.480469 7.574219 L 8.816406 7.574219 L 8.816406 3.15625 L 8.15625 3.15625 L 8.15625 7.574219 L 7.480469 7.574219 L 7.480469 3.15625 L 6.863281 3.15625 L 6.863281 7.574219 L 6.152344 7.574219 L 6.152344 3.148438 L 5.496094 3.148438 L 5.496094 7.574219 C 5.515625 8.371094 6.082031 9.050781 6.863281 9.207031 L 6.863281 16.746094 L 8.859375 16.746094 L 8.859375 9.207031 C 9.625 9.035156 10.175781 8.359375 10.191406 7.574219 L 10.191406 3.15625 L 9.523438 3.15625 Z M 9.480469 7.238281 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

10
assets/icons/restroom.svg Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 7.683594 3.789062 C 7.683594 4.546875 7.070312 5.15625 6.316406 5.15625 C 5.558594 5.15625 4.949219 4.546875 4.949219 3.789062 C 4.949219 3.035156 5.558594 2.421875 6.316406 2.421875 C 7.070312 2.421875 7.683594 3.035156 7.683594 3.789062 Z M 7.683594 3.789062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 14.84375 3.789062 C 14.84375 4.546875 14.230469 5.15625 13.472656 5.15625 C 12.71875 5.15625 12.105469 4.546875 12.105469 3.789062 C 12.105469 3.035156 12.71875 2.421875 13.472656 2.421875 C 14.230469 2.421875 14.84375 3.035156 14.84375 3.789062 Z M 14.84375 3.789062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 7.894531 6 L 4.738281 6 C 4.105469 6 3.683594 6.421875 3.683594 7.050781 L 3.683594 13.261719 L 5.050781 13.261719 L 5.050781 17.472656 L 5.683594 17.472656 L 5.683594 13.261719 L 6.84375 13.261719 L 6.84375 17.472656 L 7.472656 17.472656 L 7.472656 13.261719 L 8.84375 13.261719 L 8.84375 7.050781 C 8.84375 6.527344 8.421875 6.105469 7.894531 6 Z M 7.894531 6 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 16.105469 13.261719 L 15.050781 7.261719 C 14.949219 6.527344 14.316406 6 13.472656 6 C 12.738281 6 12.105469 6.527344 12 7.261719 L 10.949219 13.261719 L 12.316406 13.261719 L 12.316406 17.472656 L 12.949219 17.472656 L 12.949219 13.261719 L 14.105469 13.261719 L 14.105469 17.472656 L 14.738281 17.472656 L 14.738281 13.261719 Z M 16.105469 13.261719 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;" d="M 0.527344 0.523438 L 19.480469 0.523438 L 19.480469 19.476562 L 0.527344 19.476562 Z M 0.527344 0.523438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 18.957031 1.039062 L 18.957031 18.953125 L 1.042969 18.953125 L 1.042969 1.039062 L 18.957031 1.039062 M 20.027344 0 L 0.00390625 0 L 0.00390625 20.023438 L 20.027344 20.023438 Z M 20.027344 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 11.125 4.460938 C 11.125 5.113281 10.59375 5.644531 9.9375 5.644531 C 9.285156 5.644531 8.753906 5.113281 8.753906 4.460938 C 8.753906 3.804688 9.285156 3.273438 9.9375 3.273438 C 10.59375 3.273438 11.125 3.804688 11.125 4.460938 Z M 11.125 4.460938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 11.285156 7.578125 C 11.15625 6.9375 10.59375 6.476562 9.941406 6.476562 C 9.289062 6.476562 8.726562 6.9375 8.597656 7.578125 L 7.613281 12.96875 L 8.84375 12.96875 L 8.84375 16.820312 L 9.4375 16.820312 L 9.4375 12.96875 L 10.445312 12.96875 L 10.445312 16.820312 L 11.039062 16.820312 L 11.039062 12.96875 L 12.273438 12.96875 Z M 11.285156 7.578125 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;" d="M 0.523438 0.523438 L 19.476562 0.523438 L 19.476562 19.476562 L 0.523438 19.476562 Z M 0.523438 0.523438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 18.953125 1.039062 L 18.953125 18.953125 L 1.039062 18.953125 L 1.039062 1.039062 L 18.953125 1.039062 M 20.023438 0 L 0 0 L 0 20.023438 L 20.023438 20.023438 Z M 20.023438 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 11.136719 4.460938 C 11.136719 5.113281 10.605469 5.644531 9.949219 5.644531 C 9.296875 5.644531 8.765625 5.113281 8.765625 4.460938 C 8.765625 3.804688 9.296875 3.273438 9.949219 3.273438 C 10.605469 3.273438 11.136719 3.804688 11.136719 4.460938 Z M 11.136719 4.460938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 12.320312 7.355469 C 12.320312 7.117188 12.226562 6.886719 12.058594 6.71875 C 11.886719 6.550781 11.660156 6.460938 11.421875 6.460938 L 8.515625 6.460938 C 8.023438 6.460938 7.625 6.859375 7.625 7.355469 L 7.625 12.9375 L 8.855469 12.9375 L 8.855469 16.789062 L 9.449219 16.789062 L 9.449219 12.9375 L 10.457031 12.9375 L 10.457031 16.789062 L 11.050781 16.789062 L 11.050781 12.9375 L 12.320312 12.9375 Z M 12.320312 7.355469 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<path style="fill:none;stroke-width:0.95;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(62.745098%,65.882353%,69.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.301758 19.9 L 14.399414 19.9 L 14.399414 14.898047 " transform="matrix(0.8,0,0,0.769231,0,0.192308)"/>
<path style="fill:none;stroke-width:0.95;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(62.745098%,65.882353%,69.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.399414 19.9 L 19.599609 14.7 " transform="matrix(0.8,0,0,0.769231,0,0.192308)"/>
<path style="fill:none;stroke-width:0.95;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(62.745098%,65.882353%,69.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.902344 5.6 L 16.298828 5.6 L 16.298828 9.200391 L 12.700195 9.200391 L 12.700195 12.800781 L 9.101562 12.800781 L 9.101562 16.497656 L 5.498047 16.497656 L 5.498047 20.098047 " transform="matrix(0.8,0,0,0.769231,0,0.192308)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<path style="fill:none;stroke-width:0.95;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(62.745098%,65.882353%,69.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.598203 14.59918 L 19.79959 14.59918 L 19.701543 19.697617 " transform="matrix(0.796813,0,0,0.796813,0.0398406,0)"/>
<path style="fill:none;stroke-width:0.95;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(62.745098%,65.882353%,69.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.299551 15.099219 L 14.402109 20.001563 " transform="matrix(0.796813,0,0,0.796813,0.0398406,0)"/>
<path style="fill:none;stroke-width:0.95;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(62.745098%,65.882353%,69.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 20.098633 5.299434 L 16.402266 5.299434 L 16.402266 9.000703 L 12.700996 9.000703 L 12.700996 12.701973 L 8.999727 12.701973 L 8.999727 16.39834 L 5.298457 16.39834 L 5.20041 20.099609 " transform="matrix(0.796813,0,0,0.796813,0.0398406,0)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px"
viewBox="0 0 500 500" style="enable-background:new 0 0 500 500;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#A0A8B2;stroke-width:19;stroke-miterlimit:200;}
</style>
<g id="surface1">
<path class="st0" d="M400,311l-98,96"/>
<path class="st0" d="M192,90l-98,96"/>
<path class="st0" d="M194,189H92V87"/>
<path class="st0" d="M300,308.1H402v102"/>
<path class="st0" d="M418,115H344L342,189h-74v74H194v74h-74v74"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 728 B

7
assets/icons/store.svg Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 12.605469 6.699219 L 12.605469 4.710938 C 12.605469 3.699219 11.785156 2.878906 10.773438 2.878906 L 9.183594 2.878906 C 8.695312 2.878906 8.226562 3.070312 7.882812 3.414062 C 7.539062 3.757812 7.34375 4.226562 7.34375 4.710938 L 7.34375 6.699219 L 5.28125 6.699219 L 5.28125 16.433594 L 14.675781 16.433594 L 14.675781 6.699219 Z M 8.015625 4.710938 C 8.015625 4.066406 8.539062 3.542969 9.183594 3.542969 L 10.773438 3.542969 C 11.417969 3.542969 11.941406 4.066406 11.941406 4.710938 L 11.941406 6.699219 L 8.015625 6.699219 Z M 8.015625 4.710938 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 982 B

10
assets/icons/stroller.svg Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 12.261719 5.050781 L 3.84375 14.359375 L 4.335938 14.800781 L 5.328125 13.746094 L 10.96875 13.746094 C 11.574219 13.742188 12.085938 13.292969 12.167969 12.695312 L 12.167969 6.136719 L 12.726562 5.503906 C 13.675781 4.453125 15.027344 3.851562 16.441406 3.851562 L 16.441406 3.15625 C 14.84375 3.175781 13.328125 3.863281 12.261719 5.050781 Z M 12.261719 5.050781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 9.304688 6.367188 C 9.304688 7.101562 8.710938 7.695312 7.980469 7.695312 C 7.246094 7.695312 6.652344 7.101562 6.652344 6.367188 C 6.652344 5.636719 7.246094 5.042969 7.980469 5.042969 C 8.710938 5.042969 9.304688 5.636719 9.304688 6.367188 Z M 9.304688 6.367188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 8.199219 15.757812 C 8.199219 16.402344 7.675781 16.925781 7.03125 16.925781 C 6.386719 16.925781 5.863281 16.402344 5.863281 15.757812 C 5.863281 15.113281 6.386719 14.589844 7.03125 14.589844 C 7.675781 14.589844 8.199219 15.113281 8.199219 15.757812 Z M 8.199219 15.757812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 12.9375 15.757812 C 12.9375 16.402344 12.414062 16.925781 11.769531 16.925781 C 11.125 16.925781 10.601562 16.402344 10.601562 15.757812 C 10.601562 15.113281 11.125 14.589844 11.769531 14.589844 C 12.414062 14.589844 12.9375 15.113281 12.9375 15.757812 Z M 12.9375 15.757812 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="68.9" height="62.6"
viewBox="0 0 68.9 62.6" style="enable-background:new 0 0 68.9 62.6;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-miterlimit:10;}
.st1{fill:#020202;stroke:#000000;stroke-miterlimit:10;}
</style>
<g>
<path class="st0" d="M18.2,27.8c2.5-1.7,3.8-3.9,5.2-4.7c0.9-0.5,4-0.2,5-0.1c1,0.1,3.2-0.4,4.1,0.1c1.3,0.7,2.7,3.2,3.2,4.6"/>
<path class="st0" d="M37.8,40.8c-1.2-0.1-0.9,0.8-0.9,2.4c0,0.6-1.2,2-2.3,1.1c-0.5-0.4-0.9-1.2-1.7-1.8c-1-0.7-2.1-1.2-3.2-1.7
c-1.7-0.7-3.1-0.6-5.4,0c-0.5,0.1-2.4,0.8-3.1,1.3c-0.8,0.7-0.5,1.3-0.9,1.8c-0.9,1.2-2.5,0.5-2.9-0.1c-0.8-1.1,0.4-4.6,0.5-6
c0.1-1.1-0.3-2.7-0.5-4.6c-0.2-1.8,0.6-5.5,1.1-7.2c0.4-1.3,1.2-3.5,2-4.6c1.3-1.6,3.6-2.8,5.1-4.2c1.1-1,3.6-1.6,4.8-1.7
c2.7-0.1,5.5,0.1,8.2,0.4c3,0.5,3.8,0.9,5.9,3.2c1.7,1.9,4.4,2.9,5.4,7.6c0.1,0.5,0.1,3.5,0.4,3.9c1.8,2.7,1.6,6.6,1.3,8.1
c-0.2,0.9-1.3,1.4-1.6,0.6c-0.8-1.7-1.2-2.7-2-0.4c-0.1,0.4,0.4,0.2-0.7,2.4c-0.4,0.8-1.8,0.6-1.9,0.5c-1.2-3.7-1.7-1.6-1.8-3.1
c0-0.7-0.3,1.9-0.9,3.3c0,0-1.2,1.5-2.4,0.3C39.9,42.2,38.8,40.9,37.8,40.8z"/>
<ellipse class="st0" cx="25.6" cy="33" rx="5" ry="5.2"/>
<ellipse class="st0" cx="25.6" cy="34.9" rx="1.9" ry="1.7"/>
<path class="st0" d="M24.2,33.6l0.5-1.8c0.2-0.3,0.6-0.4,0.9-0.4c0.4,0,0.7,0.2,1,0.5l0.4,1.8c-0.5-0.2-1-0.3-1.5-0.3
C25.1,33.4,24.6,33.4,24.2,33.6z"/>
<circle class="st1" cx="25.6" cy="35.2" r="0.7"/>
<path class="st0" d="M20.8,33.5c-1.2-0.8-1.1-3-1-4.1c0.1-0.9,0.8-2.4,1.5-2.8c0.6-0.4,3.5-2.3,5.6-1.8c1.7,0.4,1.9,0.7,3.3,1.5
c0.6,0.3,1,0.8,1.3,1.3c0.6,1,0.8,3.3,0.7,4.1c-0.1,1.1-0.9,2.1-2,2.4"/>
<path class="st0" d="M20.1,37c1.3,1.1,2.8,1.9,4.4,2.4c4,1,5.7-3.6,7.9-3.5"/>
<path class="st0" d="M36.9,41.6c-0.1-0.9,0.1-2.9-0.7-4.4c-0.3-0.7,1.9-3.7,0.4-5.5"/>
<path class="st0" d="M40.6,21.3c1.3,0.4,4.4-0.2,5.6,10c0.2,1.9,3.3,2.3,1.8,8.4"/>
<path class="st0" d="M40.2,27.3c0.6,0.5,1.8,1.6,2.3,5c0.2,1.5,2,2.5,1.1,6.7"/>
<path class="st0" d="M19.5,23.9c1-1.3,3.6-2.5,4.7-3.8c0.8-0.9,4.8-0.2,6.1-0.1c1.3,0.1,3.9-0.4,4.9,0.1c1.5,0.7,3.2,3.2,3.8,4.6"
/>
<path class="st0" d="M26.5,16.9c0.9-0.3,4-0.1,5.1-0.1s3.3-0.2,4.2,0.1c1.3,0.5,2.7,2,3.2,2.9"/>
<path d="M41.4,43.1c-0.2-0.1-0.5-0.1-0.7,0c-0.3,0.5,0.2,2.5,0.2,2.5S40.4,43.6,41.4,43.1z"/>
<path d="M42,43.1c-0.2-0.1-0.5-0.1-0.7,0c-0.3,0.5,0.2,2.5,0.2,2.5S41.1,43.6,42,43.1z"/>
<path d="M42.2,42.8c0,0-0.6,0-0.6,0.2c-0.1,0.6,1.4,2.3,1.4,2.3S41.6,43.5,42.2,42.8z"/>
<path d="M42.8,42.6c0,0-0.6,0-0.6,0.2c-0.1,0.6,1.4,2.3,1.4,2.3S42.2,43.3,42.8,42.6z"/>
<path d="M46.2,42.2c-0.2-0.1-0.5-0.1-0.7,0c-0.3,0.5,0,2.5,0,2.5S45.2,42.7,46.2,42.2z"/>
<path d="M46.8,42.2c-0.2-0.1-0.5-0.1-0.7,0c-0.3,0.5,0,2.5,0,2.5S45.9,42.7,46.8,42.2z"/>
<path d="M47,41.9c0,0-0.6,0-0.7,0.1c-0.1,0.6,1.3,2.4,1.3,2.4S46.4,42.6,47,41.9z"/>
<path d="M47.6,41.8c0,0-0.6,0-0.7,0.1c-0.1,0.6,1.3,2.4,1.3,2.4S47,42.5,47.6,41.8z"/>
<path d="M50.3,39.9c-0.2-0.1-0.4-0.1-0.5,0c-0.2,0.4,0.1,2,0.1,2S49.6,40.4,50.3,39.9z"/>
<path d="M50.8,39.9c-0.2-0.1-0.4-0.1-0.5,0c-0.2,0.4,0.1,2,0.1,2S50.1,40.4,50.8,39.9z"/>
<path d="M51,39.7c-0.2,0-0.4,0-0.5,0.1c0,0.4,1.1,1.8,1.1,1.8S50.5,40.3,51,39.7z"/>
<path d="M51.5,39.6c-0.2,0-0.4,0-0.5,0.1c0,0.4,1.1,1.8,1.1,1.8S51,40.1,51.5,39.6z"/>
<path d="M35.2,44.8c-0.2-0.1-0.5-0.1-0.7,0c-0.3,0.5,0.3,2.5,0.3,2.5S34.4,45.4,35.2,44.8z"/>
<path d="M35.9,44.8c-0.2-0.1-0.5-0.1-0.7,0c-0.3,0.5,0.3,2.5,0.3,2.5S35,45.4,35.9,44.8z"/>
<path d="M36.1,44.5c0,0-0.6,0-0.6,0.2c0,0.6,1.5,2.2,1.5,2.2S35.5,45.2,36.1,44.5z"/>
<path d="M36.7,44.3c0,0-0.6,0-0.6,0.2c0,0.6,1.5,2.2,1.5,2.2S36.1,45.1,36.7,44.3z"/>
<path d="M18.8,44.8c0.2-0.1,0.4-0.1,0.6,0c0.3,0.6-0.2,2.5-0.2,2.5S19.6,45.4,18.8,44.8z"/>
<path d="M18.2,44.8c0.2-0.1,0.4-0.1,0.6,0c0.3,0.5-0.1,2.5-0.1,2.5S19,45.4,18.2,44.8z"/>
<path d="M18.1,44.5c0.2,0,0.4,0,0.6,0.2c0,0.6-1.2,2.3-1.2,2.3S18.6,45.2,18.1,44.5z"/>
<path d="M17.5,44.4c0.2,0,0.4,0,0.6,0.2c0,0.6-1.2,2.3-1.2,2.3S18.1,45.1,17.5,44.4z"/>
<path class="st0" d="M29,30.2c0,0-1.7,0.9-2,1.7c-0.4,1,1.5,3.4,1.5,4.6"/>
<path class="st0" d="M22.2,30.2c0,0,1.7,0.9,2,1.7c0.4,1-1.5,3.4-1.5,4.6"/>
</g>
<g>
<g>
<path d="M4.5,3.4h6.3v2.2H7.3v1.2h2.8v2H7.3v1.3H11v2.2H4.5V3.4z"/>
<path d="M14.3,7.7l-2.5-4.3H15l1.2,2.5l1.2-2.5h2.9L18,7.6l2.7,4.6h-3.2L16,9.4l-1.5,2.9h-2.9L14.3,7.7z"/>
<path d="M23.8,3.4h3.6l2.8,8.8h-3l-0.4-1.5H24l-0.4,1.5H21L23.8,3.4z M24.5,8.9h1.7l-0.9-3.2L24.5,8.9z"/>
<path d="M31.1,3.4h3.6l1.5,4.3l1.5-4.3h3.6v8.8h-2.8V7.1l-2,5.2h-0.9l-2-5.2v5.2h-2.5V3.4z"/>
<path d="M42.9,3.4h3.5c2.5,0,3.6,1.1,3.6,3v0c0,1.8-1.2,2.9-3.5,2.9h-0.9v2.9h-2.8V3.4z M46.3,7.5c0.7,0,1.1-0.3,1.1-1v0
c0-0.7-0.4-1-1.1-1h-0.6v2H46.3z"/>
<path d="M51.1,3.4h2.8v6.7h3.2v2.2h-6V3.4z"/>
<path d="M58.3,3.4h6.3v2.2h-3.5v1.2h2.8v2h-2.8v1.3h3.7v2.2h-6.5V3.4z"/>
</g>
</g>
<g>
<g>
<path d="M2.5,53.5H0.7v-1.7h5.9v1.7H4.8v5.4H2.5V53.5z"/>
<path d="M8.5,51.8h2.9l2.2,7.1h-2.4l-0.3-1.2H8.7l-0.3,1.2H6.2L8.5,51.8z M9.1,56.2h1.4l-0.7-2.6L9.1,56.2z"/>
<path d="M14.4,51.8h2.9c2,0,3,0.8,3,2.3v0c0,1-0.5,1.5-1.2,1.9l1.6,2.9h-2.4L17,56.5h-0.4v2.4h-2.3V51.8z M17.2,55
c0.6,0,0.9-0.3,0.9-0.8v0c0-0.5-0.3-0.7-0.9-0.7h-0.5V55H17.2z"/>
<path d="M21.5,51.8h2.7c2.6,0,3.9,1.2,3.9,3.5v0.1c0,2.3-1.3,3.6-3.9,3.6h-2.7V51.8z M24.2,57.2c1.1,0,1.6-0.5,1.6-1.8v-0.1
c0-1.3-0.5-1.8-1.6-1.8h-0.4v3.7H24.2z"/>
<path d="M29,51.8h2.3v7.1H29V51.8z"/>
<path d="M32.3,55.4L32.3,55.4c0-2.3,1.6-3.7,3.8-3.7c1.7,0,3.3,0.8,3.4,2.7h-2.2c-0.1-0.6-0.4-0.9-1.1-0.9c-0.9,0-1.4,0.7-1.4,1.9
v0.1c0,1,0.4,1.9,1.5,1.9c0.9,0,1.2-0.4,1.3-0.9h-1.2v-1.5h3.4v0.9c0,1.8-1.2,3.2-3.6,3.2C33.6,59,32.3,57.5,32.3,55.4z"/>
<path d="M40.6,51.8h2.9c2,0,3,0.8,3,2.3v0c0,1-0.5,1.5-1.2,1.9l1.6,2.9h-2.4l-1.3-2.4h-0.4v2.4h-2.3V51.8z M43.4,55
c0.6,0,0.9-0.3,0.9-0.8v0c0-0.5-0.3-0.7-0.9-0.7h-0.5V55H43.4z"/>
<path d="M49.4,51.8h2.9l2.2,7.1h-2.4l-0.3-1.2h-2.3l-0.3,1.2h-2.1L49.4,51.8z M50,56.2h1.4l-0.7-2.6L50,56.2z"/>
<path d="M55.3,51.8H58c2.6,0,3.9,1.2,3.9,3.5v0.1c0,2.3-1.3,3.6-3.9,3.6h-2.7V51.8z M57.9,57.2c1.1,0,1.6-0.5,1.6-1.8v-0.1
c0-1.3-0.5-1.8-1.6-1.8h-0.4v3.7H57.9z"/>
<path d="M62.8,51.8h5.1v1.7h-2.8v1h2.2v1.6h-2.2v1.1h3v1.7h-5.2V51.8z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 15 11.875 C 14.757812 11.597656 14.410156 11.433594 14.042969 11.429688 L 10.292969 11.429688 C 10.109375 11.433594 9.929688 11.351562 9.808594 11.210938 C 9.738281 11.140625 9.707031 11.035156 9.726562 10.9375 L 11.0625 5.789062 L 11.136719 5.789062 C 11.792969 5.785156 12.34375 5.300781 12.433594 4.652344 C 12.519531 4 12.117188 3.386719 11.488281 3.207031 C 10.859375 3.027344 10.191406 3.339844 9.925781 3.941406 C 9.660156 4.539062 9.875 5.242188 10.429688 5.589844 L 10.210938 6.421875 C 9.90625 6.363281 9.59375 6.328125 9.285156 6.316406 C 7.75 6.320312 6.277344 6.914062 5.167969 7.980469 L 5.621094 8.421875 C 6.621094 7.507812 7.929688 7.007812 9.285156 7.019531 C 9.535156 7.003906 9.789062 7.003906 10.042969 7.019531 L 9.714844 8.328125 L 9.273438 8.328125 C 7.019531 8.328125 5.191406 10.15625 5.191406 12.410156 C 5.191406 14.667969 7.019531 16.496094 9.273438 16.496094 C 11.53125 16.496094 13.359375 14.667969 13.359375 12.410156 C 13.363281 12.316406 13.363281 12.222656 13.359375 12.125 L 14.050781 12.125 C 14.222656 12.121094 14.386719 12.191406 14.5 12.320312 C 14.613281 12.449219 14.660156 12.621094 14.632812 12.789062 L 14.019531 16.398438 L 14.671875 16.503906 L 15.285156 12.894531 C 15.347656 12.527344 15.242188 12.152344 15 11.875 Z M 15 11.875 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
assets/images/.DS_Store vendored Normal file

Binary file not shown.

BIN
assets/images/compass.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 899 B

View File

@ -0,0 +1,221 @@
{
"type": "FeatureCollection",
"name": "ground_level_amenities",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"properties": {
"type": "restroom"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753485.468601841,
5141008.308355463
]
}
},
{
"type": "Feature",
"properties": {
"type": "restroom"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753573.319908632,
5140928.243484347
]
}
},
{
"type": "Feature",
"properties": {
"type": "picnic_area"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753540.56609772,
5140978.178234835
]
}
},
{
"type": "Feature",
"properties": {
"type": "picnic_area"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753540.142921865,
5140948.21738454
]
}
},
{
"type": "Feature",
"properties": {
"type": "first_aid"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753540.989273569,
5140986.72638703
]
}
},
{
"type": "Feature",
"properties": {
"type": "elevator"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753521.544343192,
5140952.554937018
]
}
},
{
"type": "Feature",
"properties": {
"type": "guest_services"
},
"geometry": null
},
{
"type": "Feature",
"properties": {
"type": "restroom"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753375.231292507,
5140983.891108826
]
}
},
{
"type": "Feature",
"properties": {
"type": "stroller"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753357.79919363,
5140959.467022678
]
}
},
{
"type": "Feature",
"properties": {
"type": "wheelchair"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753347.35750274,
5140959.687284166
]
}
},
{
"type": "Feature",
"properties": {
"type": "elevator"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753445.910657259,
5140953.820914226
]
}
},
{
"type": "Feature",
"properties": {
"type": "picnic_area"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753491.94888244,
5140983.780241814
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_up"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753521.750354467,
5140907.415998525
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_up"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753445.721843353,
5140965.066300285
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_up"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753522.569809346,
5140963.50751801
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_up"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753523.74965424,
5141020.206791695
]
}
},
{
"type": "Feature",
"properties": {
"type": "entrance"
},
"geometry": null
}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,164 @@
{
"type": "FeatureCollection",
"name": "ground_level_flows",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"properties": {
"exhibition": "egypt"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
-9753507.542852473,
5140945.093267804
],
[
-9753507.634150794,
5140945.090979627
],
[
-9753507.186258966,
5140927.220087335
],
[
-9753465.188938258,
5140928.272651283
],
[
-9753465.61353363,
5140945.214014382
],
[
-9753483.68979099,
5140944.760975551
],
[
-9753484.031299507,
5140958.387171692
]
]
]
}
},
{
"type": "Feature",
"properties": {
"exhibition": "underground"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
-9753453.03748549,
5140951.177420398
],
[
-9753453.043793287,
5140951.177272436
],
[
-9753452.824273182,
5140941.818809059
],
[
-9753428.12497743,
5140942.39817681
],
[
-9753428.39510019,
5140953.913905788
],
[
-9753376.78726691,
5140955.124463159
],
[
-9753376.19975078,
5140930.077790407
],
[
-9753427.835392537,
5140928.866580737
],
[
-9753428.031053465,
5140937.207892615
],
[
-9753452.53685091,
5140936.633063724
]
]
]
}
},
{
"type": "Feature",
"properties": {
"exhibition": "simpson_theater"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
-9753559.497490223,
5140939.913828289
],
[
-9753613.960944155,
5140939.076644539
],
[
-9753614.05008613,
5140949.069175865
],
[
-9753600.276121704,
5140949.2264196295
]
]
]
}
},
{
"type": "Feature",
"properties": {
"exhibition": "simpson_theater"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
-9753600.796260199,
5140973.980160126
],
[
-9753614.407453712,
5140973.825097343
],
[
-9753614.568374816,
5140984.695413291
],
[
-9753560.43143188,
5140985.527578088
]
]
]
}
}
]
}

View File

@ -0,0 +1,54 @@
{
"type": "FeatureCollection",
"name": "ground_level_labels",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"properties": {
"id": "egypt"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753483.68979099,
5140944.760975551
]
},
"id": "egypt"
},
{
"type": "Feature",
"properties": {
"id": "underground"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753402.28125,
5140954.526322099
]
},
"id": "underground"
},
{
"type": "Feature",
"properties": {
"id": "simpson_theater"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753585.738046113,
5140962.645689007
]
},
"id": "simpson_theater"
}
]
}

View File

@ -0,0 +1,180 @@
{
"type": "FeatureCollection",
"name": "ground_level_outline",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
-9753624.759478115,
5140894.120713461
],
[
-9753627.263055293,
5141029.316713676
],
[
-9753607.058847541,
5141029.665062087
],
[
-9753607.063939754,
5141025.976314691
],
[
-9753522.679233605,
5141027.535322215
],
[
-9753522.9851005,
5141045.864679184
],
[
-9753508.450758735,
5141046.102575664
],
[
-9753508.813267646,
5141070.379344492
],
[
-9753463.556295408,
5141071.251631579
],
[
-9753463.13714448,
5141047.031504756
],
[
-9753448.410219844,
5141047.258072832
],
[
-9753447.97974051,
5141028.996686283
],
[
-9753363.97362249,
5141030.378862222
],
[
-9753364.081583722,
5141034.230408727
],
[
-9753343.803741354,
5141034.615574449
],
[
-9753342.865740685,
5140975.045279594
],
[
-9753335.70518932,
5140975.147719682
],
[
-9753335.8661858,
5140981.185087659
],
[
-9753315.537617564,
5140981.63606781
],
[
-9753314.92856138,
5140953.619483319
],
[
-9753335.383196361,
5140952.769209048
],
[
-9753335.62469108,
5140958.565082306
],
[
-9753342.406629387,
5140958.822250495
],
[
-9753341.31149256,
5140899.4110779315
],
[
-9753341.26617895,
5140897.779787815
],
[
-9753361.498707715,
5140897.417278899
],
[
-9753361.521364525,
5140899.071225817
],
[
-9753361.622032342,
5140903.625476609
],
[
-9753445.578118956,
5140902.073252767
],
[
-9753445.283580465,
5140883.290759662
],
[
-9753459.738623409,
5140882.9509075545
],
[
-9753459.240173655,
5140856.872922553
],
[
-9753505.233492121,
5140855.989307068
],
[
-9753505.75459869,
5140882.135262494
],
[
-9753520.005730372,
5140881.840724009
],
[
-9753520.436209707,
5140900.713844343
],
[
-9753604.649909299,
5140899.149926858
],
[
-9753604.515620952,
5140894.47189398
],
[
-9753624.759478115,
5140894.120713461
]
]
]
]
}
}
]
}

View File

@ -0,0 +1,55 @@
{
"type": "FeatureCollection",
"name": "ground_level_pictograms",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"properties": {
"id": "east_entrance"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753319.122814488,
5140967.457606696
]
},
"id": "east_entrance"
},
{
"type": "Feature",
"properties": {
"id": "bushman",
"label": "Bushman\nthe\nGorilla"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753385.819824317,
5140964.396295527
]
},
"id": "bushman"
},
{
"type": "Feature",
"properties": {
"id": "sarcophagus"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753483.519976422,
5140927.813226977
]
},
"id": "sarcophagus"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

View File

@ -0,0 +1,22 @@
{
"type": "FeatureCollection",
"name": "main_level_amenities",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" } },
"features": [
{ "type": "Feature", "properties": { "type": "restroom" }, "geometry": { "type": "Point", "coordinates": [ -9753519.314022816717625, 5140975.504749830812216 ] } },
{ "type": "Feature", "properties": { "type": "stairs_up_down" }, "geometry": { "type": "Point", "coordinates": [ -9753523.618715234100819, 5141019.970267689786851 ] } },
{ "type": "Feature", "properties": { "type": "stairs_up" }, "geometry": { "type": "Point", "coordinates": [ -9753507.971886180341244, 5141031.658923045732081 ] } },
{ "type": "Feature", "properties": { "type": "stairs_up" }, "geometry": { "type": "Point", "coordinates": [ -9753463.556859698146582, 5141032.314011931419373 ] } },
{ "type": "Feature", "properties": { "type": "stairs_down" }, "geometry": { "type": "Point", "coordinates": [ -9753454.580249832943082, 5140965.157691745087504 ] } },
{ "type": "Feature", "properties": { "type": "stairs_down" }, "geometry": { "type": "Point", "coordinates": [ -9753513.731493383646011, 5140963.912402408197522 ] } },
{ "type": "Feature", "properties": { "type": "elevator" }, "geometry": { "type": "Point", "coordinates": [ -9753521.1832787822932, 5140952.6318742306903 ] } },
{ "type": "Feature", "properties": { "type": "elevator" }, "geometry": { "type": "Point", "coordinates": [ -9753446.954169053584337, 5140953.873326147906482 ] } },
{ "type": "Feature", "properties": { "type": "store" }, "geometry": { "type": "Point", "coordinates": [ -9753437.78256168961525, 5140913.123107450082898 ] } },
{ "type": "Feature", "properties": { "type": "atm" }, "geometry": { "type": "Point", "coordinates": [ -9753485.743257666006684, 5140885.145879987627268 ] } },
{ "type": "Feature", "properties": { "type": "stairs_up" }, "geometry": { "type": "Point", "coordinates": [ -9753489.154335997998714, 5140900.914789766073227 ] } },
{ "type": "Feature", "properties": { "type": "stairs_up_down" }, "geometry": { "type": "Point", "coordinates": [ -9753521.355595529079437, 5140907.215455098077655 ] } },
{ "type": "Feature", "properties": { "type": "stairs_up" }, "geometry": { "type": "Point", "coordinates": [ -9753603.682074636220932, 5141018.476763681508601 ] } },
{ "type": "Feature", "properties": { "type": "stairs_up" }, "geometry": { "type": "Point", "coordinates": [ -9753364.858743615448475, 5140910.281201459467411 ] } },
{ "type": "Feature", "properties": { "type": "store" }, "geometry": { "type": "Point", "coordinates": [ -9753398.457912938669324, 5140944.725479228422046 ] } }
]
}

View File

@ -0,0 +1,36 @@
{
"type": "FeatureCollection",
"name": "main_level_areas",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" } },
"features": [
{ "type": "Feature", "id": "africa", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753525.670325826853514, 5140971.709801921620965 ], [ -9753525.302373172715306, 5140937.256064519286156 ], [ -9753605.26764159090817, 5140935.778706549666822 ], [ -9753605.622377084568143, 5140954.343975422903895 ], [ -9753594.533212710171938, 5140954.548938748426735 ], [ -9753594.826635459437966, 5140970.432230850681663 ], [ -9753525.670325826853514, 5140971.709801921620965 ] ] ] ] } },
{ "type": "Feature", "properties": { "closed": 0, "label": "Bird Habitats" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753565.572200978174806, 5140936.512132876552641 ], [ -9753565.274356497451663, 5140920.389487648382783 ], [ -9753604.959582084789872, 5140919.656250030733645 ], [ -9753605.26764159090817, 5140935.778706549666822 ], [ -9753565.572200978174806, 5140936.512132876552641 ] ] ] ] } },
{ "type": "Feature", "id": "reptiles", "properties": { "closed": 0, "label": "Reptiles" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753565.572200978174806, 5140936.512132876552641 ], [ -9753542.073248144239187, 5140936.946244854480028 ], [ -9753541.775403663516045, 5140920.82359962631017 ], [ -9753565.274356497451663, 5140920.389487648382783 ], [ -9753565.572200978174806, 5140936.512132876552641 ] ] ] ] } },
{ "type": "Feature", "id": "animals", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753604.959582084789872, 5140919.656250030733645 ], [ -9753524.966332426294684, 5140921.13412491697818 ], [ -9753524.627231042832136, 5140900.636006940156221 ], [ -9753604.603639326989651, 5140899.150786129757762 ], [ -9753604.959582084789872, 5140919.656250030733645 ] ] ] ] } },
{ "type": "Feature", "id": "mammals", "properties": { "closed": 0, "label": "" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753604.515620952472091, 5140894.471893980167806 ], [ -9753624.759478114545345, 5140894.120713461190462 ], [ -9753627.263055292889476, 5141029.31671367585659 ], [ -9753607.058847540989518, 5141029.66506208665669 ], [ -9753604.515620952472091, 5140894.471893980167806 ] ] ], [ [ [ -9753606.274463273584843, 5140988.471249494701624 ], [ -9753539.710568096488714, 5140989.705241876654327 ], [ -9753525.799378724768758, 5140989.968110671266913 ], [ -9753525.670325826853514, 5140971.709801921620965 ], [ -9753605.925863210111856, 5140970.227081617340446 ], [ -9753606.274463273584843, 5140988.471249494701624 ] ] ] ] } },
{ "type": "Feature", "id": "rice", "properties": { "closed": 1, "label": "Plant\nMedicine" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753594.826635459437966, 5140970.432230850681663 ], [ -9753594.533212710171938, 5140954.548938748426735 ], [ -9753605.622377084568143, 5140954.343975422903895 ], [ -9753605.925863210111856, 5140970.227081617340446 ], [ -9753594.826635459437966, 5140970.432230850681663 ] ] ] ] } },
{ "type": "Feature", "id": "birds", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753527.201100433245301, 5141027.451786724850535 ], [ -9753526.807377506047487, 5141006.139137038961053 ], [ -9753606.585495740175247, 5141004.749297419562936 ], [ -9753606.976939864456654, 5141025.977928204461932 ], [ -9753527.201100433245301, 5141027.451786724850535 ] ] ] ] } },
{ "type": "Feature", "id": "nature_walk", "properties": { "closed": 0, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753518.789369285106659, 5140990.142869132570922 ], [ -9753606.274463273584843, 5140988.471249494701624 ], [ -9753606.585495740175247, 5141004.749297419562936 ], [ -9753519.100401746109128, 5141006.420917057432234 ], [ -9753519.144361209124327, 5141008.721558735705912 ], [ -9753507.739608235657215, 5141008.939474815502763 ], [ -9753507.330137006938457, 5140987.509582086466253 ], [ -9753518.734889980405569, 5140987.291666006669402 ], [ -9753518.789369285106659, 5140990.142869132570922 ] ] ] ] } },
{ "type": "Feature", "id": "mastaba", "properties": { "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753519.438020404428244, 5140942.272961718030274 ], [ -9753507.579781034961343, 5140942.492026957683265 ], [ -9753507.098636668175459, 5140916.447159730829298 ], [ -9753518.95687603764236, 5140916.228094491176307 ], [ -9753519.438020404428244, 5140942.272961718030274 ] ] ] ] } },
{ "type": "Feature", "id": "sci_hub", "properties": { "closed": 0, "label": "Science\nHub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753447.822488417848945, 5140932.669969233684242 ], [ -9753460.597860062494874, 5140932.461423533968627 ], [ -9753460.803731400519609, 5140945.072965547442436 ], [ -9753448.02835975587368, 5140945.281511247158051 ], [ -9753447.822488417848945, 5140932.669969233684242 ] ] ] ] } },
{ "type": "Feature", "id": "fm_store", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753396.53148865327239, 5140923.725139087066054 ], [ -9753396.191173151135445, 5140902.87763658259064 ], [ -9753441.873637080192566, 5140902.131914134137332 ], [ -9753442.213952582329512, 5140922.979416638612747 ], [ -9753396.53148865327239, 5140923.725139087066054 ] ] ] ] } },
{ "type": "Feature", "id": "founders", "properties": { "closed": 1, "label": "Founders Room" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753445.578118955716491, 5140902.073252767324448 ], [ -9753445.283580465242267, 5140883.290759662166238 ], [ -9753449.225864904001355, 5140883.154818823561072 ], [ -9753456.610879745334387, 5140883.154774622060359 ], [ -9753459.914564806967974, 5140883.087891280651093 ], [ -9753460.292563183233142, 5140901.759021651931107 ], [ -9753445.578118955716491, 5140902.073252767324448 ] ] ] ] } },
{ "type": "Feature", "id": "pawnee_lodge", "properties": { "closed": 1, "label": "Pawnee Lodge" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753362.754906637594104, 5140940.078014170750976 ], [ -9753392.246775219216943, 5140939.584649134427309 ], [ -9753392.54331536591053, 5140957.750502436421812 ], [ -9753363.051446784287691, 5140958.243867472745478 ], [ -9753362.754906637594104, 5140940.078014170750976 ] ] ] ] } },
{ "type": "Feature", "id": "field_bistro", "properties": { "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753449.413015797734261, 5141000.869047611020505 ], [ -9753462.787529891356826, 5141000.651824035681784 ], [ -9753463.215160027146339, 5141026.981126775033772 ], [ -9753459.21513875387609, 5141027.046093540266156 ], [ -9753459.404078057035804, 5141038.568583274260163 ], [ -9753469.355711735785007, 5141038.374720280058682 ], [ -9753469.614195728674531, 5141046.840071007609367 ], [ -9753462.978697754442692, 5141047.01339506264776 ], [ -9753459.602682564407587, 5141047.076818367466331 ], [ -9753452.261877061799169, 5141047.212759209796786 ], [ -9753448.410219844430685, 5141047.25807283166796 ], [ -9753447.97974050976336, 5141028.99668628256768 ], [ -9753449.840645933523774, 5141027.198350350372493 ], [ -9753449.413015797734261, 5141000.869047611020505 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753433.499503914266825, 5141029.234067210927606 ], [ -9753433.165872102603316, 5141008.882526771165431 ], [ -9753443.438395854085684, 5141008.714124741964042 ], [ -9753443.772027665749192, 5141029.065665181726217 ], [ -9753433.499503914266825, 5141029.234067210927606 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753447.97974050976336, 5141028.99668628256768 ], [ -9753443.772027665749192, 5141029.065665181726217 ], [ -9753443.438395854085684, 5141008.714124741964042 ], [ -9753449.539005365222692, 5141008.626259212382138 ], [ -9753449.840645933523774, 5141027.198350350372493 ], [ -9753447.97974050976336, 5141028.99668628256768 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753363.61711454205215, 5140992.896300278604031 ], [ -9753363.323655961081386, 5140974.919221705757082 ], [ -9753448.968675879761577, 5140973.50921028200537 ], [ -9753449.262134460732341, 5140991.486288854852319 ], [ -9753363.61711454205215, 5140992.896300278604031 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753449.262134460732341, 5140991.486288854852319 ], [ -9753448.968675879761577, 5140973.50921028200537 ], [ -9753461.888963555917144, 5140973.298298967070878 ], [ -9753462.182422136887908, 5140991.275377539917827 ], [ -9753449.262134460732341, 5140991.486288854852319 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753363.323655961081386, 5140974.919221705757082 ], [ -9753363.051446784287691, 5140958.243867472745478 ], [ -9753385.714674208313227, 5140957.86197345983237 ], [ -9753385.986883385106921, 5140974.537327692843974 ], [ -9753363.323655961081386, 5140974.919221705757082 ] ] ] ] } },
{ "type": "Feature", "id": "apsaalooke", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753392.246775219216943, 5140939.584649134427309 ], [ -9753442.729595974087715, 5140938.760565463453531 ], [ -9753443.026136120781302, 5140956.926418765448034 ], [ -9753425.861490428447723, 5140957.206615160219371 ], [ -9753426.133699605241418, 5140973.881969393230975 ], [ -9753385.986883385106921, 5140974.537327692843974 ], [ -9753385.714674208313227, 5140957.86197345983237 ], [ -9753392.54331536591053, 5140957.750502436421812 ], [ -9753392.246775219216943, 5140939.584649134427309 ] ] ] ] } },
{ "type": "Feature", "id": "americas", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753368.157615503296256, 5140924.188315376639366 ], [ -9753434.284022221341729, 5140923.108865153044462 ], [ -9753434.541703093796968, 5140938.894224965013564 ], [ -9753362.754906637594104, 5140940.078014170750976 ], [ -9753363.61711454205215, 5140992.896300278604031 ], [ -9753449.260732198134065, 5140991.492905299179256 ], [ -9753449.539005365222692, 5141008.626259212382138 ], [ -9753433.166030395776033, 5141008.892182605341077 ], [ -9753433.499503914266825, 5141029.234067210927606 ], [ -9753363.973622489720583, 5141030.333437904715538 ], [ -9753364.08158372156322, 5141034.230408727191389 ], [ -9753343.803741354495287, 5141034.615574449300766 ], [ -9753341.311492560431361, 5140899.411077931523323 ], [ -9753361.521346857771277, 5140899.069936143234372 ], [ -9753361.622032342478633, 5140903.579930437728763 ], [ -9753367.813858773559332, 5140903.511129395104945 ], [ -9753367.995785279199481, 5140917.545662513934076 ], [ -9753362.633718824014068, 5140917.67948644887656 ], [ -9753362.675038000568748, 5140924.277813200838864 ], [ -9753368.157615503296256, 5140924.188315376639366 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753368.157615503296256, 5140924.188315376639366 ], [ -9753362.675038000568748, 5140924.277813200838864 ], [ -9753362.633718824014068, 5140917.67948644887656 ], [ -9753367.995785279199481, 5140917.545662513934076 ], [ -9753367.813858773559332, 5140903.511129395104945 ], [ -9753396.195996643975377, 5140903.113197189755738 ], [ -9753396.53246658295393, 5140923.725123123265803 ], [ -9753368.157615503296256, 5140924.188315376639366 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753425.861490428447723, 5140957.206615157425404 ], [ -9753448.696466702967882, 5140956.833856053650379 ], [ -9753448.968675879761577, 5140973.50921028945595 ], [ -9753426.133699605241418, 5140973.881969393230975 ], [ -9753425.861490428447723, 5140957.206615157425404 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753520.005730371922255, 5140881.840724009089172 ], [ -9753520.474368909373879, 5140902.797743668779731 ], [ -9753506.010526068508625, 5140903.121182509697974 ], [ -9753505.541887531057, 5140882.164162850007415 ], [ -9753508.794099438935518, 5140882.098321585915983 ], [ -9753516.444335738196969, 5140881.947530623525381 ], [ -9753520.005730371922255, 5140881.840724009089172 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753542.073248144239187, 5140936.946244854480028 ], [ -9753519.347201529890299, 5140937.366078414954245 ], [ -9753519.049357049167156, 5140921.243433186784387 ], [ -9753541.775403663516045, 5140920.82359962631017 ], [ -9753542.073248144239187, 5140936.946244854480028 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753522.985100500285625, 5141045.864679183810949 ], [ -9753519.337354550138116, 5141046.023276833817363 ], [ -9753512.064519461244345, 5141046.0912472512573 ], [ -9753508.502986734732985, 5141046.158155770041049 ], [ -9753508.605609586462379, 5141054.202960781753063 ], [ -9753500.729767283424735, 5141054.257276935502887 ], [ -9753500.69565836712718, 5141037.372917204163969 ], [ -9753511.748528072610497, 5141037.271514729596674 ], [ -9753511.650369539856911, 5141025.684425763785839 ], [ -9753522.64686400257051, 5141025.591237537562847 ], [ -9753522.985100500285625, 5141045.864679183810949 ] ] ] ] } },
{ "type": "Feature", "id": "coat_check", "properties": { "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753447.983469244092703, 5140927.816000684164464 ], [ -9753447.851483073085546, 5140919.730615139938891 ], [ -9753467.841340588405728, 5140919.404299871996045 ], [ -9753467.973326759412885, 5140927.489685416221619 ], [ -9753447.983469244092703, 5140927.816000684164464 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753525.670325826853514, 5140971.709801921620965 ], [ -9753525.722984420135617, 5140979.159900818951428 ], [ -9753512.258045095950365, 5140979.404434448108077 ], [ -9753512.120521198958158, 5140971.960116586647928 ], [ -9753525.670325826853514, 5140971.709801921620965 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": "", "closed": 0, "label": "Slave Ship" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753532.843753607943654, 5140941.895370400510728 ], [ -9753549.89967299066484, 5140941.580284918658435 ], [ -9753549.876292770728469, 5140941.580716837197542 ], [ -9753549.787117436528206, 5140936.80378001742065 ], [ -9753532.734879622235894, 5140937.122109328396618 ], [ -9753532.843753607943654, 5140941.895370400510728 ] ] ] ] } }
]
}

View File

@ -0,0 +1,16 @@
{
"type": "FeatureCollection",
"name": "main_level_flows",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" } },
"features": [
{ "type": "Feature", "properties": { "exhibition": "birds" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753513.527798123657703, 5141015.752363338135183 ], [ -9753597.683908846229315, 5141014.163532015867531 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "animals" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753512.605190455913544, 5140908.696684377267957 ], [ -9753595.443199012428522, 5140907.166365803219378 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "africa" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753522.492185583338141, 5140963.637608036398888 ], [ -9753590.270998941734433, 5140962.385484381578863 ], [ -9753589.946512931957841, 5140944.820704211480916 ], [ -9753522.380848314613104, 5140946.068890223279595 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "americas" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753456.915628736838698, 5140995.950301787815988 ], [ -9753428.877633498981595, 5140996.46754302084446 ], [ -9753429.200153632089496, 5141017.242752060294151 ], [ -9753348.278336571529508, 5141018.73558705393225 ], [ -9753346.211058000102639, 5140906.675018299371004 ], [ -9753356.580225041136146, 5140906.483729274943471 ], [ -9753357.047235475853086, 5140931.798873298801482 ], [ -9753441.02470457367599, 5140930.230001994408667 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "apsaalooke" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753455.138466631993651, 5140947.720013721846044 ], [ -9753416.922958390787244, 5140948.481184924021363 ], [ -9753417.313108863309026, 5140969.600453749299049 ], [ -9753390.297389686107635, 5140970.099533319473267 ], [ -9753390.1423813495785, 5140961.70876367483288 ], [ -9753406.005546852946281, 5140961.415712739340961 ], [ -9753405.545657632872462, 5140935.290031906217337 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "nature_walk" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753513.479440463706851, 5140999.179808603599668 ], [ -9753602.656095784157515, 5140997.528423689305782 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "mammals" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753615.307627132162452, 5140909.678923790343106 ], [ -9753616.619718290865421, 5140980.533332031220198 ], [ -9753529.368393823504448, 5140982.149063419550657 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "mammals" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753617.383617104962468, 5141021.784732975997031 ], [ -9753616.700627785176039, 5140984.902536322362721 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "animals" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753608.016991978511214, 5140921.309949970804155 ], [ -9753544.228961018845439, 5140922.491185034625232 ], [ -9753544.436671322211623, 5140933.707776569761336 ], [ -9753607.353623179718852, 5140932.542672258801758 ] ] ] } }
]
}

View File

@ -0,0 +1,17 @@
{
"type": "FeatureCollection",
"name": "main_level_labels",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" } },
"features": [
{ "type": "Feature", "id": "birds", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753555.605853484943509, 5141014.957947677001357 ] } },
{ "type": "Feature", "id": "africa", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753589.946512931957841, 5140944.820704211480916 ] } },
{ "type": "Feature", "id": "animals", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753562.151131944730878, 5140907.781388840638101 ] } },
{ "type": "Feature", "id": "americas", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753389.861257903277874, 5141017.968470812775195 ] } },
{ "type": "Feature", "id": "apsaalooke", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753437.933724680915475, 5140948.062695389613509 ] } },
{ "type": "Feature", "id": "fm_store", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753419.202562866732478, 5140912.928526611067355 ] } },
{ "type": "Feature", "id": "nature_walk", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753558.06776812300086, 5140998.354116146452725 ] } },
{ "type": "Feature", "id": "maximo", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753483.036691509187222, 5141011.125253015197814 ] } },
{ "type": "Feature", "id": "messages_wilderness", "properties": { }, "geometry": null },
{ "type": "Feature", "id": "mammals", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753597.070161698386073, 5140980.895353266038001 ] } }
]
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,141 @@
{
"type": "FeatureCollection",
"name": "main_level_pictograms",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"properties": {
"id": "bird"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753567.089020148,
5141026.714857465
]
},
"id": "bird"
},
{
"type": "Feature",
"id": "maximo",
"properties": {
"id": "maximo",
"label": "Máximo\nthe\nTitanosaur"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753489.238221748,
5140999.8948999485
]
}
},
{
"type": "Feature",
"properties": {
"id": "elephant"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753475.010555338,
5140976.963249381
]
},
"id": "elephant"
},
{
"type": "Feature",
"properties": {
"id": "totems"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753475.68009258,
5140945.494998966
]
},
"id": "totems"
},
{
"type": "Feature",
"properties": {
"id": "mask"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753428.877633499,
5140996.467543021
]
},
"id": "mask"
},
{
"type": "Feature",
"properties": {
"id": "pawnee_lodge",
"label": "Pawnee\nLodge"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753383.931545118,
5140948.93249759
]
},
"id": "pawnee_lodge"
},
{
"type": "Feature",
"properties": {
"id": "lion",
"label": "Tsavo\nLions"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753626.20118901,
5140971.974732949
]
},
"id": "lion"
},
{
"type": "Feature",
"properties": {
"id": "south_entrance"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753482.198635027,
5140869.655059936
]
},
"id": "south_entrance"
},
{
"type": "Feature",
"properties": {
"id": "north_entrance"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753485.796646956,
5141058.293685325
]
},
"id": "north_entrance"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 KiB

Binary file not shown.

View File

@ -0,0 +1,194 @@
{
"type": "FeatureCollection",
"name": "upper_level_amenities",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"properties": {
"type": "restroom_female"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753497.730140567,
5141035.237939704
]
}
},
{
"type": "Feature",
"properties": {
"type": "restroom_male"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753473.089643253,
5141035.746615496
]
}
},
{
"type": "Feature",
"properties": {
"type": "store"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753457.666214457,
5140982.0894154
]
}
},
{
"type": "Feature",
"properties": {
"type": "elevator"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753439.539570265,
5140953.43172601
]
}
},
{
"type": "Feature",
"properties": {
"type": "restroom_female"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753463.688776206,
5140879.32009448
]
}
},
{
"type": "Feature",
"properties": {
"type": "elevator"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753521.761307439,
5140951.741074014
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753603.44665459,
5141020.293263434
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753523.58235728,
5141023.322387284
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753507.951155886,
5141031.493801811
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753462.252888804,
5141032.213023931
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753521.284427516,
5140908.230195204
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753482.72305687,
5140896.61199171
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753444.659609228,
5140908.451494319
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753365.084405726,
5140908.559183305
]
}
}
]
}

View File

@ -0,0 +1,44 @@
{
"type": "FeatureCollection",
"name": "upper_level_areas",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" } },
"features": [
{ "type": "Feature", "id": "restoring_earth", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753600.426300490275025, 5141026.099048308096826 ], [ -9753526.289699155837297, 5141027.468623659573495 ], [ -9753525.897439897060394, 5141006.235203934833407 ], [ -9753562.965740563347936, 5141005.550416259095073 ], [ -9753600.034041231498122, 5141004.865628583356738 ], [ -9753600.426300490275025, 5141026.099048308096826 ] ] ] ] } },
{ "type": "Feature", "id": "pacific", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753599.832634938880801, 5140988.417339080944657 ], [ -9753525.862954199314117, 5140989.783830795437098 ], [ -9753525.52837342210114, 5140971.672609879635274 ], [ -9753570.321762247011065, 5140970.845030345022678 ], [ -9753599.498054161667824, 5140970.306118167936802 ], [ -9753599.832634938880801, 5140988.417339080944657 ] ] ] ] } },
{ "type": "Feature", "properties": { "closed": 0, "label": "\n\n\n\nTraveling the Pacific" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753588.528955237939954, 5140970.508676610887051 ], [ -9753570.321762247011065, 5140970.845030345022678 ], [ -9753570.018031999468803, 5140954.384112830273807 ], [ -9753525.016417346894741, 5140955.215457955375314 ], [ -9753524.959296541288495, 5140952.123446678742766 ], [ -9753524.685011651366949, 5140937.276107669807971 ], [ -9753577.933835748583078, 5140936.276317338459194 ], [ -9753588.185153422877192, 5140954.02844899520278 ], [ -9753588.528955237939954, 5140970.508676610887051 ] ] ] ] } },
{ "type": "Feature", "id": "maori_house", "properties": { "closed": 1, "label": "Maori House" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753622.106315340846777, 5140958.046617023646832 ], [ -9753612.610966777428985, 5140956.94570704549551 ], [ -9753615.167930025607347, 5140934.891899031586945 ], [ -9753624.66327858902514, 5140935.992809009738266 ], [ -9753622.106315340846777, 5140958.046617023646832 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753524.685011651366949, 5140937.276107669807971 ], [ -9753518.638476978987455, 5140937.387809375301003 ], [ -9753518.21907340362668, 5140914.685038150288165 ], [ -9753524.311992568895221, 5140914.572479552589357 ], [ -9753524.056330006569624, 5140900.646576321683824 ], [ -9753604.649909298866987, 5140899.149926858022809 ], [ -9753604.516244208440185, 5140894.505842669866979 ], [ -9753624.759478118270636, 5140894.12071346770972 ], [ -9753625.4891163315624, 5140933.522002735175192 ], [ -9753609.661470718681812, 5140931.440229899249971 ], [ -9753609.982805322855711, 5140941.922618040814996 ], [ -9753599.064995041117072, 5140942.342610193416476 ], [ -9753598.770972106605768, 5140935.889577065594494 ], [ -9753524.685011651366949, 5140937.276107669807971 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753600.034041231498122, 5141004.865628583356738 ], [ -9753562.965740563347936, 5141005.550416259095073 ], [ -9753525.8942706938833, 5141006.23526403773576 ], [ -9753526.014684153720737, 5141012.584658619016409 ], [ -9753520.284074204042554, 5141012.693337101489305 ], [ -9753520.069549504667521, 5141001.06604858674109 ], [ -9753520.067451741546392, 5141000.93249100446701 ], [ -9753519.912953972816467, 5140992.538362299092114 ], [ -9753519.762144716456532, 5140984.363799926824868 ], [ -9753525.76106202416122, 5140984.253278818912804 ], [ -9753525.862954199314117, 5140989.783830795437098 ], [ -9753600.034041231498122, 5140988.417339080944657 ], [ -9753600.034041231498122, 5141004.865628583356738 ] ] ] ] } },
{ "type": "Feature", "id": "tibet", "properties": { "closed": 0, "label": "Tibet" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753520.284074204042554, 5141012.693337101489305 ], [ -9753517.587421003729105, 5141012.743154191412032 ], [ -9753517.601383600383997, 5141013.498964700847864 ], [ -9753515.144337356090546, 5141015.644353564828634 ], [ -9753509.719959897920489, 5141015.687633171677589 ], [ -9753507.432001465931535, 5141009.450503002852201 ], [ -9753506.635917929932475, 5141009.403674559667706 ], [ -9753506.153431676328182, 5140983.631807086057961 ], [ -9753507.799481427296996, 5140982.162119807675481 ], [ -9753509.680681144818664, 5140981.574244896881282 ], [ -9753511.38551838696003, 5140981.397882423363626 ], [ -9753513.234765373170376, 5140981.206581010483205 ], [ -9753515.794580223038793, 5140981.926969842985272 ], [ -9753518.71653313934803, 5140982.399889740161598 ], [ -9753519.724052993580699, 5140982.396721891127527 ], [ -9753519.762144716456532, 5140984.363799926824868 ], [ -9753519.912953972816467, 5140992.538362299092114 ], [ -9753520.067451741546392, 5141000.93249100446701 ], [ -9753520.069549504667521, 5141001.06604858674109 ], [ -9753520.284074204042554, 5141012.693337101489305 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753605.125321382656693, 5140953.912310466170311 ], [ -9753588.185153422877192, 5140954.02844899520278 ], [ -9753577.933835748583078, 5140936.276317338459194 ], [ -9753598.770972106605768, 5140935.889577065594494 ], [ -9753599.064995041117072, 5140942.342610193416476 ], [ -9753609.982805322855711, 5140941.922618040814996 ], [ -9753609.661470718681812, 5140931.440229899249971 ], [ -9753625.4891163315624, 5140933.522002735175192 ], [ -9753626.008017593994737, 5140961.550969490781426 ], [ -9753605.065464043989778, 5140961.899193222634494 ], [ -9753605.125321382656693, 5140953.912310466170311 ] ] ] ] } },
{ "type": "Feature", "id": "evolving_planet", "properties": { "closed": 0, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753443.295667003840208, 5140979.253517447970808 ], [ -9753453.785705152899027, 5140979.081549478694797 ], [ -9753453.88409654982388, 5140985.083420120179653 ], [ -9753443.394058400765061, 5140985.255388089455664 ], [ -9753443.485315039753914, 5140990.822038816288114 ], [ -9753379.976766157895327, 5140991.863163360394537 ], [ -9753379.870564680546522, 5140985.384878220036626 ], [ -9753378.699916195124388, 5140985.404069193638861 ], [ -9753378.84712827205658, 5140992.956927049905062 ], [ -9753450.111412527039647, 5140991.949805213138461 ], [ -9753450.335162358358502, 5141007.438363595865667 ], [ -9753380.972247239202261, 5141008.615672152489424 ], [ -9753380.835415130481124, 5141000.998115006834269 ], [ -9753376.384712846949697, 5140996.480843554250896 ], [ -9753373.133735209703445, 5140996.574683759361506 ], [ -9753369.311517015099525, 5140992.947708332911134 ], [ -9753369.019724095240235, 5140985.502951102331281 ], [ -9753363.309901691973209, 5140985.420200052671134 ], [ -9753363.620260395109653, 5140999.577578477561474 ], [ -9753363.979787867516279, 5140999.565291671082377 ], [ -9753363.796392820775509, 5140993.166864396072924 ], [ -9753369.075874263420701, 5140993.114591099321842 ], [ -9753380.407807890325785, 5141003.407351909205317 ], [ -9753380.523970710113645, 5141008.602965749800205 ], [ -9753374.41564616933465, 5141008.737503038719296 ], [ -9753374.417425498366356, 5141009.638021216727793 ], [ -9753443.696929035708308, 5141008.40825926233083 ], [ -9753444.14987551420927, 5141029.059470959939063 ], [ -9753370.673806523904204, 5141030.263996679335833 ], [ -9753370.470259580761194, 5141009.727321572601795 ], [ -9753363.873807575553656, 5141009.746837547980249 ], [ -9753364.08158372156322, 5141034.230408727191389 ], [ -9753343.845329541712999, 5141034.614892678335309 ], [ -9753342.424586864188313, 5140959.796443606726825 ], [ -9753362.593281954526901, 5140959.38559472002089 ], [ -9753362.943379886448383, 5140974.169955638237298 ], [ -9753443.190763749182224, 5140972.854423752054572 ], [ -9753443.295667003840208, 5140979.253517447970808 ] ] ] ] } },
{ "type": "Feature", "id": "china", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753368.527696764096618, 5140951.011873180978 ], [ -9753368.470600817352533, 5140947.529023150913417 ], [ -9753368.356865826994181, 5140940.591193994507194 ], [ -9753442.471610449254513, 5140939.376197254285216 ], [ -9753442.756066456437111, 5140956.728000421077013 ], [ -9753368.641321834176779, 5140957.94299716129899 ], [ -9753368.527696764096618, 5140951.011873180978 ] ] ] ] } },
{ "type": "Feature", "id": "plants", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753367.876117466017604, 5140916.309872021898627 ], [ -9753361.817016517743468, 5140916.407305178232491 ], [ -9753362.2135438490659, 5140941.066253186203539 ], [ -9753342.08529619127512, 5140941.389924752525985 ], [ -9753341.536207094788551, 5140911.601841323077679 ], [ -9753361.734519520774484, 5140911.277043082751334 ], [ -9753361.765333119779825, 5140913.193256355822086 ], [ -9753367.824181267991662, 5140913.095827264711261 ], [ -9753367.669344440102577, 5140903.513830307871103 ], [ -9753441.581126742064953, 5140902.319479491561651 ], [ -9753441.906073706224561, 5140922.428654245100915 ], [ -9753367.994291404262185, 5140923.623005061410367 ], [ -9753367.876117466017604, 5140916.309872021898627 ] ] ] ] } },
{ "type": "Feature", "id": "gems", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753520.436209708452225, 5140900.71384434401989 ], [ -9753506.025473244488239, 5140901.042540613561869 ], [ -9753505.594993909820914, 5140882.169420275837183 ], [ -9753520.0057303737849, 5140881.840724006295204 ], [ -9753520.436209708452225, 5140900.71384434401989 ] ] ] ] } },
{ "type": "Feature", "id": "jades", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753445.578118959441781, 5140902.073252767324448 ], [ -9753445.283580463379622, 5140883.290759664028883 ], [ -9753459.740397728979588, 5140883.064054444432259 ], [ -9753460.034936225041747, 5140901.846547547727823 ], [ -9753445.578118959441781, 5140902.073252767324448 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753361.734519520774484, 5140911.277043082751334 ], [ -9753341.536207094788551, 5140911.601841323077679 ], [ -9753341.311492564156651, 5140899.411077928729355 ], [ -9753361.521364524960518, 5140899.07122581731528 ], [ -9753361.734519520774484, 5140911.277043082751334 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753442.471610449254513, 5140939.376197254285216 ], [ -9753368.356865826994181, 5140940.591193994507194 ], [ -9753368.470600817352533, 5140947.529023150913417 ], [ -9753362.320717323571444, 5140947.647303683683276 ], [ -9753361.817016517743468, 5140916.407305178232491 ], [ -9753367.876117466017604, 5140916.309872021898627 ], [ -9753367.994291404262185, 5140923.623005061410367 ], [ -9753441.906073706224561, 5140922.428654245100915 ], [ -9753442.471610449254513, 5140939.376197254285216 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753443.190763749182224, 5140972.854423752054572 ], [ -9753362.943379886448383, 5140974.169955638237298 ], [ -9753362.593281954526901, 5140959.38559472002089 ], [ -9753362.54719447158277, 5140958.041087849996984 ], [ -9753362.377436216920614, 5140951.130160965025425 ], [ -9753368.527696764096618, 5140951.011873180978 ], [ -9753368.641321834176779, 5140957.94299716129899 ], [ -9753442.756066456437111, 5140956.728000421077013 ], [ -9753443.190763749182224, 5140972.854423752054572 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753362.593281954526901, 5140959.38559472002089 ], [ -9753342.424586864188313, 5140959.796443606726825 ], [ -9753342.398344086483121, 5140958.372772922739387 ], [ -9753362.54719447158277, 5140958.041087849996984 ], [ -9753362.593281954526901, 5140959.38559472002089 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753522.985100504010916, 5141045.86467918753624 ], [ -9753500.989227334037423, 5141046.231730219908059 ], [ -9753500.836293887346983, 5141037.067051735706627 ], [ -9753522.832167057320476, 5141036.700000703334808 ], [ -9753522.985100504010916, 5141045.86467918753624 ] ] ] ] } },
{ "type": "Feature", "id": "carl_cotton", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753448.410219848155975, 5141047.258072830736637 ], [ -9753448.19498017989099, 5141038.127379558980465 ], [ -9753470.057296633720398, 5141037.612014777958393 ], [ -9753470.272536301985383, 5141046.742708049714565 ], [ -9753448.410219848155975, 5141047.258072830736637 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753518.905160244554281, 5140973.402544047683477 ], [ -9753513.262714231386781, 5140973.506780751980841 ], [ -9753512.899464836344123, 5140953.843696497380733 ], [ -9753518.541910849511623, 5140953.73945979308337 ], [ -9753518.570659408345819, 5140955.295650509186089 ], [ -9753518.873166980221868, 5140971.67071392852813 ], [ -9753518.905160244554281, 5140973.402544047683477 ] ] ] ] } },
{ "type": "Feature", "id": "dna_lab", "properties": { "closed": 0, "label": "DNA\nLab" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753513.262714231386781, 5140973.506780751980841 ], [ -9753506.710129925981164, 5140973.62783105392009 ], [ -9753506.346880530938506, 5140953.964746799319983 ], [ -9753512.899464836344123, 5140953.843696497380733 ], [ -9753513.262714231386781, 5140973.506780751980841 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753570.321762247011065, 5140970.845030345022678 ], [ -9753525.52837342210114, 5140971.672609879635274 ], [ -9753518.873166980221868, 5140971.67071392852813 ], [ -9753518.570659408345819, 5140955.295650509186089 ], [ -9753525.016417346894741, 5140955.215457955375314 ], [ -9753570.018031999468803, 5140954.384112830273807 ], [ -9753570.321762247011065, 5140970.845030345022678 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753473.906379094347358, 5140902.173727279528975 ], [ -9753473.919390358030796, 5140902.024578352458775 ], [ -9753473.999190103262663, 5140901.418591406196356 ], [ -9753474.121510209515691, 5140900.819737525656819 ], [ -9753474.285742048174143, 5140900.230996426194906 ], [ -9753474.491068452596664, 5140899.655297506600618 ], [ -9753474.736467780545354, 5140899.095505270175636 ], [ -9753475.02071899920702, 5140898.554405072703958 ], [ -9753475.342407759279013, 5140898.034689265303314 ], [ -9753475.699933435767889, 5140897.53894379734993 ], [ -9753476.091517090797424, 5140897.069635348394513 ], [ -9753476.515210319310427, 5140896.629099054262042 ], [ -9753476.968904953449965, 5140896.219526890665293 ], [ -9753477.450343545526266, 5140895.842956764623523 ], [ -9753477.434391463175416, 5140894.349722408689559 ], [ -9753480.900343609973788, 5140894.257860357873142 ], [ -9753480.914858678355813, 5140895.379347479902208 ], [ -9753479.391819834709167, 5140895.701486242003739 ], [ -9753478.380059977993369, 5140896.207366171292961 ], [ -9753477.82600100710988, 5140896.761425141245127 ], [ -9753476.886509710922837, 5140897.604558356106281 ], [ -9753476.043376496061683, 5140898.688586776144803 ], [ -9753475.489317525178194, 5140900.06168944016099 ], [ -9753475.200243281200528, 5140900.832554094493389 ], [ -9753474.959348075091839, 5140901.579329228028655 ], [ -9753474.832319997251034, 5140905.605066905729473 ], [ -9753477.624641545116901, 5140905.580551205202937 ], [ -9753477.633284844458103, 5140902.398372922092676 ], [ -9753477.690468572080135, 5140901.382010915316641 ], [ -9753477.776438146829605, 5140901.049522145651281 ], [ -9753478.21143333427608, 5140900.326674165204167 ], [ -9753478.698591897264123, 5140899.566772779449821 ], [ -9753479.747427249327302, 5140898.746573464013636 ], [ -9753480.7725042514503, 5140898.28192643634975 ], [ -9753481.906629871577024, 5140898.003535022027791 ], [ -9753483.093091143295169, 5140897.925320433452725 ], [ -9753484.272558011114597, 5140898.051193859428167 ], [ -9753485.386050179600716, 5140898.374860887415707 ], [ -9753486.377886474132538, 5140898.880136257968843 ], [ -9753487.198469236493111, 5140899.541753225028515 ], [ -9753487.806764490902424, 5140900.326627039350569 ], [ -9753488.618106160312891, 5140901.916582513600588 ], [ -9753488.851751642301679, 5140905.375764044001698 ], [ -9753491.381037609651685, 5140905.354686660692096 ], [ -9753491.171595327556133, 5140901.772045391611755 ], [ -9753490.545857822522521, 5140899.864713883958757 ], [ -9753490.107673389837146, 5140899.064024908468127 ], [ -9753489.893462430685759, 5140898.623490273021162 ], [ -9753489.647793287411332, 5140898.262770990841091 ], [ -9753489.383622096851468, 5140897.915373077616096 ], [ -9753489.101669764146209, 5140897.582244557328522 ], [ -9753488.802705720067024, 5140897.264294516295195 ], [ -9753488.487545818090439, 5140896.962390618398786 ], [ -9753488.157050104811788, 5140896.677356738597155 ], [ -9753487.812120484188199, 5140896.409970716573298 ], [ -9753487.453698243945837, 5140896.160962229594588 ], [ -9753487.082761496305466, 5140895.931010806001723 ], [ -9753486.70032250136137, 5140895.720743967220187 ], [ -9753486.30742490850389, 5140895.530735517852008 ], [ -9753485.077889941632748, 5140895.255540776066482 ], [ -9753485.095270644873381, 5140894.156548486091197 ], [ -9753488.041087055578828, 5140894.148054565303028 ], [ -9753488.073034418746829, 5140895.641031567938626 ], [ -9753488.575307171791792, 5140896.009066979400814 ], [ -9753489.049852604046464, 5140896.41222279611975 ], [ -9753489.494220143184066, 5140896.848417101427913 ], [ -9753489.906115049496293, 5140897.315397365018725 ], [ -9753490.283410277217627, 5140897.810752077028155 ], [ -9753490.624157456681132, 5140898.331923201680183 ], [ -9753490.926596950739622, 5140898.876219383440912 ], [ -9753491.189166944473982, 5140899.440829849801958 ], [ -9753491.410511516034603, 5140900.022838923148811 ], [ -9753491.589487629011273, 5140900.619241078384221 ], [ -9753491.725171042606235, 5140901.226956466212869 ], [ -9753491.81686108186841, 5140901.842846811749041 ], [ -9753497.483246458694339, 5140901.73817593511194 ], [ -9753499.779377181082964, 5141026.030225942842662 ], [ -9753470.719322215765715, 5141026.567071903496981 ], [ -9753468.42319149337709, 5140902.275021895766258 ], [ -9753473.906379094347358, 5140902.173727279528975 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753504.397878931835294, 5140882.159310702234507 ], [ -9753499.119832681491971, 5140882.252865437418222 ], [ -9753498.99721110984683, 5140875.334965190850198 ], [ -9753504.275257360190153, 5140875.241410455666482 ], [ -9753504.397878931835294, 5140882.159310702234507 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 0, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753466.519565269351006, 5140882.830713606439531 ], [ -9753461.060609733685851, 5140882.92747500538826 ], [ -9753460.938851300626993, 5140876.058270181529224 ], [ -9753466.397806836292148, 5140875.961508782580495 ], [ -9753466.519565269351006, 5140882.830713606439531 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753510.790122272446752, 5141001.078208222985268 ], [ -9753513.514231074601412, 5141001.035421173088253 ], [ -9753520.067451741546392, 5141000.93249100446701 ], [ -9753520.106674758717418, 5141003.429689737968147 ], [ -9753513.553454091772437, 5141003.532619906589389 ], [ -9753513.696034047752619, 5141012.610210549086332 ], [ -9753510.971925247460604, 5141012.652997598052025 ], [ -9753510.829345289617777, 5141003.575406956486404 ], [ -9753510.790122272446752, 5141001.078208222985268 ] ] ], [ [ [ -9753510.697438769042492, 5140995.177358502522111 ], [ -9753510.658271731808782, 5140992.683723800815642 ], [ -9753510.517993157729506, 5140983.752654493786395 ], [ -9753513.242101958021522, 5140983.709867444820702 ], [ -9753513.382380533963442, 5140992.640936751849949 ], [ -9753519.912953972816467, 5140992.538362299092114 ], [ -9753519.952121010050178, 5140995.031997000798583 ], [ -9753513.421547571197152, 5140995.134571453556418 ], [ -9753510.697438769042492, 5140995.177358502522111 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 0, "label": "Spirit Stone\nGarden" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753362.320717323571444, 5140947.647303683683276 ], [ -9753362.377436216920614, 5140951.130160965025425 ], [ -9753362.54719447158277, 5140958.041087849996984 ], [ -9753342.398344086483121, 5140958.372772922739387 ], [ -9753342.08529619127512, 5140941.389924752525985 ], [ -9753362.2135438490659, 5140941.066253186203539 ], [ -9753362.320717323571444, 5140947.647303683683276 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": null, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753500.836293887346983, 5141037.067051735706627 ], [ -9753500.766616715118289, 5141033.29535074159503 ], [ -9753494.623987250030041, 5141033.408827671781182 ], [ -9753494.693664422258735, 5141037.18052866589278 ], [ -9753500.836293887346983, 5141037.067051735706627 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": null, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753470.057296633720398, 5141037.612014777958393 ], [ -9753469.990467624738812, 5141033.994487954303622 ], [ -9753476.12198987044394, 5141033.881216214969754 ], [ -9753476.188818879425526, 5141037.498743038624525 ], [ -9753470.057296633720398, 5141037.612014777958393 ] ] ] ] } },
{ "type": "Feature", "id": "fossil_lab", "properties": { "closed": 0, "label": "Fossil\nLab" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753450.411208188161254, 5141011.734952980652452 ], [ -9753454.695231297984719, 5141011.734952980652452 ], [ -9753454.695231297984719, 5141006.147096750326455 ], [ -9753458.047945035621524, 5141002.421859263442457 ], [ -9753451.435648497194052, 5140995.995824597775936 ], [ -9753450.131815375760198, 5140995.949259129352868 ], [ -9753450.411208188161254, 5141011.734952980652452 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": null, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753461.620387088507414, 5140989.242931940592825 ], [ -9753453.948645273223519, 5140989.368698295205832 ], [ -9753453.712041825056076, 5140974.935898861847818 ], [ -9753461.383783640339971, 5140974.810132507234812 ], [ -9753461.620387088507414, 5140989.242931940592825 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753370.673806523904204, 5141030.263996679335833 ], [ -9753364.048887642100453, 5141030.377623863518238 ], [ -9753363.873807575553656, 5141009.746837547980249 ], [ -9753370.470259580761194, 5141009.727321572601795 ], [ -9753370.673806523904204, 5141030.263996679335833 ] ] ] ] } },
{ "type": "Feature", "id": "d_day", "properties": { "closed": 0, "label": "" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753626.387010373175144, 5140982.009296840056777 ], [ -9753612.21979970112443, 5140982.271017260849476 ], [ -9753611.990118769928813, 5140970.060274471528828 ], [ -9753626.160802094265819, 5140969.793727562762797 ], [ -9753626.390572549775243, 5140982.009229836054146 ], [ -9753626.387010373175144, 5140982.009296840056777 ] ] ] ] } },
{ "type": "Feature", "id": "ese_eja", "properties": { "closed": 0, "label": "" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753626.387010373175144, 5140982.009296840056777 ], [ -9753612.21979970112443, 5140982.009296840056777 ], [ -9753612.21979970112443, 5141008.251237071119249 ], [ -9753619.94353261590004, 5141015.974969986826181 ], [ -9753627.015989016741514, 5141015.9765625 ], [ -9753626.387010373175144, 5140982.009296840056777 ] ] ] ] } },
{ "type": "Feature", "id": "hoffman", "properties": { "closed": 0, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753448.923615999519825, 5140938.326334271579981 ], [ -9753448.549106322228909, 5140915.149996648542583 ], [ -9753460.948412626981735, 5140914.949634525924921 ], [ -9753461.321614731103182, 5140938.045053719542921 ], [ -9753448.923615999519825, 5140938.326334271579981 ] ] ] ] } },
{ "type": "Feature", "id": "meteorites", "properties": { "closed": 0, "label": "Meteorites" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753466.728468187153339, 5140901.258146116510034 ], [ -9753466.729337282478809, 5140901.303615585900843 ], [ -9753474.047740191221237, 5140901.168311071582139 ], [ -9753477.434391463175416, 5140894.349722408689559 ], [ -9753466.63501787930727, 5140894.549384003505111 ], [ -9753466.728468187153339, 5140901.258146116510034 ] ] ], [ [ [ -9753499.652535177767277, 5140900.602610167115927 ], [ -9753492.224569238722324, 5140900.740549955517054 ], [ -9753488.041087055578828, 5140894.148054565303028 ], [ -9753499.483492309227586, 5140894.07419868838042 ], [ -9753499.652535177767277, 5140900.602610167115927 ] ] ], [ [ [ -9753518.889366734772921, 5140940.499100680463016 ], [ -9753506.427456004545093, 5140940.783345943316817 ], [ -9753505.634909218177199, 5140906.036426329985261 ], [ -9753518.096819948405027, 5140905.75218106713146 ], [ -9753518.889366734772921, 5140940.499100680463016 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": "pacific_marketplace", "closed": 0, "label": "Pacific\nMarketplace" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753588.528955237939954, 5140970.508676610887051 ], [ -9753588.185153422877192, 5140954.02844899520278 ], [ -9753604.892911477014422, 5140953.67990056052804 ], [ -9753605.239502860233188, 5140970.189281313680112 ], [ -9753588.528955237939954, 5140970.508676610887051 ] ] ] ] } }
]
}

View File

@ -0,0 +1,17 @@
{
"type": "FeatureCollection",
"name": "upper_level_flows",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" } },
"features": [
{ "type": "Feature", "properties": { "exhibition": "evolving_planet" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753452.917340654879808, 5141018.536599553190172 ], [ -9753443.800053287297487, 5141018.733865102753043 ], [ -9753372.611154342070222, 5141020.295263132080436 ], [ -9753372.235940495505929, 5141003.188119226135314 ], [ -9753360.343167215585709, 5141003.448965414427221 ], [ -9753360.927149085327983, 5141030.074480134062469 ], [ -9753346.274374010041356, 5141030.395861904136837 ], [ -9753344.794496569782495, 5140962.923735097050667 ], [ -9753358.486908596009016, 5140962.623417136259377 ], [ -9753359.005755200982094, 5140983.728923803195357 ], [ -9753370.031911801546812, 5140983.487085262313485 ], [ -9753370.096915571019053, 5140989.001097968779504 ], [ -9753382.365076538175344, 5141000.197967533953488 ], [ -9753382.465660445392132, 5141005.825956086628139 ], [ -9753441.67992702499032, 5141004.756591206416488 ], [ -9753441.524555137380958, 5140996.969505 ], [ -9753382.753430802375078, 5140998.025195117108524 ], [ -9753372.745620731264353, 5140989.208401917479932 ], [ -9753372.583002427592874, 5140983.320136212743819 ], [ -9753451.28204944357276, 5140982.068689608946443 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "restoring_earth" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753514.380928978323936, 5141021.492198717780411 ], [ -9753518.679737256839871, 5141015.469339832663536 ], [ -9753598.686611425131559, 5141013.695165955461562 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "pacific" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753513.958892039954662, 5140945.137056732550263 ], [ -9753577.697528654709458, 5140943.944177953526378 ], [ -9753577.925654541701078, 5140956.133541389368474 ], [ -9753603.719795480370522, 5140955.593069016002119 ], [ -9753603.85995508171618, 5140968.594200067222118 ], [ -9753577.966041328385472, 5140969.136539705097675 ], [ -9753578.268863581120968, 5140979.805088919587433 ], [ -9753522.719157623127103, 5140980.844710557721555 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "china" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753450.562027286738157, 5140947.888451407663524 ], [ -9753360.825392326340079, 5140949.359545125626028 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "jades" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753464.289922125637531, 5140905.184086834080517 ], [ -9753464.063821392133832, 5140893.354907503351569 ], [ -9753457.38683201558888, 5140893.482530229724944 ], [ -9753457.484928250312805, 5140898.614747138693929 ], [ -9753448.027833499014378, 5140898.79550829064101 ], [ -9753447.782740153372288, 5140885.972669906914234 ], [ -9753456.736799469217658, 5140885.801523679867387 ], [ -9753456.812107291072607, 5140889.741492392495275 ], [ -9753463.649166377261281, 5140889.610810122452676 ], [ -9753463.579437715932727, 5140885.962733212858438 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "gems" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753501.803129715844989, 5140903.561905521899462 ], [ -9753501.62319053709507, 5140894.533652698621154 ], [ -9753507.89632392115891, 5140894.408624911680818 ], [ -9753507.982013510540128, 5140898.708007032983005 ], [ -9753518.165604317560792, 5140898.505041170865297 ], [ -9753517.87499881722033, 5140883.924226175993681 ], [ -9753507.449295306578279, 5140884.132017505355179 ], [ -9753507.544179977849126, 5140888.892752854153514 ], [ -9753501.573076572269201, 5140889.011760981753469 ], [ -9753501.501054923981428, 5140885.39815308060497 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "plants" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753450.038483742624521, 5140912.777108130976558 ], [ -9753351.329736616462469, 5140914.395285789854825 ], [ -9753351.792164888232946, 5140942.603384687565267 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "ese_eja" }, "geometry": null },
{ "type": "Feature", "properties": { "exhibition": "ese_eja" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753609.764571379870176, 5140985.835593980737031 ], [ -9753624.058665571734309, 5140985.570907383225858 ], [ -9753624.438665276393294, 5141006.092352868057787 ], [ -9753610.834111578762531, 5141006.344271105714142 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "d_day" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753623.679754268378019, 5140967.074199479073286 ], [ -9753623.909362699836493, 5140979.473314544185996 ], [ -9753608.715375542640686, 5140979.754678782075644 ] ] ] } }
]
}

View File

@ -0,0 +1,19 @@
{
"type": "FeatureCollection",
"name": "upper_level_labels",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" } },
"features": [
{ "type": "Feature", "id": "restoring_earth", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753562.172631999477744, 5141014.504863454028964 ] } },
{ "type": "Feature", "id": "pacific", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753559.7890625, 5140980.151031914167106 ] } },
{ "type": "Feature", "id": "evolving_planet", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753412.764247501268983, 5141019.41593134496361 ] } },
{ "type": "Feature", "id": "china", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753400.651098014786839, 5140948.706664113327861 ] } },
{ "type": "Feature", "id": "plants", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753400.1736701708287, 5140914.305984682403505 ] } },
{ "type": "Feature", "id": "jades", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753444.028104778379202, 5140892.304086741060019 ] } },
{ "type": "Feature", "id": "gems", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753521.822038451209664, 5140891.065686972811818 ] } },
{ "type": "Feature", "id": "hoffman", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753454.932073699310422, 5140926.617824981920421 ] } },
{ "type": "Feature", "id": "ese_eja", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753623.242853654548526, 5140994.967897944152355 ] } },
{ "type": "Feature", "id": "d_day", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753623.839864023029804, 5140975.720307347364724 ] } },
{ "type": "Feature", "id": "sue", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753415.70459409058094, 5140999.929715652018785 ] } },
{ "type": "Feature", "id": "carl_cotton", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753459.233758240938187, 5141042.435043804347515 ] } }
]
}

View File

@ -0,0 +1,168 @@
{
"type": "FeatureCollection",
"name": "upper_level_outline",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
-9753499.119832681,
5140882.252865437
],
[
-9753498.99721111,
5140875.334965191
],
[
-9753504.27525736,
5140875.241410456
],
[
-9753504.397878932,
5140882.159310702
],
[
-9753505.75459869,
5140882.135262494
],
[
-9753520.005730372,
5140881.840724009
],
[
-9753520.436209707,
5140900.713844343
],
[
-9753604.649909299,
5140899.149926858
],
[
-9753604.515620952,
5140894.47189398
],
[
-9753624.759478115,
5140894.120713461
],
[
-9753627.263055293,
5141029.316713676
],
[
-9753607.058847541,
5141029.665062087
],
[
-9753607.063939754,
5141025.976314691
],
[
-9753522.679233605,
5141027.535322215
],
[
-9753522.9851005,
5141045.864679184
],
[
-9753500.989227334,
5141046.23173022
],
[
-9753500.836293887,
5141037.067051736
],
[
-9753470.057296634,
5141037.612014778
],
[
-9753470.272536302,
5141046.74270805
],
[
-9753448.410219844,
5141047.258072832
],
[
-9753447.97974051,
5141028.996686283
],
[
-9753363.97362249,
5141030.378862222
],
[
-9753364.081583722,
5141034.230408727
],
[
-9753343.803741354,
5141034.615574449
],
[
-9753342.425458858,
5140959.843749279
],
[
-9753341.31149256,
5140899.4110779315
],
[
-9753361.521364525,
5140899.071225817
],
[
-9753361.622032342,
5140903.625476609
],
[
-9753445.578118956,
5140902.073252767
],
[
-9753445.283580465,
5140883.290759662
],
[
-9753459.738623409,
5140882.9509075545
],
[
-9753461.060609734,
5140882.927475005
],
[
-9753460.9388513,
5140876.0582701815
],
[
-9753466.397806836,
5140875.961508783
],
[
-9753466.51956527,
5140882.830713606
],
[
-9753499.119832681,
5140882.252865437
]
]
]
]
}
}
]
}

View File

@ -0,0 +1,70 @@
{
"type": "FeatureCollection",
"name": "upper_level_pictograms",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"properties": {
"id": "stone_lion"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753455.007197991,
5140963.491790502
]
},
"id": "stone_lion"
},
{
"type": "Feature",
"id": "sue",
"properties": {
"id": "sue",
"label": "SUE the T. rex"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753415.70459409,
5140999.929715652
]
}
},
{
"type": "Feature",
"properties": {
"id": "trike"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753360.544303231,
5140993.9080106765
]
},
"id": "trike"
},
{
"type": "Feature",
"properties": {
"id": "maori_house",
"label": "Maori\nHouse"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753618.928280002,
5140942.947180382
]
},
"id": "maori_house"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

10
docs/atm.915997a8.svg Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;" d="M 0.542969 0.527344 L 19.464844 0.527344 L 19.464844 19.480469 L 0.542969 19.480469 Z M 0.542969 0.527344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1.066406 1.035156 L 18.949219 1.035156 L 18.949219 18.941406 L 1.050781 18.941406 L 1.050781 1.027344 M 0.015625 0 L 0.015625 19.984375 L 19.953125 19.984375 L 19.953125 0 Z M 0.015625 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 5.707031 7.90625 L 4.171875 12.386719 L 4.824219 12.386719 L 5.246094 11.136719 L 6.917969 11.136719 L 7.347656 12.386719 L 8.019531 12.386719 L 6.488281 7.90625 Z M 6.726562 10.566406 L 5.429688 10.566406 L 6.082031 8.648438 Z M 6.726562 10.566406 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 7.808594 8.480469 L 9.0625 8.480469 L 9.0625 12.386719 L 9.738281 12.386719 L 9.738281 8.480469 L 10.996094 8.488281 L 10.996094 7.90625 L 7.808594 7.90625 Z M 7.808594 8.480469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 14.953125 7.90625 L 13.710938 11.148438 L 12.445312 7.953125 L 12.429688 7.90625 L 11.570312 7.90625 L 11.5625 12.394531 L 12.199219 12.394531 L 12.199219 9.050781 L 13.558594 12.394531 L 13.820312 12.394531 L 15.128906 9.0625 L 15.128906 12.394531 L 15.804688 12.394531 L 15.804688 7.914062 Z M 14.953125 7.90625 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
docs/compass.e7ad9df0.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 899 B

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 14.949219 16.632812 L 4.421875 16.632812 L 4.421875 3.367188 L 14.949219 3.367188 L 14.949219 5.789062 L 15.578125 5.789062 L 15.578125 2.738281 L 3.789062 2.738281 L 3.789062 17.261719 L 15.578125 17.261719 L 15.578125 14.105469 L 14.949219 14.105469 Z M 14.949219 16.632812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 9.050781 6.738281 C 9.578125 6.738281 10.105469 6.316406 10.105469 5.789062 C 10.105469 5.261719 9.683594 4.738281 9.15625 4.738281 C 8.632812 4.738281 8.105469 5.15625 8.105469 5.683594 C 8 6.316406 8.527344 6.738281 9.050781 6.738281 Z M 9.050781 6.738281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 10 15.683594 L 10 12.632812 L 11.15625 12.632812 L 11.15625 8.632812 C 11.15625 8 10.632812 7.472656 10 7.472656 L 8 7.472656 C 7.367188 7.472656 6.84375 8 6.84375 8.632812 L 6.84375 12.632812 L 8 12.632812 L 8 15.683594 L 8.632812 15.683594 L 8.632812 12.632812 L 9.367188 12.632812 L 9.367188 15.683594 Z M 10 15.683594 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 15.261719 12.421875 L 13.894531 11.15625 L 13.472656 11.578125 L 15.261719 13.367188 L 17.050781 11.578125 L 16.632812 11.15625 Z M 15.261719 12.421875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 13.472656 8.316406 L 13.894531 8.632812 L 15.261719 7.472656 L 16.632812 8.632812 L 17.050781 8.316406 L 15.261719 6.527344 Z M 13.472656 8.316406 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
docs/favicon.6daef864.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 924 B

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 11.726562 4.664062 L 8.210938 4.664062 L 8.210938 8.199219 L 4.671875 8.199219 L 4.671875 11.714844 L 8.199219 11.714844 L 8.199219 15.253906 L 11.707031 15.253906 L 11.707031 11.714844 L 15.242188 11.714844 L 15.242188 8.199219 L 11.726562 8.199219 Z M 11.726562 4.664062 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 704 B

View File

@ -0,0 +1,221 @@
{
"type": "FeatureCollection",
"name": "ground_level_amenities",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"properties": {
"type": "restroom"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753485.468601841,
5141008.308355463
]
}
},
{
"type": "Feature",
"properties": {
"type": "restroom"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753573.319908632,
5140928.243484347
]
}
},
{
"type": "Feature",
"properties": {
"type": "picnic_area"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753540.56609772,
5140978.178234835
]
}
},
{
"type": "Feature",
"properties": {
"type": "picnic_area"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753540.142921865,
5140948.21738454
]
}
},
{
"type": "Feature",
"properties": {
"type": "first_aid"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753540.989273569,
5140986.72638703
]
}
},
{
"type": "Feature",
"properties": {
"type": "elevator"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753521.544343192,
5140952.554937018
]
}
},
{
"type": "Feature",
"properties": {
"type": "guest_services"
},
"geometry": null
},
{
"type": "Feature",
"properties": {
"type": "restroom"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753375.231292507,
5140983.891108826
]
}
},
{
"type": "Feature",
"properties": {
"type": "stroller"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753357.79919363,
5140959.467022678
]
}
},
{
"type": "Feature",
"properties": {
"type": "wheelchair"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753347.35750274,
5140959.687284166
]
}
},
{
"type": "Feature",
"properties": {
"type": "elevator"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753445.910657259,
5140953.820914226
]
}
},
{
"type": "Feature",
"properties": {
"type": "picnic_area"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753491.94888244,
5140983.780241814
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_up"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753521.750354467,
5140907.415998525
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_up"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753445.721843353,
5140965.066300285
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_up"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753522.569809346,
5140963.50751801
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_up"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753523.74965424,
5141020.206791695
]
}
},
{
"type": "Feature",
"properties": {
"type": "entrance"
},
"geometry": null
}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,164 @@
{
"type": "FeatureCollection",
"name": "ground_level_flows",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"properties": {
"exhibition": "egypt"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
-9753507.542852473,
5140945.093267804
],
[
-9753507.634150794,
5140945.090979627
],
[
-9753507.186258966,
5140927.220087335
],
[
-9753465.188938258,
5140928.272651283
],
[
-9753465.61353363,
5140945.214014382
],
[
-9753483.68979099,
5140944.760975551
],
[
-9753484.031299507,
5140958.387171692
]
]
]
}
},
{
"type": "Feature",
"properties": {
"exhibition": "underground"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
-9753453.03748549,
5140951.177420398
],
[
-9753453.043793287,
5140951.177272436
],
[
-9753452.824273182,
5140941.818809059
],
[
-9753428.12497743,
5140942.39817681
],
[
-9753428.39510019,
5140953.913905788
],
[
-9753376.78726691,
5140955.124463159
],
[
-9753376.19975078,
5140930.077790407
],
[
-9753427.835392537,
5140928.866580737
],
[
-9753428.031053465,
5140937.207892615
],
[
-9753452.53685091,
5140936.633063724
]
]
]
}
},
{
"type": "Feature",
"properties": {
"exhibition": "simpson_theater"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
-9753559.497490223,
5140939.913828289
],
[
-9753613.960944155,
5140939.076644539
],
[
-9753614.05008613,
5140949.069175865
],
[
-9753600.276121704,
5140949.2264196295
]
]
]
}
},
{
"type": "Feature",
"properties": {
"exhibition": "simpson_theater"
},
"geometry": {
"type": "MultiLineString",
"coordinates": [
[
[
-9753600.796260199,
5140973.980160126
],
[
-9753614.407453712,
5140973.825097343
],
[
-9753614.568374816,
5140984.695413291
],
[
-9753560.43143188,
5140985.527578088
]
]
]
}
}
]
}

View File

@ -0,0 +1,54 @@
{
"type": "FeatureCollection",
"name": "ground_level_labels",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"properties": {
"id": "egypt"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753483.68979099,
5140944.760975551
]
},
"id": "egypt"
},
{
"type": "Feature",
"properties": {
"id": "underground"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753402.28125,
5140954.526322099
]
},
"id": "underground"
},
{
"type": "Feature",
"properties": {
"id": "simpson_theater"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753585.738046113,
5140962.645689007
]
},
"id": "simpson_theater"
}
]
}

View File

@ -0,0 +1,180 @@
{
"type": "FeatureCollection",
"name": "ground_level_outline",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
-9753624.759478115,
5140894.120713461
],
[
-9753627.263055293,
5141029.316713676
],
[
-9753607.058847541,
5141029.665062087
],
[
-9753607.063939754,
5141025.976314691
],
[
-9753522.679233605,
5141027.535322215
],
[
-9753522.9851005,
5141045.864679184
],
[
-9753508.450758735,
5141046.102575664
],
[
-9753508.813267646,
5141070.379344492
],
[
-9753463.556295408,
5141071.251631579
],
[
-9753463.13714448,
5141047.031504756
],
[
-9753448.410219844,
5141047.258072832
],
[
-9753447.97974051,
5141028.996686283
],
[
-9753363.97362249,
5141030.378862222
],
[
-9753364.081583722,
5141034.230408727
],
[
-9753343.803741354,
5141034.615574449
],
[
-9753342.865740685,
5140975.045279594
],
[
-9753335.70518932,
5140975.147719682
],
[
-9753335.8661858,
5140981.185087659
],
[
-9753315.537617564,
5140981.63606781
],
[
-9753314.92856138,
5140953.619483319
],
[
-9753335.383196361,
5140952.769209048
],
[
-9753335.62469108,
5140958.565082306
],
[
-9753342.406629387,
5140958.822250495
],
[
-9753341.31149256,
5140899.4110779315
],
[
-9753341.26617895,
5140897.779787815
],
[
-9753361.498707715,
5140897.417278899
],
[
-9753361.521364525,
5140899.071225817
],
[
-9753361.622032342,
5140903.625476609
],
[
-9753445.578118956,
5140902.073252767
],
[
-9753445.283580465,
5140883.290759662
],
[
-9753459.738623409,
5140882.9509075545
],
[
-9753459.240173655,
5140856.872922553
],
[
-9753505.233492121,
5140855.989307068
],
[
-9753505.75459869,
5140882.135262494
],
[
-9753520.005730372,
5140881.840724009
],
[
-9753520.436209707,
5140900.713844343
],
[
-9753604.649909299,
5140899.149926858
],
[
-9753604.515620952,
5140894.47189398
],
[
-9753624.759478115,
5140894.120713461
]
]
]
]
}
}
]
}

View File

@ -0,0 +1,55 @@
{
"type": "FeatureCollection",
"name": "ground_level_pictograms",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"properties": {
"id": "east_entrance"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753319.122814488,
5140967.457606696
]
},
"id": "east_entrance"
},
{
"type": "Feature",
"properties": {
"id": "bushman",
"label": "Bushman\nthe\nGorilla"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753385.819824317,
5140964.396295527
]
},
"id": "bushman"
},
{
"type": "Feature",
"properties": {
"id": "sarcophagus"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753483.519976422,
5140927.813226977
]
},
"id": "sarcophagus"
}
]
}

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 10 3.894531 L 3.578125 8.316406 L 3.578125 10.105469 L 5.261719 10.105469 L 5.261719 16.105469 L 8.84375 16.105469 L 8.84375 11.578125 L 11.15625 11.578125 L 11.15625 16.105469 L 14.738281 16.105469 L 14.738281 10.105469 L 16.527344 10.105469 L 16.527344 8.316406 Z M 10 3.894531 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 711 B

1
docs/index.html Normal file
View File

@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><title>OpenLayers Indoor Map Example</title><meta name="description" content="Example of OpenLayers to display an indoor venue map for a natural history museum"><script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=fetch,requestAnimationFrame,Element.prototype.classList,URL"></script><meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"><link rel="stylesheet" href="openlayers_indoor_map.5e860280.css"><link rel="icon" href="favicon.6daef864.ico"><link rel="stylesheet" href="openlayers_indoor_map.bb28b584.css"></head><body> <div id="compass"><img src="compass.e7ad9df0.png" alt=""></div> <div id="tfm-sidebar" class="closed"></div> <div id="map" class="map"></div> <div id="layers"></div> <div id="sidebar"></div> <script src="openlayers_indoor_map.c67e9f72.js"></script> </body></html>

View File

@ -0,0 +1,22 @@
{
"type": "FeatureCollection",
"name": "main_level_amenities",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" } },
"features": [
{ "type": "Feature", "properties": { "type": "restroom" }, "geometry": { "type": "Point", "coordinates": [ -9753519.314022816717625, 5140975.504749830812216 ] } },
{ "type": "Feature", "properties": { "type": "stairs_up_down" }, "geometry": { "type": "Point", "coordinates": [ -9753523.618715234100819, 5141019.970267689786851 ] } },
{ "type": "Feature", "properties": { "type": "stairs_up" }, "geometry": { "type": "Point", "coordinates": [ -9753507.971886180341244, 5141031.658923045732081 ] } },
{ "type": "Feature", "properties": { "type": "stairs_up" }, "geometry": { "type": "Point", "coordinates": [ -9753463.556859698146582, 5141032.314011931419373 ] } },
{ "type": "Feature", "properties": { "type": "stairs_down" }, "geometry": { "type": "Point", "coordinates": [ -9753454.580249832943082, 5140965.157691745087504 ] } },
{ "type": "Feature", "properties": { "type": "stairs_down" }, "geometry": { "type": "Point", "coordinates": [ -9753513.731493383646011, 5140963.912402408197522 ] } },
{ "type": "Feature", "properties": { "type": "elevator" }, "geometry": { "type": "Point", "coordinates": [ -9753521.1832787822932, 5140952.6318742306903 ] } },
{ "type": "Feature", "properties": { "type": "elevator" }, "geometry": { "type": "Point", "coordinates": [ -9753446.954169053584337, 5140953.873326147906482 ] } },
{ "type": "Feature", "properties": { "type": "store" }, "geometry": { "type": "Point", "coordinates": [ -9753437.78256168961525, 5140913.123107450082898 ] } },
{ "type": "Feature", "properties": { "type": "atm" }, "geometry": { "type": "Point", "coordinates": [ -9753485.743257666006684, 5140885.145879987627268 ] } },
{ "type": "Feature", "properties": { "type": "stairs_up" }, "geometry": { "type": "Point", "coordinates": [ -9753489.154335997998714, 5140900.914789766073227 ] } },
{ "type": "Feature", "properties": { "type": "stairs_up_down" }, "geometry": { "type": "Point", "coordinates": [ -9753521.355595529079437, 5140907.215455098077655 ] } },
{ "type": "Feature", "properties": { "type": "stairs_up" }, "geometry": { "type": "Point", "coordinates": [ -9753603.682074636220932, 5141018.476763681508601 ] } },
{ "type": "Feature", "properties": { "type": "stairs_up" }, "geometry": { "type": "Point", "coordinates": [ -9753364.858743615448475, 5140910.281201459467411 ] } },
{ "type": "Feature", "properties": { "type": "store" }, "geometry": { "type": "Point", "coordinates": [ -9753398.457912938669324, 5140944.725479228422046 ] } }
]
}

View File

@ -0,0 +1,36 @@
{
"type": "FeatureCollection",
"name": "main_level_areas",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" } },
"features": [
{ "type": "Feature", "id": "africa", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753525.670325826853514, 5140971.709801921620965 ], [ -9753525.302373172715306, 5140937.256064519286156 ], [ -9753605.26764159090817, 5140935.778706549666822 ], [ -9753605.622377084568143, 5140954.343975422903895 ], [ -9753594.533212710171938, 5140954.548938748426735 ], [ -9753594.826635459437966, 5140970.432230850681663 ], [ -9753525.670325826853514, 5140971.709801921620965 ] ] ] ] } },
{ "type": "Feature", "properties": { "closed": 0, "label": "Bird Habitats" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753565.572200978174806, 5140936.512132876552641 ], [ -9753565.274356497451663, 5140920.389487648382783 ], [ -9753604.959582084789872, 5140919.656250030733645 ], [ -9753605.26764159090817, 5140935.778706549666822 ], [ -9753565.572200978174806, 5140936.512132876552641 ] ] ] ] } },
{ "type": "Feature", "id": "reptiles", "properties": { "closed": 0, "label": "Reptiles" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753565.572200978174806, 5140936.512132876552641 ], [ -9753542.073248144239187, 5140936.946244854480028 ], [ -9753541.775403663516045, 5140920.82359962631017 ], [ -9753565.274356497451663, 5140920.389487648382783 ], [ -9753565.572200978174806, 5140936.512132876552641 ] ] ] ] } },
{ "type": "Feature", "id": "animals", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753604.959582084789872, 5140919.656250030733645 ], [ -9753524.966332426294684, 5140921.13412491697818 ], [ -9753524.627231042832136, 5140900.636006940156221 ], [ -9753604.603639326989651, 5140899.150786129757762 ], [ -9753604.959582084789872, 5140919.656250030733645 ] ] ] ] } },
{ "type": "Feature", "id": "mammals", "properties": { "closed": 0, "label": "" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753604.515620952472091, 5140894.471893980167806 ], [ -9753624.759478114545345, 5140894.120713461190462 ], [ -9753627.263055292889476, 5141029.31671367585659 ], [ -9753607.058847540989518, 5141029.66506208665669 ], [ -9753604.515620952472091, 5140894.471893980167806 ] ] ], [ [ [ -9753606.274463273584843, 5140988.471249494701624 ], [ -9753539.710568096488714, 5140989.705241876654327 ], [ -9753525.799378724768758, 5140989.968110671266913 ], [ -9753525.670325826853514, 5140971.709801921620965 ], [ -9753605.925863210111856, 5140970.227081617340446 ], [ -9753606.274463273584843, 5140988.471249494701624 ] ] ] ] } },
{ "type": "Feature", "id": "rice", "properties": { "closed": 1, "label": "Plant\nMedicine" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753594.826635459437966, 5140970.432230850681663 ], [ -9753594.533212710171938, 5140954.548938748426735 ], [ -9753605.622377084568143, 5140954.343975422903895 ], [ -9753605.925863210111856, 5140970.227081617340446 ], [ -9753594.826635459437966, 5140970.432230850681663 ] ] ] ] } },
{ "type": "Feature", "id": "birds", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753527.201100433245301, 5141027.451786724850535 ], [ -9753526.807377506047487, 5141006.139137038961053 ], [ -9753606.585495740175247, 5141004.749297419562936 ], [ -9753606.976939864456654, 5141025.977928204461932 ], [ -9753527.201100433245301, 5141027.451786724850535 ] ] ] ] } },
{ "type": "Feature", "id": "nature_walk", "properties": { "closed": 0, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753518.789369285106659, 5140990.142869132570922 ], [ -9753606.274463273584843, 5140988.471249494701624 ], [ -9753606.585495740175247, 5141004.749297419562936 ], [ -9753519.100401746109128, 5141006.420917057432234 ], [ -9753519.144361209124327, 5141008.721558735705912 ], [ -9753507.739608235657215, 5141008.939474815502763 ], [ -9753507.330137006938457, 5140987.509582086466253 ], [ -9753518.734889980405569, 5140987.291666006669402 ], [ -9753518.789369285106659, 5140990.142869132570922 ] ] ] ] } },
{ "type": "Feature", "id": "mastaba", "properties": { "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753519.438020404428244, 5140942.272961718030274 ], [ -9753507.579781034961343, 5140942.492026957683265 ], [ -9753507.098636668175459, 5140916.447159730829298 ], [ -9753518.95687603764236, 5140916.228094491176307 ], [ -9753519.438020404428244, 5140942.272961718030274 ] ] ] ] } },
{ "type": "Feature", "id": "sci_hub", "properties": { "closed": 0, "label": "Science\nHub" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753447.822488417848945, 5140932.669969233684242 ], [ -9753460.597860062494874, 5140932.461423533968627 ], [ -9753460.803731400519609, 5140945.072965547442436 ], [ -9753448.02835975587368, 5140945.281511247158051 ], [ -9753447.822488417848945, 5140932.669969233684242 ] ] ] ] } },
{ "type": "Feature", "id": "fm_store", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753396.53148865327239, 5140923.725139087066054 ], [ -9753396.191173151135445, 5140902.87763658259064 ], [ -9753441.873637080192566, 5140902.131914134137332 ], [ -9753442.213952582329512, 5140922.979416638612747 ], [ -9753396.53148865327239, 5140923.725139087066054 ] ] ] ] } },
{ "type": "Feature", "id": "founders", "properties": { "closed": 1, "label": "Founders Room" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753445.578118955716491, 5140902.073252767324448 ], [ -9753445.283580465242267, 5140883.290759662166238 ], [ -9753449.225864904001355, 5140883.154818823561072 ], [ -9753456.610879745334387, 5140883.154774622060359 ], [ -9753459.914564806967974, 5140883.087891280651093 ], [ -9753460.292563183233142, 5140901.759021651931107 ], [ -9753445.578118955716491, 5140902.073252767324448 ] ] ] ] } },
{ "type": "Feature", "id": "pawnee_lodge", "properties": { "closed": 1, "label": "Pawnee Lodge" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753362.754906637594104, 5140940.078014170750976 ], [ -9753392.246775219216943, 5140939.584649134427309 ], [ -9753392.54331536591053, 5140957.750502436421812 ], [ -9753363.051446784287691, 5140958.243867472745478 ], [ -9753362.754906637594104, 5140940.078014170750976 ] ] ] ] } },
{ "type": "Feature", "id": "field_bistro", "properties": { "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753449.413015797734261, 5141000.869047611020505 ], [ -9753462.787529891356826, 5141000.651824035681784 ], [ -9753463.215160027146339, 5141026.981126775033772 ], [ -9753459.21513875387609, 5141027.046093540266156 ], [ -9753459.404078057035804, 5141038.568583274260163 ], [ -9753469.355711735785007, 5141038.374720280058682 ], [ -9753469.614195728674531, 5141046.840071007609367 ], [ -9753462.978697754442692, 5141047.01339506264776 ], [ -9753459.602682564407587, 5141047.076818367466331 ], [ -9753452.261877061799169, 5141047.212759209796786 ], [ -9753448.410219844430685, 5141047.25807283166796 ], [ -9753447.97974050976336, 5141028.99668628256768 ], [ -9753449.840645933523774, 5141027.198350350372493 ], [ -9753449.413015797734261, 5141000.869047611020505 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753433.499503914266825, 5141029.234067210927606 ], [ -9753433.165872102603316, 5141008.882526771165431 ], [ -9753443.438395854085684, 5141008.714124741964042 ], [ -9753443.772027665749192, 5141029.065665181726217 ], [ -9753433.499503914266825, 5141029.234067210927606 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753447.97974050976336, 5141028.99668628256768 ], [ -9753443.772027665749192, 5141029.065665181726217 ], [ -9753443.438395854085684, 5141008.714124741964042 ], [ -9753449.539005365222692, 5141008.626259212382138 ], [ -9753449.840645933523774, 5141027.198350350372493 ], [ -9753447.97974050976336, 5141028.99668628256768 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753363.61711454205215, 5140992.896300278604031 ], [ -9753363.323655961081386, 5140974.919221705757082 ], [ -9753448.968675879761577, 5140973.50921028200537 ], [ -9753449.262134460732341, 5140991.486288854852319 ], [ -9753363.61711454205215, 5140992.896300278604031 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753449.262134460732341, 5140991.486288854852319 ], [ -9753448.968675879761577, 5140973.50921028200537 ], [ -9753461.888963555917144, 5140973.298298967070878 ], [ -9753462.182422136887908, 5140991.275377539917827 ], [ -9753449.262134460732341, 5140991.486288854852319 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753363.323655961081386, 5140974.919221705757082 ], [ -9753363.051446784287691, 5140958.243867472745478 ], [ -9753385.714674208313227, 5140957.86197345983237 ], [ -9753385.986883385106921, 5140974.537327692843974 ], [ -9753363.323655961081386, 5140974.919221705757082 ] ] ] ] } },
{ "type": "Feature", "id": "apsaalooke", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753392.246775219216943, 5140939.584649134427309 ], [ -9753442.729595974087715, 5140938.760565463453531 ], [ -9753443.026136120781302, 5140956.926418765448034 ], [ -9753425.861490428447723, 5140957.206615160219371 ], [ -9753426.133699605241418, 5140973.881969393230975 ], [ -9753385.986883385106921, 5140974.537327692843974 ], [ -9753385.714674208313227, 5140957.86197345983237 ], [ -9753392.54331536591053, 5140957.750502436421812 ], [ -9753392.246775219216943, 5140939.584649134427309 ] ] ] ] } },
{ "type": "Feature", "id": "americas", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753368.157615503296256, 5140924.188315376639366 ], [ -9753434.284022221341729, 5140923.108865153044462 ], [ -9753434.541703093796968, 5140938.894224965013564 ], [ -9753362.754906637594104, 5140940.078014170750976 ], [ -9753363.61711454205215, 5140992.896300278604031 ], [ -9753449.260732198134065, 5140991.492905299179256 ], [ -9753449.539005365222692, 5141008.626259212382138 ], [ -9753433.166030395776033, 5141008.892182605341077 ], [ -9753433.499503914266825, 5141029.234067210927606 ], [ -9753363.973622489720583, 5141030.333437904715538 ], [ -9753364.08158372156322, 5141034.230408727191389 ], [ -9753343.803741354495287, 5141034.615574449300766 ], [ -9753341.311492560431361, 5140899.411077931523323 ], [ -9753361.521346857771277, 5140899.069936143234372 ], [ -9753361.622032342478633, 5140903.579930437728763 ], [ -9753367.813858773559332, 5140903.511129395104945 ], [ -9753367.995785279199481, 5140917.545662513934076 ], [ -9753362.633718824014068, 5140917.67948644887656 ], [ -9753362.675038000568748, 5140924.277813200838864 ], [ -9753368.157615503296256, 5140924.188315376639366 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753368.157615503296256, 5140924.188315376639366 ], [ -9753362.675038000568748, 5140924.277813200838864 ], [ -9753362.633718824014068, 5140917.67948644887656 ], [ -9753367.995785279199481, 5140917.545662513934076 ], [ -9753367.813858773559332, 5140903.511129395104945 ], [ -9753396.195996643975377, 5140903.113197189755738 ], [ -9753396.53246658295393, 5140923.725123123265803 ], [ -9753368.157615503296256, 5140924.188315376639366 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753425.861490428447723, 5140957.206615157425404 ], [ -9753448.696466702967882, 5140956.833856053650379 ], [ -9753448.968675879761577, 5140973.50921028945595 ], [ -9753426.133699605241418, 5140973.881969393230975 ], [ -9753425.861490428447723, 5140957.206615157425404 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753520.005730371922255, 5140881.840724009089172 ], [ -9753520.474368909373879, 5140902.797743668779731 ], [ -9753506.010526068508625, 5140903.121182509697974 ], [ -9753505.541887531057, 5140882.164162850007415 ], [ -9753508.794099438935518, 5140882.098321585915983 ], [ -9753516.444335738196969, 5140881.947530623525381 ], [ -9753520.005730371922255, 5140881.840724009089172 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753542.073248144239187, 5140936.946244854480028 ], [ -9753519.347201529890299, 5140937.366078414954245 ], [ -9753519.049357049167156, 5140921.243433186784387 ], [ -9753541.775403663516045, 5140920.82359962631017 ], [ -9753542.073248144239187, 5140936.946244854480028 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753522.985100500285625, 5141045.864679183810949 ], [ -9753519.337354550138116, 5141046.023276833817363 ], [ -9753512.064519461244345, 5141046.0912472512573 ], [ -9753508.502986734732985, 5141046.158155770041049 ], [ -9753508.605609586462379, 5141054.202960781753063 ], [ -9753500.729767283424735, 5141054.257276935502887 ], [ -9753500.69565836712718, 5141037.372917204163969 ], [ -9753511.748528072610497, 5141037.271514729596674 ], [ -9753511.650369539856911, 5141025.684425763785839 ], [ -9753522.64686400257051, 5141025.591237537562847 ], [ -9753522.985100500285625, 5141045.864679183810949 ] ] ] ] } },
{ "type": "Feature", "id": "coat_check", "properties": { "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753447.983469244092703, 5140927.816000684164464 ], [ -9753447.851483073085546, 5140919.730615139938891 ], [ -9753467.841340588405728, 5140919.404299871996045 ], [ -9753467.973326759412885, 5140927.489685416221619 ], [ -9753447.983469244092703, 5140927.816000684164464 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753525.670325826853514, 5140971.709801921620965 ], [ -9753525.722984420135617, 5140979.159900818951428 ], [ -9753512.258045095950365, 5140979.404434448108077 ], [ -9753512.120521198958158, 5140971.960116586647928 ], [ -9753525.670325826853514, 5140971.709801921620965 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": "", "closed": 0, "label": "Slave Ship" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753532.843753607943654, 5140941.895370400510728 ], [ -9753549.89967299066484, 5140941.580284918658435 ], [ -9753549.876292770728469, 5140941.580716837197542 ], [ -9753549.787117436528206, 5140936.80378001742065 ], [ -9753532.734879622235894, 5140937.122109328396618 ], [ -9753532.843753607943654, 5140941.895370400510728 ] ] ] ] } }
]
}

View File

@ -0,0 +1,16 @@
{
"type": "FeatureCollection",
"name": "main_level_flows",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" } },
"features": [
{ "type": "Feature", "properties": { "exhibition": "birds" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753513.527798123657703, 5141015.752363338135183 ], [ -9753597.683908846229315, 5141014.163532015867531 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "animals" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753512.605190455913544, 5140908.696684377267957 ], [ -9753595.443199012428522, 5140907.166365803219378 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "africa" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753522.492185583338141, 5140963.637608036398888 ], [ -9753590.270998941734433, 5140962.385484381578863 ], [ -9753589.946512931957841, 5140944.820704211480916 ], [ -9753522.380848314613104, 5140946.068890223279595 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "americas" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753456.915628736838698, 5140995.950301787815988 ], [ -9753428.877633498981595, 5140996.46754302084446 ], [ -9753429.200153632089496, 5141017.242752060294151 ], [ -9753348.278336571529508, 5141018.73558705393225 ], [ -9753346.211058000102639, 5140906.675018299371004 ], [ -9753356.580225041136146, 5140906.483729274943471 ], [ -9753357.047235475853086, 5140931.798873298801482 ], [ -9753441.02470457367599, 5140930.230001994408667 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "apsaalooke" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753455.138466631993651, 5140947.720013721846044 ], [ -9753416.922958390787244, 5140948.481184924021363 ], [ -9753417.313108863309026, 5140969.600453749299049 ], [ -9753390.297389686107635, 5140970.099533319473267 ], [ -9753390.1423813495785, 5140961.70876367483288 ], [ -9753406.005546852946281, 5140961.415712739340961 ], [ -9753405.545657632872462, 5140935.290031906217337 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "nature_walk" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753513.479440463706851, 5140999.179808603599668 ], [ -9753602.656095784157515, 5140997.528423689305782 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "mammals" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753615.307627132162452, 5140909.678923790343106 ], [ -9753616.619718290865421, 5140980.533332031220198 ], [ -9753529.368393823504448, 5140982.149063419550657 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "mammals" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753617.383617104962468, 5141021.784732975997031 ], [ -9753616.700627785176039, 5140984.902536322362721 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "animals" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753608.016991978511214, 5140921.309949970804155 ], [ -9753544.228961018845439, 5140922.491185034625232 ], [ -9753544.436671322211623, 5140933.707776569761336 ], [ -9753607.353623179718852, 5140932.542672258801758 ] ] ] } }
]
}

View File

@ -0,0 +1,17 @@
{
"type": "FeatureCollection",
"name": "main_level_labels",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" } },
"features": [
{ "type": "Feature", "id": "birds", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753555.605853484943509, 5141014.957947677001357 ] } },
{ "type": "Feature", "id": "africa", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753589.946512931957841, 5140944.820704211480916 ] } },
{ "type": "Feature", "id": "animals", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753562.151131944730878, 5140907.781388840638101 ] } },
{ "type": "Feature", "id": "americas", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753389.861257903277874, 5141017.968470812775195 ] } },
{ "type": "Feature", "id": "apsaalooke", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753437.933724680915475, 5140948.062695389613509 ] } },
{ "type": "Feature", "id": "fm_store", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753419.202562866732478, 5140912.928526611067355 ] } },
{ "type": "Feature", "id": "nature_walk", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753558.06776812300086, 5140998.354116146452725 ] } },
{ "type": "Feature", "id": "maximo", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753483.036691509187222, 5141011.125253015197814 ] } },
{ "type": "Feature", "id": "messages_wilderness", "properties": { }, "geometry": null },
{ "type": "Feature", "id": "mammals", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753597.070161698386073, 5140980.895353266038001 ] } }
]
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,141 @@
{
"type": "FeatureCollection",
"name": "main_level_pictograms",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"properties": {
"id": "bird"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753567.089020148,
5141026.714857465
]
},
"id": "bird"
},
{
"type": "Feature",
"id": "maximo",
"properties": {
"id": "maximo",
"label": "Máximo\nthe\nTitanosaur"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753489.238221748,
5140999.8948999485
]
}
},
{
"type": "Feature",
"properties": {
"id": "elephant"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753475.010555338,
5140976.963249381
]
},
"id": "elephant"
},
{
"type": "Feature",
"properties": {
"id": "totems"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753475.68009258,
5140945.494998966
]
},
"id": "totems"
},
{
"type": "Feature",
"properties": {
"id": "mask"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753428.877633499,
5140996.467543021
]
},
"id": "mask"
},
{
"type": "Feature",
"properties": {
"id": "pawnee_lodge",
"label": "Pawnee\nLodge"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753383.931545118,
5140948.93249759
]
},
"id": "pawnee_lodge"
},
{
"type": "Feature",
"properties": {
"id": "lion",
"label": "Tsavo\nLions"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753626.20118901,
5140971.974732949
]
},
"id": "lion"
},
{
"type": "Feature",
"properties": {
"id": "south_entrance"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753482.198635027,
5140869.655059936
]
},
"id": "south_entrance"
},
{
"type": "Feature",
"properties": {
"id": "north_entrance"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753485.796646956,
5141058.293685325
]
},
"id": "north_entrance"
}
]
}

View File

@ -0,0 +1,2 @@
body,html{height:100%;margin:0}body{font:10pt sans-serif}.ol-zoom button{font:20pt sans-serif!important}.map{width:100%;height:100%}.ol-control{background:none!important}.layer-switcher button{display:none!important}.layer-switcher ul,.ol-zoom{display:flex;flex-direction:column}.layer-switcher{right:10px!important}.layer-switcher,.ol-zoom{bottom:.5em!important;top:auto!important}.layer-switcher ul{list-style:none;margin:0!important;padding:0!important}.layer-switcher label,.ol-zoom button{margin:0!important}.layer-switcher li label,.ol-control button{background:#f0f3f3!important;color:#000!important;text-align:center!important;border:1px solid #3d57cc!important;min-width:40px;height:40px!important;border-radius:0!important;padding:5px}.layer-switcher li input[type=checkbox]{display:none}.layer-switcher li input[type=checkbox]:checked+label{background:#3d57cc!important;color:#fff!important;font-weight:700}.layer-switcher li label{margin:5px;display:flex;justify-content:center;align-items:center}#logo{width:50px;position:absolute;left:5px;top:5px}#logo img{width:100%}#compass{position:absolute;top:10px;right:10px}#compass img{width:25px}#closed{display:flex;position:absolute;align-items:center;justify-content:center;bottom:1.5em;width:100%}#closed-content{background-color:#fff;padding:10px;white-space:nowrap;z-index:999;display:none}.ol-attribution{display:flex;position:absolute;align-items:center;justify-content:center;bottom:.5em;width:100%}.ol-attribution ul{text-align:center}@media (min-width:568px){#logo{width:70px}.layer-switcher ul,.ol-zoom{flex-direction:row-reverse}.layer-switcher li label,.ol-control button{padding:10px}}#closed img,#closed p,#compass,#logo{z-index:1}div.ol-rotate{display:none}#tfm-sidebar{position:fixed;z-index:999;background:#fff;padding:0 30px;overflow-y:auto;border:0 solid #6a6a71}#tfm-sidebar button{font:700 14px Graphik,sans-serif;color:#fff;padding:15px;margin:10px 0;border:0}#tfm-sidebar::-webkit-scrollbar{-webkit-appearance:none;width:7px}#tfm-sidebar::-webkit-scrollbar-thumb{border-radius:4px;background-color:rgba(0,0,0,.5);box-shadow:0 0 1px hsla(0,0%,100%,.5)}#tfm-sidebar button,#tfm-sidebar img{width:100%;box-sizing:border-box;cursor:pointer}#tfm-sidebar.closed{visibility:hidden}#tfm-sidebar.open{visibility:visible}#tfm-sidebar #sidebar-content{margin-bottom:5em;font:12pt Graphik,sans-serif}@media only screen and (min-width:501px){#tfm-sidebar{transition:width .5s}#tfm-sidebar.open{width:40vw;max-width:300px;border-left-width:4px;right:0;height:100vh}#tfm-sidebar.closed{width:0}}@media only screen and (max-width:500px){#tfm-sidebar{transition:height .5s;background:linear-gradient(0deg,#000,#fff 2em)}#tfm-sidebar.open{width:100vw;max-width:calc(100% - 60px);bottom:0;height:70vh;border-top-width:4px}#tfm-sidebar.closed{height:0}}#tfm-sidebar #sidebar-close-button{font-size:20pt;font-weight:700;display:inline-block;cursor:pointer;position:absolute;right:10px;top:10px;color:#000}
/*# sourceMappingURL=openlayers_indoor_map.5e860280.css.map */

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,2 @@
.ol-box{box-sizing:border-box;border-radius:2px;border:2px solid #00f}.ol-mouse-position{top:8px;right:8px;position:absolute}.ol-scale-line{background:rgba(0,60,136,.3);border-radius:4px;bottom:8px;left:8px;padding:2px;position:absolute}.ol-scale-line-inner{border:1px solid #eee;border-top:none;color:#eee;font-size:10px;text-align:center;margin:1px;will-change:contents,width;transition:all .25s}.ol-scale-bar{position:absolute;bottom:8px;left:8px}.ol-scale-step-marker{width:1px;height:15px;background-color:#000;float:right;z-Index:10}.ol-scale-step-text{bottom:-5px;font-size:12px;z-Index:11}.ol-scale-step-text,.ol-scale-text{position:absolute;color:#000;text-shadow:-2px 0 #fff,0 2px #fff,2px 0 #fff,0 -2px #fff}.ol-scale-text{font-size:14px;text-align:center;bottom:25px}.ol-scale-singlebar{position:relative;height:10px;z-Index:9;box-sizing:border-box;border:1px solid #000}.ol-unsupported{display:none}.ol-unselectable,.ol-viewport{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.ol-selectable{-webkit-touch-callout:default;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ol-grabbing{cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.ol-grab{cursor:move;cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.ol-control{position:absolute;background-color:hsla(0,0%,100%,.4);border-radius:4px;padding:2px}.ol-control:hover{background-color:hsla(0,0%,100%,.6)}.ol-zoom{top:.5em;left:.5em}.ol-rotate{top:.5em;right:.5em;transition:opacity .25s linear,visibility 0s linear}.ol-rotate.ol-hidden{opacity:0;visibility:hidden;transition:opacity .25s linear,visibility 0s linear .25s}.ol-zoom-extent{top:4.643em;left:.5em}.ol-full-screen{right:.5em;top:.5em}.ol-control button{display:block;margin:1px;padding:0;color:#fff;font-size:1.14em;font-weight:700;text-decoration:none;text-align:center;height:1.375em;width:1.375em;line-height:.4em;background-color:rgba(0,60,136,.5);border:none;border-radius:2px}.ol-control button::-moz-focus-inner{border:none;padding:0}.ol-zoom-extent button{line-height:1.4em}.ol-compass{display:block;font-weight:400;font-size:1.2em;will-change:transform}.ol-touch .ol-control button{font-size:1.5em}.ol-touch .ol-zoom-extent{top:5.5em}.ol-control button:focus,.ol-control button:hover{text-decoration:none;background-color:rgba(0,60,136,.7)}.ol-zoom .ol-zoom-in{border-radius:2px 2px 0 0}.ol-zoom .ol-zoom-out{border-radius:0 0 2px 2px}.ol-attribution{text-align:right;bottom:.5em;right:.5em;max-width:calc(100% - 1.3em)}.ol-attribution ul{margin:0;padding:0 .5em;color:#000;text-shadow:0 0 2px #fff}.ol-attribution li{display:inline;list-style:none}.ol-attribution li:not(:last-child):after{content:" "}.ol-attribution img{max-height:2em;max-width:inherit;vertical-align:middle}.ol-attribution button,.ol-attribution ul{display:inline-block}.ol-attribution.ol-collapsed ul{display:none}.ol-attribution:not(.ol-collapsed){background:hsla(0,0%,100%,.8)}.ol-attribution.ol-uncollapsible{bottom:0;right:0;border-radius:4px 0 0}.ol-attribution.ol-uncollapsible img{margin-top:-.2em;max-height:1.6em}.ol-attribution.ol-uncollapsible button{display:none}.ol-zoomslider{top:4.5em;left:.5em;height:200px}.ol-zoomslider button{position:relative;height:10px}.ol-touch .ol-zoomslider{top:5.5em}.ol-overviewmap{left:.5em;bottom:.5em}.ol-overviewmap.ol-uncollapsible{bottom:0;left:0;border-radius:0 4px 0 0}.ol-overviewmap .ol-overviewmap-map,.ol-overviewmap button{display:inline-block}.ol-overviewmap .ol-overviewmap-map{border:1px solid #7b98bc;height:150px;margin:2px;width:150px}.ol-overviewmap:not(.ol-collapsed) button{bottom:1px;left:2px;position:absolute}.ol-overviewmap.ol-collapsed .ol-overviewmap-map,.ol-overviewmap.ol-uncollapsible button{display:none}.ol-overviewmap:not(.ol-collapsed){background:hsla(0,0%,100%,.8)}.ol-overviewmap-box{border:2px dotted rgba(0,60,136,.7)}.ol-overviewmap .ol-overviewmap-box:hover{cursor:move}
/*# sourceMappingURL=openlayers_indoor_map.bb28b584.css.map */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 16.769531 9.367188 L 13.90625 9.367188 L 13.09375 7.011719 L 15.253906 7.011719 L 15.253906 4.664062 L 4.726562 4.664062 L 4.726562 7.011719 L 6.832031 7.011719 L 6.019531 9.367188 L 3.15625 9.367188 L 3.15625 11.714844 L 5.261719 11.714844 L 3.851562 15.789062 L 4.484375 16 L 5.9375 11.714844 L 13.988281 11.714844 L 15.441406 15.988281 L 16.074219 15.777344 L 14.738281 11.714844 L 16.84375 11.714844 Z M 7.535156 7.011719 L 12.390625 7.011719 L 13.199219 9.367188 L 6.726562 9.367188 Z M 7.535156 7.011719 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 941 B

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;" d="M 0.0273438 0.0078125 L 19.984375 0.0078125 L 19.984375 19.992188 L 0.0273438 19.992188 Z M 0.0273438 0.0078125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 13.007812 3.15625 C 12.0625 3.15625 11.296875 3.925781 11.296875 4.871094 L 11.296875 12.441406 L 12.621094 12.441406 L 12.621094 16.722656 L 14.617188 16.722656 L 14.617188 4.742188 C 14.59375 3.867188 13.882812 3.167969 13.007812 3.15625 Z M 13.007812 3.15625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 9.480469 7.238281 L 9.480469 7.574219 L 8.816406 7.574219 L 8.816406 3.15625 L 8.15625 3.15625 L 8.15625 7.574219 L 7.480469 7.574219 L 7.480469 3.15625 L 6.863281 3.15625 L 6.863281 7.574219 L 6.152344 7.574219 L 6.152344 3.148438 L 5.496094 3.148438 L 5.496094 7.574219 C 5.515625 8.371094 6.082031 9.050781 6.863281 9.207031 L 6.863281 16.746094 L 8.859375 16.746094 L 8.859375 9.207031 C 9.625 9.035156 10.175781 8.359375 10.191406 7.574219 L 10.191406 3.15625 L 9.523438 3.15625 Z M 9.480469 7.238281 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 7.683594 3.789062 C 7.683594 4.546875 7.070312 5.15625 6.316406 5.15625 C 5.558594 5.15625 4.949219 4.546875 4.949219 3.789062 C 4.949219 3.035156 5.558594 2.421875 6.316406 2.421875 C 7.070312 2.421875 7.683594 3.035156 7.683594 3.789062 Z M 7.683594 3.789062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 14.84375 3.789062 C 14.84375 4.546875 14.230469 5.15625 13.472656 5.15625 C 12.71875 5.15625 12.105469 4.546875 12.105469 3.789062 C 12.105469 3.035156 12.71875 2.421875 13.472656 2.421875 C 14.230469 2.421875 14.84375 3.035156 14.84375 3.789062 Z M 14.84375 3.789062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 7.894531 6 L 4.738281 6 C 4.105469 6 3.683594 6.421875 3.683594 7.050781 L 3.683594 13.261719 L 5.050781 13.261719 L 5.050781 17.472656 L 5.683594 17.472656 L 5.683594 13.261719 L 6.84375 13.261719 L 6.84375 17.472656 L 7.472656 17.472656 L 7.472656 13.261719 L 8.84375 13.261719 L 8.84375 7.050781 C 8.84375 6.527344 8.421875 6.105469 7.894531 6 Z M 7.894531 6 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 16.105469 13.261719 L 15.050781 7.261719 C 14.949219 6.527344 14.316406 6 13.472656 6 C 12.738281 6 12.105469 6.527344 12 7.261719 L 10.949219 13.261719 L 12.316406 13.261719 L 12.316406 17.472656 L 12.949219 17.472656 L 12.949219 13.261719 L 14.105469 13.261719 L 14.105469 17.472656 L 14.738281 17.472656 L 14.738281 13.261719 Z M 16.105469 13.261719 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;" d="M 0.527344 0.523438 L 19.480469 0.523438 L 19.480469 19.476562 L 0.527344 19.476562 Z M 0.527344 0.523438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 18.957031 1.039062 L 18.957031 18.953125 L 1.042969 18.953125 L 1.042969 1.039062 L 18.957031 1.039062 M 20.027344 0 L 0.00390625 0 L 0.00390625 20.023438 L 20.027344 20.023438 Z M 20.027344 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 11.125 4.460938 C 11.125 5.113281 10.59375 5.644531 9.9375 5.644531 C 9.285156 5.644531 8.753906 5.113281 8.753906 4.460938 C 8.753906 3.804688 9.285156 3.273438 9.9375 3.273438 C 10.59375 3.273438 11.125 3.804688 11.125 4.460938 Z M 11.125 4.460938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 11.285156 7.578125 C 11.15625 6.9375 10.59375 6.476562 9.941406 6.476562 C 9.289062 6.476562 8.726562 6.9375 8.597656 7.578125 L 7.613281 12.96875 L 8.84375 12.96875 L 8.84375 16.820312 L 9.4375 16.820312 L 9.4375 12.96875 L 10.445312 12.96875 L 10.445312 16.820312 L 11.039062 16.820312 L 11.039062 12.96875 L 12.273438 12.96875 Z M 11.285156 7.578125 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;" d="M 0.523438 0.523438 L 19.476562 0.523438 L 19.476562 19.476562 L 0.523438 19.476562 Z M 0.523438 0.523438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 18.953125 1.039062 L 18.953125 18.953125 L 1.039062 18.953125 L 1.039062 1.039062 L 18.953125 1.039062 M 20.023438 0 L 0 0 L 0 20.023438 L 20.023438 20.023438 Z M 20.023438 0 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 11.136719 4.460938 C 11.136719 5.113281 10.605469 5.644531 9.949219 5.644531 C 9.296875 5.644531 8.765625 5.113281 8.765625 4.460938 C 8.765625 3.804688 9.296875 3.273438 9.949219 3.273438 C 10.605469 3.273438 11.136719 3.804688 11.136719 4.460938 Z M 11.136719 4.460938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 12.320312 7.355469 C 12.320312 7.117188 12.226562 6.886719 12.058594 6.71875 C 11.886719 6.550781 11.660156 6.460938 11.421875 6.460938 L 8.515625 6.460938 C 8.023438 6.460938 7.625 6.859375 7.625 7.355469 L 7.625 12.9375 L 8.855469 12.9375 L 8.855469 16.789062 L 9.449219 16.789062 L 9.449219 12.9375 L 10.457031 12.9375 L 10.457031 16.789062 L 11.050781 16.789062 L 11.050781 12.9375 L 12.320312 12.9375 Z M 12.320312 7.355469 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<path style="fill:none;stroke-width:0.95;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(62.745098%,65.882353%,69.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.301758 19.9 L 14.399414 19.9 L 14.399414 14.898047 " transform="matrix(0.8,0,0,0.769231,0,0.192308)"/>
<path style="fill:none;stroke-width:0.95;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(62.745098%,65.882353%,69.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.399414 19.9 L 19.599609 14.7 " transform="matrix(0.8,0,0,0.769231,0,0.192308)"/>
<path style="fill:none;stroke-width:0.95;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(62.745098%,65.882353%,69.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.902344 5.6 L 16.298828 5.6 L 16.298828 9.200391 L 12.700195 9.200391 L 12.700195 12.800781 L 9.101562 12.800781 L 9.101562 16.497656 L 5.498047 16.497656 L 5.498047 20.098047 " transform="matrix(0.8,0,0,0.769231,0,0.192308)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<path style="fill:none;stroke-width:0.95;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(62.745098%,65.882353%,69.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 14.598203 14.59918 L 19.79959 14.59918 L 19.701543 19.697617 " transform="matrix(0.796813,0,0,0.796813,0.0398406,0)"/>
<path style="fill:none;stroke-width:0.95;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(62.745098%,65.882353%,69.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 19.299551 15.099219 L 14.402109 20.001563 " transform="matrix(0.796813,0,0,0.796813,0.0398406,0)"/>
<path style="fill:none;stroke-width:0.95;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(62.745098%,65.882353%,69.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 20.098633 5.299434 L 16.402266 5.299434 L 16.402266 9.000703 L 12.700996 9.000703 L 12.700996 12.701973 L 8.999727 12.701973 L 8.999727 16.39834 L 5.298457 16.39834 L 5.20041 20.099609 " transform="matrix(0.796813,0,0,0.796813,0.0398406,0)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px"
viewBox="0 0 500 500" style="enable-background:new 0 0 500 500;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#A0A8B2;stroke-width:19;stroke-miterlimit:200;}
</style>
<g id="surface1">
<path class="st0" d="M400,311l-98,96"/>
<path class="st0" d="M192,90l-98,96"/>
<path class="st0" d="M194,189H92V87"/>
<path class="st0" d="M300,308.1H402v102"/>
<path class="st0" d="M418,115H344L342,189h-74v74H194v74h-74v74"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 728 B

7
docs/store.9a21b119.svg Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 12.605469 6.699219 L 12.605469 4.710938 C 12.605469 3.699219 11.785156 2.878906 10.773438 2.878906 L 9.183594 2.878906 C 8.695312 2.878906 8.226562 3.070312 7.882812 3.414062 C 7.539062 3.757812 7.34375 4.226562 7.34375 4.710938 L 7.34375 6.699219 L 5.28125 6.699219 L 5.28125 16.433594 L 14.675781 16.433594 L 14.675781 6.699219 Z M 8.015625 4.710938 C 8.015625 4.066406 8.539062 3.542969 9.183594 3.542969 L 10.773438 3.542969 C 11.417969 3.542969 11.941406 4.066406 11.941406 4.710938 L 11.941406 6.699219 L 8.015625 6.699219 Z M 8.015625 4.710938 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 982 B

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 12.261719 5.050781 L 3.84375 14.359375 L 4.335938 14.800781 L 5.328125 13.746094 L 10.96875 13.746094 C 11.574219 13.742188 12.085938 13.292969 12.167969 12.695312 L 12.167969 6.136719 L 12.726562 5.503906 C 13.675781 4.453125 15.027344 3.851562 16.441406 3.851562 L 16.441406 3.15625 C 14.84375 3.175781 13.328125 3.863281 12.261719 5.050781 Z M 12.261719 5.050781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 9.304688 6.367188 C 9.304688 7.101562 8.710938 7.695312 7.980469 7.695312 C 7.246094 7.695312 6.652344 7.101562 6.652344 6.367188 C 6.652344 5.636719 7.246094 5.042969 7.980469 5.042969 C 8.710938 5.042969 9.304688 5.636719 9.304688 6.367188 Z M 9.304688 6.367188 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 8.199219 15.757812 C 8.199219 16.402344 7.675781 16.925781 7.03125 16.925781 C 6.386719 16.925781 5.863281 16.402344 5.863281 15.757812 C 5.863281 15.113281 6.386719 14.589844 7.03125 14.589844 C 7.675781 14.589844 8.199219 15.113281 8.199219 15.757812 Z M 8.199219 15.757812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 12.9375 15.757812 C 12.9375 16.402344 12.414062 16.925781 11.769531 16.925781 C 11.125 16.925781 10.601562 16.402344 10.601562 15.757812 C 10.601562 15.113281 11.125 14.589844 11.769531 14.589844 C 12.414062 14.589844 12.9375 15.113281 12.9375 15.757812 Z M 12.9375 15.757812 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="68.9" height="62.6"
viewBox="0 0 68.9 62.6" style="enable-background:new 0 0 68.9 62.6;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-miterlimit:10;}
.st1{fill:#020202;stroke:#000000;stroke-miterlimit:10;}
</style>
<g>
<path class="st0" d="M18.2,27.8c2.5-1.7,3.8-3.9,5.2-4.7c0.9-0.5,4-0.2,5-0.1c1,0.1,3.2-0.4,4.1,0.1c1.3,0.7,2.7,3.2,3.2,4.6"/>
<path class="st0" d="M37.8,40.8c-1.2-0.1-0.9,0.8-0.9,2.4c0,0.6-1.2,2-2.3,1.1c-0.5-0.4-0.9-1.2-1.7-1.8c-1-0.7-2.1-1.2-3.2-1.7
c-1.7-0.7-3.1-0.6-5.4,0c-0.5,0.1-2.4,0.8-3.1,1.3c-0.8,0.7-0.5,1.3-0.9,1.8c-0.9,1.2-2.5,0.5-2.9-0.1c-0.8-1.1,0.4-4.6,0.5-6
c0.1-1.1-0.3-2.7-0.5-4.6c-0.2-1.8,0.6-5.5,1.1-7.2c0.4-1.3,1.2-3.5,2-4.6c1.3-1.6,3.6-2.8,5.1-4.2c1.1-1,3.6-1.6,4.8-1.7
c2.7-0.1,5.5,0.1,8.2,0.4c3,0.5,3.8,0.9,5.9,3.2c1.7,1.9,4.4,2.9,5.4,7.6c0.1,0.5,0.1,3.5,0.4,3.9c1.8,2.7,1.6,6.6,1.3,8.1
c-0.2,0.9-1.3,1.4-1.6,0.6c-0.8-1.7-1.2-2.7-2-0.4c-0.1,0.4,0.4,0.2-0.7,2.4c-0.4,0.8-1.8,0.6-1.9,0.5c-1.2-3.7-1.7-1.6-1.8-3.1
c0-0.7-0.3,1.9-0.9,3.3c0,0-1.2,1.5-2.4,0.3C39.9,42.2,38.8,40.9,37.8,40.8z"/>
<ellipse class="st0" cx="25.6" cy="33" rx="5" ry="5.2"/>
<ellipse class="st0" cx="25.6" cy="34.9" rx="1.9" ry="1.7"/>
<path class="st0" d="M24.2,33.6l0.5-1.8c0.2-0.3,0.6-0.4,0.9-0.4c0.4,0,0.7,0.2,1,0.5l0.4,1.8c-0.5-0.2-1-0.3-1.5-0.3
C25.1,33.4,24.6,33.4,24.2,33.6z"/>
<circle class="st1" cx="25.6" cy="35.2" r="0.7"/>
<path class="st0" d="M20.8,33.5c-1.2-0.8-1.1-3-1-4.1c0.1-0.9,0.8-2.4,1.5-2.8c0.6-0.4,3.5-2.3,5.6-1.8c1.7,0.4,1.9,0.7,3.3,1.5
c0.6,0.3,1,0.8,1.3,1.3c0.6,1,0.8,3.3,0.7,4.1c-0.1,1.1-0.9,2.1-2,2.4"/>
<path class="st0" d="M20.1,37c1.3,1.1,2.8,1.9,4.4,2.4c4,1,5.7-3.6,7.9-3.5"/>
<path class="st0" d="M36.9,41.6c-0.1-0.9,0.1-2.9-0.7-4.4c-0.3-0.7,1.9-3.7,0.4-5.5"/>
<path class="st0" d="M40.6,21.3c1.3,0.4,4.4-0.2,5.6,10c0.2,1.9,3.3,2.3,1.8,8.4"/>
<path class="st0" d="M40.2,27.3c0.6,0.5,1.8,1.6,2.3,5c0.2,1.5,2,2.5,1.1,6.7"/>
<path class="st0" d="M19.5,23.9c1-1.3,3.6-2.5,4.7-3.8c0.8-0.9,4.8-0.2,6.1-0.1c1.3,0.1,3.9-0.4,4.9,0.1c1.5,0.7,3.2,3.2,3.8,4.6"
/>
<path class="st0" d="M26.5,16.9c0.9-0.3,4-0.1,5.1-0.1s3.3-0.2,4.2,0.1c1.3,0.5,2.7,2,3.2,2.9"/>
<path d="M41.4,43.1c-0.2-0.1-0.5-0.1-0.7,0c-0.3,0.5,0.2,2.5,0.2,2.5S40.4,43.6,41.4,43.1z"/>
<path d="M42,43.1c-0.2-0.1-0.5-0.1-0.7,0c-0.3,0.5,0.2,2.5,0.2,2.5S41.1,43.6,42,43.1z"/>
<path d="M42.2,42.8c0,0-0.6,0-0.6,0.2c-0.1,0.6,1.4,2.3,1.4,2.3S41.6,43.5,42.2,42.8z"/>
<path d="M42.8,42.6c0,0-0.6,0-0.6,0.2c-0.1,0.6,1.4,2.3,1.4,2.3S42.2,43.3,42.8,42.6z"/>
<path d="M46.2,42.2c-0.2-0.1-0.5-0.1-0.7,0c-0.3,0.5,0,2.5,0,2.5S45.2,42.7,46.2,42.2z"/>
<path d="M46.8,42.2c-0.2-0.1-0.5-0.1-0.7,0c-0.3,0.5,0,2.5,0,2.5S45.9,42.7,46.8,42.2z"/>
<path d="M47,41.9c0,0-0.6,0-0.7,0.1c-0.1,0.6,1.3,2.4,1.3,2.4S46.4,42.6,47,41.9z"/>
<path d="M47.6,41.8c0,0-0.6,0-0.7,0.1c-0.1,0.6,1.3,2.4,1.3,2.4S47,42.5,47.6,41.8z"/>
<path d="M50.3,39.9c-0.2-0.1-0.4-0.1-0.5,0c-0.2,0.4,0.1,2,0.1,2S49.6,40.4,50.3,39.9z"/>
<path d="M50.8,39.9c-0.2-0.1-0.4-0.1-0.5,0c-0.2,0.4,0.1,2,0.1,2S50.1,40.4,50.8,39.9z"/>
<path d="M51,39.7c-0.2,0-0.4,0-0.5,0.1c0,0.4,1.1,1.8,1.1,1.8S50.5,40.3,51,39.7z"/>
<path d="M51.5,39.6c-0.2,0-0.4,0-0.5,0.1c0,0.4,1.1,1.8,1.1,1.8S51,40.1,51.5,39.6z"/>
<path d="M35.2,44.8c-0.2-0.1-0.5-0.1-0.7,0c-0.3,0.5,0.3,2.5,0.3,2.5S34.4,45.4,35.2,44.8z"/>
<path d="M35.9,44.8c-0.2-0.1-0.5-0.1-0.7,0c-0.3,0.5,0.3,2.5,0.3,2.5S35,45.4,35.9,44.8z"/>
<path d="M36.1,44.5c0,0-0.6,0-0.6,0.2c0,0.6,1.5,2.2,1.5,2.2S35.5,45.2,36.1,44.5z"/>
<path d="M36.7,44.3c0,0-0.6,0-0.6,0.2c0,0.6,1.5,2.2,1.5,2.2S36.1,45.1,36.7,44.3z"/>
<path d="M18.8,44.8c0.2-0.1,0.4-0.1,0.6,0c0.3,0.6-0.2,2.5-0.2,2.5S19.6,45.4,18.8,44.8z"/>
<path d="M18.2,44.8c0.2-0.1,0.4-0.1,0.6,0c0.3,0.5-0.1,2.5-0.1,2.5S19,45.4,18.2,44.8z"/>
<path d="M18.1,44.5c0.2,0,0.4,0,0.6,0.2c0,0.6-1.2,2.3-1.2,2.3S18.6,45.2,18.1,44.5z"/>
<path d="M17.5,44.4c0.2,0,0.4,0,0.6,0.2c0,0.6-1.2,2.3-1.2,2.3S18.1,45.1,17.5,44.4z"/>
<path class="st0" d="M29,30.2c0,0-1.7,0.9-2,1.7c-0.4,1,1.5,3.4,1.5,4.6"/>
<path class="st0" d="M22.2,30.2c0,0,1.7,0.9,2,1.7c0.4,1-1.5,3.4-1.5,4.6"/>
</g>
<g>
<g>
<path d="M4.5,3.4h6.3v2.2H7.3v1.2h2.8v2H7.3v1.3H11v2.2H4.5V3.4z"/>
<path d="M14.3,7.7l-2.5-4.3H15l1.2,2.5l1.2-2.5h2.9L18,7.6l2.7,4.6h-3.2L16,9.4l-1.5,2.9h-2.9L14.3,7.7z"/>
<path d="M23.8,3.4h3.6l2.8,8.8h-3l-0.4-1.5H24l-0.4,1.5H21L23.8,3.4z M24.5,8.9h1.7l-0.9-3.2L24.5,8.9z"/>
<path d="M31.1,3.4h3.6l1.5,4.3l1.5-4.3h3.6v8.8h-2.8V7.1l-2,5.2h-0.9l-2-5.2v5.2h-2.5V3.4z"/>
<path d="M42.9,3.4h3.5c2.5,0,3.6,1.1,3.6,3v0c0,1.8-1.2,2.9-3.5,2.9h-0.9v2.9h-2.8V3.4z M46.3,7.5c0.7,0,1.1-0.3,1.1-1v0
c0-0.7-0.4-1-1.1-1h-0.6v2H46.3z"/>
<path d="M51.1,3.4h2.8v6.7h3.2v2.2h-6V3.4z"/>
<path d="M58.3,3.4h6.3v2.2h-3.5v1.2h2.8v2h-2.8v1.3h3.7v2.2h-6.5V3.4z"/>
</g>
</g>
<g>
<g>
<path d="M2.5,53.5H0.7v-1.7h5.9v1.7H4.8v5.4H2.5V53.5z"/>
<path d="M8.5,51.8h2.9l2.2,7.1h-2.4l-0.3-1.2H8.7l-0.3,1.2H6.2L8.5,51.8z M9.1,56.2h1.4l-0.7-2.6L9.1,56.2z"/>
<path d="M14.4,51.8h2.9c2,0,3,0.8,3,2.3v0c0,1-0.5,1.5-1.2,1.9l1.6,2.9h-2.4L17,56.5h-0.4v2.4h-2.3V51.8z M17.2,55
c0.6,0,0.9-0.3,0.9-0.8v0c0-0.5-0.3-0.7-0.9-0.7h-0.5V55H17.2z"/>
<path d="M21.5,51.8h2.7c2.6,0,3.9,1.2,3.9,3.5v0.1c0,2.3-1.3,3.6-3.9,3.6h-2.7V51.8z M24.2,57.2c1.1,0,1.6-0.5,1.6-1.8v-0.1
c0-1.3-0.5-1.8-1.6-1.8h-0.4v3.7H24.2z"/>
<path d="M29,51.8h2.3v7.1H29V51.8z"/>
<path d="M32.3,55.4L32.3,55.4c0-2.3,1.6-3.7,3.8-3.7c1.7,0,3.3,0.8,3.4,2.7h-2.2c-0.1-0.6-0.4-0.9-1.1-0.9c-0.9,0-1.4,0.7-1.4,1.9
v0.1c0,1,0.4,1.9,1.5,1.9c0.9,0,1.2-0.4,1.3-0.9h-1.2v-1.5h3.4v0.9c0,1.8-1.2,3.2-3.6,3.2C33.6,59,32.3,57.5,32.3,55.4z"/>
<path d="M40.6,51.8h2.9c2,0,3,0.8,3,2.3v0c0,1-0.5,1.5-1.2,1.9l1.6,2.9h-2.4l-1.3-2.4h-0.4v2.4h-2.3V51.8z M43.4,55
c0.6,0,0.9-0.3,0.9-0.8v0c0-0.5-0.3-0.7-0.9-0.7h-0.5V55H43.4z"/>
<path d="M49.4,51.8h2.9l2.2,7.1h-2.4l-0.3-1.2h-2.3l-0.3,1.2h-2.1L49.4,51.8z M50,56.2h1.4l-0.7-2.6L50,56.2z"/>
<path d="M55.3,51.8H58c2.6,0,3.9,1.2,3.9,3.5v0.1c0,2.3-1.3,3.6-3.9,3.6h-2.7V51.8z M57.9,57.2c1.1,0,1.6-0.5,1.6-1.8v-0.1
c0-1.3-0.5-1.8-1.6-1.8h-0.4v3.7H57.9z"/>
<path d="M62.8,51.8h5.1v1.7h-2.8v1h2.2v1.6h-2.2v1.1h3v1.7h-5.2V51.8z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -0,0 +1,194 @@
{
"type": "FeatureCollection",
"name": "upper_level_amenities",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"properties": {
"type": "restroom_female"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753497.730140567,
5141035.237939704
]
}
},
{
"type": "Feature",
"properties": {
"type": "restroom_male"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753473.089643253,
5141035.746615496
]
}
},
{
"type": "Feature",
"properties": {
"type": "store"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753457.666214457,
5140982.0894154
]
}
},
{
"type": "Feature",
"properties": {
"type": "elevator"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753439.539570265,
5140953.43172601
]
}
},
{
"type": "Feature",
"properties": {
"type": "restroom_female"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753463.688776206,
5140879.32009448
]
}
},
{
"type": "Feature",
"properties": {
"type": "elevator"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753521.761307439,
5140951.741074014
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753603.44665459,
5141020.293263434
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753523.58235728,
5141023.322387284
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753507.951155886,
5141031.493801811
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753462.252888804,
5141032.213023931
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753521.284427516,
5140908.230195204
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753482.72305687,
5140896.61199171
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753444.659609228,
5140908.451494319
]
}
},
{
"type": "Feature",
"properties": {
"type": "stairs_down"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753365.084405726,
5140908.559183305
]
}
}
]
}

View File

@ -0,0 +1,44 @@
{
"type": "FeatureCollection",
"name": "upper_level_areas",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" } },
"features": [
{ "type": "Feature", "id": "restoring_earth", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753600.426300490275025, 5141026.099048308096826 ], [ -9753526.289699155837297, 5141027.468623659573495 ], [ -9753525.897439897060394, 5141006.235203934833407 ], [ -9753562.965740563347936, 5141005.550416259095073 ], [ -9753600.034041231498122, 5141004.865628583356738 ], [ -9753600.426300490275025, 5141026.099048308096826 ] ] ] ] } },
{ "type": "Feature", "id": "pacific", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753599.832634938880801, 5140988.417339080944657 ], [ -9753525.862954199314117, 5140989.783830795437098 ], [ -9753525.52837342210114, 5140971.672609879635274 ], [ -9753570.321762247011065, 5140970.845030345022678 ], [ -9753599.498054161667824, 5140970.306118167936802 ], [ -9753599.832634938880801, 5140988.417339080944657 ] ] ] ] } },
{ "type": "Feature", "properties": { "closed": 0, "label": "\n\n\n\nTraveling the Pacific" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753588.528955237939954, 5140970.508676610887051 ], [ -9753570.321762247011065, 5140970.845030345022678 ], [ -9753570.018031999468803, 5140954.384112830273807 ], [ -9753525.016417346894741, 5140955.215457955375314 ], [ -9753524.959296541288495, 5140952.123446678742766 ], [ -9753524.685011651366949, 5140937.276107669807971 ], [ -9753577.933835748583078, 5140936.276317338459194 ], [ -9753588.185153422877192, 5140954.02844899520278 ], [ -9753588.528955237939954, 5140970.508676610887051 ] ] ] ] } },
{ "type": "Feature", "id": "maori_house", "properties": { "closed": 1, "label": "Maori House" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753622.106315340846777, 5140958.046617023646832 ], [ -9753612.610966777428985, 5140956.94570704549551 ], [ -9753615.167930025607347, 5140934.891899031586945 ], [ -9753624.66327858902514, 5140935.992809009738266 ], [ -9753622.106315340846777, 5140958.046617023646832 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753524.685011651366949, 5140937.276107669807971 ], [ -9753518.638476978987455, 5140937.387809375301003 ], [ -9753518.21907340362668, 5140914.685038150288165 ], [ -9753524.311992568895221, 5140914.572479552589357 ], [ -9753524.056330006569624, 5140900.646576321683824 ], [ -9753604.649909298866987, 5140899.149926858022809 ], [ -9753604.516244208440185, 5140894.505842669866979 ], [ -9753624.759478118270636, 5140894.12071346770972 ], [ -9753625.4891163315624, 5140933.522002735175192 ], [ -9753609.661470718681812, 5140931.440229899249971 ], [ -9753609.982805322855711, 5140941.922618040814996 ], [ -9753599.064995041117072, 5140942.342610193416476 ], [ -9753598.770972106605768, 5140935.889577065594494 ], [ -9753524.685011651366949, 5140937.276107669807971 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753600.034041231498122, 5141004.865628583356738 ], [ -9753562.965740563347936, 5141005.550416259095073 ], [ -9753525.8942706938833, 5141006.23526403773576 ], [ -9753526.014684153720737, 5141012.584658619016409 ], [ -9753520.284074204042554, 5141012.693337101489305 ], [ -9753520.069549504667521, 5141001.06604858674109 ], [ -9753520.067451741546392, 5141000.93249100446701 ], [ -9753519.912953972816467, 5140992.538362299092114 ], [ -9753519.762144716456532, 5140984.363799926824868 ], [ -9753525.76106202416122, 5140984.253278818912804 ], [ -9753525.862954199314117, 5140989.783830795437098 ], [ -9753600.034041231498122, 5140988.417339080944657 ], [ -9753600.034041231498122, 5141004.865628583356738 ] ] ] ] } },
{ "type": "Feature", "id": "tibet", "properties": { "closed": 0, "label": "Tibet" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753520.284074204042554, 5141012.693337101489305 ], [ -9753517.587421003729105, 5141012.743154191412032 ], [ -9753517.601383600383997, 5141013.498964700847864 ], [ -9753515.144337356090546, 5141015.644353564828634 ], [ -9753509.719959897920489, 5141015.687633171677589 ], [ -9753507.432001465931535, 5141009.450503002852201 ], [ -9753506.635917929932475, 5141009.403674559667706 ], [ -9753506.153431676328182, 5140983.631807086057961 ], [ -9753507.799481427296996, 5140982.162119807675481 ], [ -9753509.680681144818664, 5140981.574244896881282 ], [ -9753511.38551838696003, 5140981.397882423363626 ], [ -9753513.234765373170376, 5140981.206581010483205 ], [ -9753515.794580223038793, 5140981.926969842985272 ], [ -9753518.71653313934803, 5140982.399889740161598 ], [ -9753519.724052993580699, 5140982.396721891127527 ], [ -9753519.762144716456532, 5140984.363799926824868 ], [ -9753519.912953972816467, 5140992.538362299092114 ], [ -9753520.067451741546392, 5141000.93249100446701 ], [ -9753520.069549504667521, 5141001.06604858674109 ], [ -9753520.284074204042554, 5141012.693337101489305 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753605.125321382656693, 5140953.912310466170311 ], [ -9753588.185153422877192, 5140954.02844899520278 ], [ -9753577.933835748583078, 5140936.276317338459194 ], [ -9753598.770972106605768, 5140935.889577065594494 ], [ -9753599.064995041117072, 5140942.342610193416476 ], [ -9753609.982805322855711, 5140941.922618040814996 ], [ -9753609.661470718681812, 5140931.440229899249971 ], [ -9753625.4891163315624, 5140933.522002735175192 ], [ -9753626.008017593994737, 5140961.550969490781426 ], [ -9753605.065464043989778, 5140961.899193222634494 ], [ -9753605.125321382656693, 5140953.912310466170311 ] ] ] ] } },
{ "type": "Feature", "id": "evolving_planet", "properties": { "closed": 0, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753443.295667003840208, 5140979.253517447970808 ], [ -9753453.785705152899027, 5140979.081549478694797 ], [ -9753453.88409654982388, 5140985.083420120179653 ], [ -9753443.394058400765061, 5140985.255388089455664 ], [ -9753443.485315039753914, 5140990.822038816288114 ], [ -9753379.976766157895327, 5140991.863163360394537 ], [ -9753379.870564680546522, 5140985.384878220036626 ], [ -9753378.699916195124388, 5140985.404069193638861 ], [ -9753378.84712827205658, 5140992.956927049905062 ], [ -9753450.111412527039647, 5140991.949805213138461 ], [ -9753450.335162358358502, 5141007.438363595865667 ], [ -9753380.972247239202261, 5141008.615672152489424 ], [ -9753380.835415130481124, 5141000.998115006834269 ], [ -9753376.384712846949697, 5140996.480843554250896 ], [ -9753373.133735209703445, 5140996.574683759361506 ], [ -9753369.311517015099525, 5140992.947708332911134 ], [ -9753369.019724095240235, 5140985.502951102331281 ], [ -9753363.309901691973209, 5140985.420200052671134 ], [ -9753363.620260395109653, 5140999.577578477561474 ], [ -9753363.979787867516279, 5140999.565291671082377 ], [ -9753363.796392820775509, 5140993.166864396072924 ], [ -9753369.075874263420701, 5140993.114591099321842 ], [ -9753380.407807890325785, 5141003.407351909205317 ], [ -9753380.523970710113645, 5141008.602965749800205 ], [ -9753374.41564616933465, 5141008.737503038719296 ], [ -9753374.417425498366356, 5141009.638021216727793 ], [ -9753443.696929035708308, 5141008.40825926233083 ], [ -9753444.14987551420927, 5141029.059470959939063 ], [ -9753370.673806523904204, 5141030.263996679335833 ], [ -9753370.470259580761194, 5141009.727321572601795 ], [ -9753363.873807575553656, 5141009.746837547980249 ], [ -9753364.08158372156322, 5141034.230408727191389 ], [ -9753343.845329541712999, 5141034.614892678335309 ], [ -9753342.424586864188313, 5140959.796443606726825 ], [ -9753362.593281954526901, 5140959.38559472002089 ], [ -9753362.943379886448383, 5140974.169955638237298 ], [ -9753443.190763749182224, 5140972.854423752054572 ], [ -9753443.295667003840208, 5140979.253517447970808 ] ] ] ] } },
{ "type": "Feature", "id": "china", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753368.527696764096618, 5140951.011873180978 ], [ -9753368.470600817352533, 5140947.529023150913417 ], [ -9753368.356865826994181, 5140940.591193994507194 ], [ -9753442.471610449254513, 5140939.376197254285216 ], [ -9753442.756066456437111, 5140956.728000421077013 ], [ -9753368.641321834176779, 5140957.94299716129899 ], [ -9753368.527696764096618, 5140951.011873180978 ] ] ] ] } },
{ "type": "Feature", "id": "plants", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753367.876117466017604, 5140916.309872021898627 ], [ -9753361.817016517743468, 5140916.407305178232491 ], [ -9753362.2135438490659, 5140941.066253186203539 ], [ -9753342.08529619127512, 5140941.389924752525985 ], [ -9753341.536207094788551, 5140911.601841323077679 ], [ -9753361.734519520774484, 5140911.277043082751334 ], [ -9753361.765333119779825, 5140913.193256355822086 ], [ -9753367.824181267991662, 5140913.095827264711261 ], [ -9753367.669344440102577, 5140903.513830307871103 ], [ -9753441.581126742064953, 5140902.319479491561651 ], [ -9753441.906073706224561, 5140922.428654245100915 ], [ -9753367.994291404262185, 5140923.623005061410367 ], [ -9753367.876117466017604, 5140916.309872021898627 ] ] ] ] } },
{ "type": "Feature", "id": "gems", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753520.436209708452225, 5140900.71384434401989 ], [ -9753506.025473244488239, 5140901.042540613561869 ], [ -9753505.594993909820914, 5140882.169420275837183 ], [ -9753520.0057303737849, 5140881.840724006295204 ], [ -9753520.436209708452225, 5140900.71384434401989 ] ] ] ] } },
{ "type": "Feature", "id": "jades", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753445.578118959441781, 5140902.073252767324448 ], [ -9753445.283580463379622, 5140883.290759664028883 ], [ -9753459.740397728979588, 5140883.064054444432259 ], [ -9753460.034936225041747, 5140901.846547547727823 ], [ -9753445.578118959441781, 5140902.073252767324448 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753361.734519520774484, 5140911.277043082751334 ], [ -9753341.536207094788551, 5140911.601841323077679 ], [ -9753341.311492564156651, 5140899.411077928729355 ], [ -9753361.521364524960518, 5140899.07122581731528 ], [ -9753361.734519520774484, 5140911.277043082751334 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753442.471610449254513, 5140939.376197254285216 ], [ -9753368.356865826994181, 5140940.591193994507194 ], [ -9753368.470600817352533, 5140947.529023150913417 ], [ -9753362.320717323571444, 5140947.647303683683276 ], [ -9753361.817016517743468, 5140916.407305178232491 ], [ -9753367.876117466017604, 5140916.309872021898627 ], [ -9753367.994291404262185, 5140923.623005061410367 ], [ -9753441.906073706224561, 5140922.428654245100915 ], [ -9753442.471610449254513, 5140939.376197254285216 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753443.190763749182224, 5140972.854423752054572 ], [ -9753362.943379886448383, 5140974.169955638237298 ], [ -9753362.593281954526901, 5140959.38559472002089 ], [ -9753362.54719447158277, 5140958.041087849996984 ], [ -9753362.377436216920614, 5140951.130160965025425 ], [ -9753368.527696764096618, 5140951.011873180978 ], [ -9753368.641321834176779, 5140957.94299716129899 ], [ -9753442.756066456437111, 5140956.728000421077013 ], [ -9753443.190763749182224, 5140972.854423752054572 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753362.593281954526901, 5140959.38559472002089 ], [ -9753342.424586864188313, 5140959.796443606726825 ], [ -9753342.398344086483121, 5140958.372772922739387 ], [ -9753362.54719447158277, 5140958.041087849996984 ], [ -9753362.593281954526901, 5140959.38559472002089 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753522.985100504010916, 5141045.86467918753624 ], [ -9753500.989227334037423, 5141046.231730219908059 ], [ -9753500.836293887346983, 5141037.067051735706627 ], [ -9753522.832167057320476, 5141036.700000703334808 ], [ -9753522.985100504010916, 5141045.86467918753624 ] ] ] ] } },
{ "type": "Feature", "id": "carl_cotton", "properties": { "closed": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753448.410219848155975, 5141047.258072830736637 ], [ -9753448.19498017989099, 5141038.127379558980465 ], [ -9753470.057296633720398, 5141037.612014777958393 ], [ -9753470.272536301985383, 5141046.742708049714565 ], [ -9753448.410219848155975, 5141047.258072830736637 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753518.905160244554281, 5140973.402544047683477 ], [ -9753513.262714231386781, 5140973.506780751980841 ], [ -9753512.899464836344123, 5140953.843696497380733 ], [ -9753518.541910849511623, 5140953.73945979308337 ], [ -9753518.570659408345819, 5140955.295650509186089 ], [ -9753518.873166980221868, 5140971.67071392852813 ], [ -9753518.905160244554281, 5140973.402544047683477 ] ] ] ] } },
{ "type": "Feature", "id": "dna_lab", "properties": { "closed": 0, "label": "DNA\nLab" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753513.262714231386781, 5140973.506780751980841 ], [ -9753506.710129925981164, 5140973.62783105392009 ], [ -9753506.346880530938506, 5140953.964746799319983 ], [ -9753512.899464836344123, 5140953.843696497380733 ], [ -9753513.262714231386781, 5140973.506780751980841 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753570.321762247011065, 5140970.845030345022678 ], [ -9753525.52837342210114, 5140971.672609879635274 ], [ -9753518.873166980221868, 5140971.67071392852813 ], [ -9753518.570659408345819, 5140955.295650509186089 ], [ -9753525.016417346894741, 5140955.215457955375314 ], [ -9753570.018031999468803, 5140954.384112830273807 ], [ -9753570.321762247011065, 5140970.845030345022678 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753473.906379094347358, 5140902.173727279528975 ], [ -9753473.919390358030796, 5140902.024578352458775 ], [ -9753473.999190103262663, 5140901.418591406196356 ], [ -9753474.121510209515691, 5140900.819737525656819 ], [ -9753474.285742048174143, 5140900.230996426194906 ], [ -9753474.491068452596664, 5140899.655297506600618 ], [ -9753474.736467780545354, 5140899.095505270175636 ], [ -9753475.02071899920702, 5140898.554405072703958 ], [ -9753475.342407759279013, 5140898.034689265303314 ], [ -9753475.699933435767889, 5140897.53894379734993 ], [ -9753476.091517090797424, 5140897.069635348394513 ], [ -9753476.515210319310427, 5140896.629099054262042 ], [ -9753476.968904953449965, 5140896.219526890665293 ], [ -9753477.450343545526266, 5140895.842956764623523 ], [ -9753477.434391463175416, 5140894.349722408689559 ], [ -9753480.900343609973788, 5140894.257860357873142 ], [ -9753480.914858678355813, 5140895.379347479902208 ], [ -9753479.391819834709167, 5140895.701486242003739 ], [ -9753478.380059977993369, 5140896.207366171292961 ], [ -9753477.82600100710988, 5140896.761425141245127 ], [ -9753476.886509710922837, 5140897.604558356106281 ], [ -9753476.043376496061683, 5140898.688586776144803 ], [ -9753475.489317525178194, 5140900.06168944016099 ], [ -9753475.200243281200528, 5140900.832554094493389 ], [ -9753474.959348075091839, 5140901.579329228028655 ], [ -9753474.832319997251034, 5140905.605066905729473 ], [ -9753477.624641545116901, 5140905.580551205202937 ], [ -9753477.633284844458103, 5140902.398372922092676 ], [ -9753477.690468572080135, 5140901.382010915316641 ], [ -9753477.776438146829605, 5140901.049522145651281 ], [ -9753478.21143333427608, 5140900.326674165204167 ], [ -9753478.698591897264123, 5140899.566772779449821 ], [ -9753479.747427249327302, 5140898.746573464013636 ], [ -9753480.7725042514503, 5140898.28192643634975 ], [ -9753481.906629871577024, 5140898.003535022027791 ], [ -9753483.093091143295169, 5140897.925320433452725 ], [ -9753484.272558011114597, 5140898.051193859428167 ], [ -9753485.386050179600716, 5140898.374860887415707 ], [ -9753486.377886474132538, 5140898.880136257968843 ], [ -9753487.198469236493111, 5140899.541753225028515 ], [ -9753487.806764490902424, 5140900.326627039350569 ], [ -9753488.618106160312891, 5140901.916582513600588 ], [ -9753488.851751642301679, 5140905.375764044001698 ], [ -9753491.381037609651685, 5140905.354686660692096 ], [ -9753491.171595327556133, 5140901.772045391611755 ], [ -9753490.545857822522521, 5140899.864713883958757 ], [ -9753490.107673389837146, 5140899.064024908468127 ], [ -9753489.893462430685759, 5140898.623490273021162 ], [ -9753489.647793287411332, 5140898.262770990841091 ], [ -9753489.383622096851468, 5140897.915373077616096 ], [ -9753489.101669764146209, 5140897.582244557328522 ], [ -9753488.802705720067024, 5140897.264294516295195 ], [ -9753488.487545818090439, 5140896.962390618398786 ], [ -9753488.157050104811788, 5140896.677356738597155 ], [ -9753487.812120484188199, 5140896.409970716573298 ], [ -9753487.453698243945837, 5140896.160962229594588 ], [ -9753487.082761496305466, 5140895.931010806001723 ], [ -9753486.70032250136137, 5140895.720743967220187 ], [ -9753486.30742490850389, 5140895.530735517852008 ], [ -9753485.077889941632748, 5140895.255540776066482 ], [ -9753485.095270644873381, 5140894.156548486091197 ], [ -9753488.041087055578828, 5140894.148054565303028 ], [ -9753488.073034418746829, 5140895.641031567938626 ], [ -9753488.575307171791792, 5140896.009066979400814 ], [ -9753489.049852604046464, 5140896.41222279611975 ], [ -9753489.494220143184066, 5140896.848417101427913 ], [ -9753489.906115049496293, 5140897.315397365018725 ], [ -9753490.283410277217627, 5140897.810752077028155 ], [ -9753490.624157456681132, 5140898.331923201680183 ], [ -9753490.926596950739622, 5140898.876219383440912 ], [ -9753491.189166944473982, 5140899.440829849801958 ], [ -9753491.410511516034603, 5140900.022838923148811 ], [ -9753491.589487629011273, 5140900.619241078384221 ], [ -9753491.725171042606235, 5140901.226956466212869 ], [ -9753491.81686108186841, 5140901.842846811749041 ], [ -9753497.483246458694339, 5140901.73817593511194 ], [ -9753499.779377181082964, 5141026.030225942842662 ], [ -9753470.719322215765715, 5141026.567071903496981 ], [ -9753468.42319149337709, 5140902.275021895766258 ], [ -9753473.906379094347358, 5140902.173727279528975 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753504.397878931835294, 5140882.159310702234507 ], [ -9753499.119832681491971, 5140882.252865437418222 ], [ -9753498.99721110984683, 5140875.334965190850198 ], [ -9753504.275257360190153, 5140875.241410455666482 ], [ -9753504.397878931835294, 5140882.159310702234507 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 0, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753466.519565269351006, 5140882.830713606439531 ], [ -9753461.060609733685851, 5140882.92747500538826 ], [ -9753460.938851300626993, 5140876.058270181529224 ], [ -9753466.397806836292148, 5140875.961508782580495 ], [ -9753466.519565269351006, 5140882.830713606439531 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753510.790122272446752, 5141001.078208222985268 ], [ -9753513.514231074601412, 5141001.035421173088253 ], [ -9753520.067451741546392, 5141000.93249100446701 ], [ -9753520.106674758717418, 5141003.429689737968147 ], [ -9753513.553454091772437, 5141003.532619906589389 ], [ -9753513.696034047752619, 5141012.610210549086332 ], [ -9753510.971925247460604, 5141012.652997598052025 ], [ -9753510.829345289617777, 5141003.575406956486404 ], [ -9753510.790122272446752, 5141001.078208222985268 ] ] ], [ [ [ -9753510.697438769042492, 5140995.177358502522111 ], [ -9753510.658271731808782, 5140992.683723800815642 ], [ -9753510.517993157729506, 5140983.752654493786395 ], [ -9753513.242101958021522, 5140983.709867444820702 ], [ -9753513.382380533963442, 5140992.640936751849949 ], [ -9753519.912953972816467, 5140992.538362299092114 ], [ -9753519.952121010050178, 5140995.031997000798583 ], [ -9753513.421547571197152, 5140995.134571453556418 ], [ -9753510.697438769042492, 5140995.177358502522111 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 0, "label": "Spirit Stone\nGarden" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753362.320717323571444, 5140947.647303683683276 ], [ -9753362.377436216920614, 5140951.130160965025425 ], [ -9753362.54719447158277, 5140958.041087849996984 ], [ -9753342.398344086483121, 5140958.372772922739387 ], [ -9753342.08529619127512, 5140941.389924752525985 ], [ -9753362.2135438490659, 5140941.066253186203539 ], [ -9753362.320717323571444, 5140947.647303683683276 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": null, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753500.836293887346983, 5141037.067051735706627 ], [ -9753500.766616715118289, 5141033.29535074159503 ], [ -9753494.623987250030041, 5141033.408827671781182 ], [ -9753494.693664422258735, 5141037.18052866589278 ], [ -9753500.836293887346983, 5141037.067051735706627 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": null, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753470.057296633720398, 5141037.612014777958393 ], [ -9753469.990467624738812, 5141033.994487954303622 ], [ -9753476.12198987044394, 5141033.881216214969754 ], [ -9753476.188818879425526, 5141037.498743038624525 ], [ -9753470.057296633720398, 5141037.612014777958393 ] ] ] ] } },
{ "type": "Feature", "id": "fossil_lab", "properties": { "closed": 0, "label": "Fossil\nLab" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753450.411208188161254, 5141011.734952980652452 ], [ -9753454.695231297984719, 5141011.734952980652452 ], [ -9753454.695231297984719, 5141006.147096750326455 ], [ -9753458.047945035621524, 5141002.421859263442457 ], [ -9753451.435648497194052, 5140995.995824597775936 ], [ -9753450.131815375760198, 5140995.949259129352868 ], [ -9753450.411208188161254, 5141011.734952980652452 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": null, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753461.620387088507414, 5140989.242931940592825 ], [ -9753453.948645273223519, 5140989.368698295205832 ], [ -9753453.712041825056076, 5140974.935898861847818 ], [ -9753461.383783640339971, 5140974.810132507234812 ], [ -9753461.620387088507414, 5140989.242931940592825 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": null, "closed": 2, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753370.673806523904204, 5141030.263996679335833 ], [ -9753364.048887642100453, 5141030.377623863518238 ], [ -9753363.873807575553656, 5141009.746837547980249 ], [ -9753370.470259580761194, 5141009.727321572601795 ], [ -9753370.673806523904204, 5141030.263996679335833 ] ] ] ] } },
{ "type": "Feature", "id": "d_day", "properties": { "closed": 0, "label": "" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753626.387010373175144, 5140982.009296840056777 ], [ -9753612.21979970112443, 5140982.271017260849476 ], [ -9753611.990118769928813, 5140970.060274471528828 ], [ -9753626.160802094265819, 5140969.793727562762797 ], [ -9753626.390572549775243, 5140982.009229836054146 ], [ -9753626.387010373175144, 5140982.009296840056777 ] ] ] ] } },
{ "type": "Feature", "id": "ese_eja", "properties": { "closed": 0, "label": "" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753626.387010373175144, 5140982.009296840056777 ], [ -9753612.21979970112443, 5140982.009296840056777 ], [ -9753612.21979970112443, 5141008.251237071119249 ], [ -9753619.94353261590004, 5141015.974969986826181 ], [ -9753627.015989016741514, 5141015.9765625 ], [ -9753626.387010373175144, 5140982.009296840056777 ] ] ] ] } },
{ "type": "Feature", "id": "hoffman", "properties": { "closed": 0, "label": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753448.923615999519825, 5140938.326334271579981 ], [ -9753448.549106322228909, 5140915.149996648542583 ], [ -9753460.948412626981735, 5140914.949634525924921 ], [ -9753461.321614731103182, 5140938.045053719542921 ], [ -9753448.923615999519825, 5140938.326334271579981 ] ] ] ] } },
{ "type": "Feature", "id": "meteorites", "properties": { "closed": 0, "label": "Meteorites" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753466.728468187153339, 5140901.258146116510034 ], [ -9753466.729337282478809, 5140901.303615585900843 ], [ -9753474.047740191221237, 5140901.168311071582139 ], [ -9753477.434391463175416, 5140894.349722408689559 ], [ -9753466.63501787930727, 5140894.549384003505111 ], [ -9753466.728468187153339, 5140901.258146116510034 ] ] ], [ [ [ -9753499.652535177767277, 5140900.602610167115927 ], [ -9753492.224569238722324, 5140900.740549955517054 ], [ -9753488.041087055578828, 5140894.148054565303028 ], [ -9753499.483492309227586, 5140894.07419868838042 ], [ -9753499.652535177767277, 5140900.602610167115927 ] ] ], [ [ [ -9753518.889366734772921, 5140940.499100680463016 ], [ -9753506.427456004545093, 5140940.783345943316817 ], [ -9753505.634909218177199, 5140906.036426329985261 ], [ -9753518.096819948405027, 5140905.75218106713146 ], [ -9753518.889366734772921, 5140940.499100680463016 ] ] ] ] } },
{ "type": "Feature", "properties": { "id": "pacific_marketplace", "closed": 0, "label": "Pacific\nMarketplace" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9753588.528955237939954, 5140970.508676610887051 ], [ -9753588.185153422877192, 5140954.02844899520278 ], [ -9753604.892911477014422, 5140953.67990056052804 ], [ -9753605.239502860233188, 5140970.189281313680112 ], [ -9753588.528955237939954, 5140970.508676610887051 ] ] ] ] } }
]
}

View File

@ -0,0 +1,17 @@
{
"type": "FeatureCollection",
"name": "upper_level_flows",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" } },
"features": [
{ "type": "Feature", "properties": { "exhibition": "evolving_planet" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753452.917340654879808, 5141018.536599553190172 ], [ -9753443.800053287297487, 5141018.733865102753043 ], [ -9753372.611154342070222, 5141020.295263132080436 ], [ -9753372.235940495505929, 5141003.188119226135314 ], [ -9753360.343167215585709, 5141003.448965414427221 ], [ -9753360.927149085327983, 5141030.074480134062469 ], [ -9753346.274374010041356, 5141030.395861904136837 ], [ -9753344.794496569782495, 5140962.923735097050667 ], [ -9753358.486908596009016, 5140962.623417136259377 ], [ -9753359.005755200982094, 5140983.728923803195357 ], [ -9753370.031911801546812, 5140983.487085262313485 ], [ -9753370.096915571019053, 5140989.001097968779504 ], [ -9753382.365076538175344, 5141000.197967533953488 ], [ -9753382.465660445392132, 5141005.825956086628139 ], [ -9753441.67992702499032, 5141004.756591206416488 ], [ -9753441.524555137380958, 5140996.969505 ], [ -9753382.753430802375078, 5140998.025195117108524 ], [ -9753372.745620731264353, 5140989.208401917479932 ], [ -9753372.583002427592874, 5140983.320136212743819 ], [ -9753451.28204944357276, 5140982.068689608946443 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "restoring_earth" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753514.380928978323936, 5141021.492198717780411 ], [ -9753518.679737256839871, 5141015.469339832663536 ], [ -9753598.686611425131559, 5141013.695165955461562 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "pacific" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753513.958892039954662, 5140945.137056732550263 ], [ -9753577.697528654709458, 5140943.944177953526378 ], [ -9753577.925654541701078, 5140956.133541389368474 ], [ -9753603.719795480370522, 5140955.593069016002119 ], [ -9753603.85995508171618, 5140968.594200067222118 ], [ -9753577.966041328385472, 5140969.136539705097675 ], [ -9753578.268863581120968, 5140979.805088919587433 ], [ -9753522.719157623127103, 5140980.844710557721555 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "china" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753450.562027286738157, 5140947.888451407663524 ], [ -9753360.825392326340079, 5140949.359545125626028 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "jades" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753464.289922125637531, 5140905.184086834080517 ], [ -9753464.063821392133832, 5140893.354907503351569 ], [ -9753457.38683201558888, 5140893.482530229724944 ], [ -9753457.484928250312805, 5140898.614747138693929 ], [ -9753448.027833499014378, 5140898.79550829064101 ], [ -9753447.782740153372288, 5140885.972669906914234 ], [ -9753456.736799469217658, 5140885.801523679867387 ], [ -9753456.812107291072607, 5140889.741492392495275 ], [ -9753463.649166377261281, 5140889.610810122452676 ], [ -9753463.579437715932727, 5140885.962733212858438 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "gems" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753501.803129715844989, 5140903.561905521899462 ], [ -9753501.62319053709507, 5140894.533652698621154 ], [ -9753507.89632392115891, 5140894.408624911680818 ], [ -9753507.982013510540128, 5140898.708007032983005 ], [ -9753518.165604317560792, 5140898.505041170865297 ], [ -9753517.87499881722033, 5140883.924226175993681 ], [ -9753507.449295306578279, 5140884.132017505355179 ], [ -9753507.544179977849126, 5140888.892752854153514 ], [ -9753501.573076572269201, 5140889.011760981753469 ], [ -9753501.501054923981428, 5140885.39815308060497 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "plants" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753450.038483742624521, 5140912.777108130976558 ], [ -9753351.329736616462469, 5140914.395285789854825 ], [ -9753351.792164888232946, 5140942.603384687565267 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "ese_eja" }, "geometry": null },
{ "type": "Feature", "properties": { "exhibition": "ese_eja" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753609.764571379870176, 5140985.835593980737031 ], [ -9753624.058665571734309, 5140985.570907383225858 ], [ -9753624.438665276393294, 5141006.092352868057787 ], [ -9753610.834111578762531, 5141006.344271105714142 ] ] ] } },
{ "type": "Feature", "properties": { "exhibition": "d_day" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -9753623.679754268378019, 5140967.074199479073286 ], [ -9753623.909362699836493, 5140979.473314544185996 ], [ -9753608.715375542640686, 5140979.754678782075644 ] ] ] } }
]
}

View File

@ -0,0 +1,19 @@
{
"type": "FeatureCollection",
"name": "upper_level_labels",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3857" } },
"features": [
{ "type": "Feature", "id": "restoring_earth", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753562.172631999477744, 5141014.504863454028964 ] } },
{ "type": "Feature", "id": "pacific", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753559.7890625, 5140980.151031914167106 ] } },
{ "type": "Feature", "id": "evolving_planet", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753412.764247501268983, 5141019.41593134496361 ] } },
{ "type": "Feature", "id": "china", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753400.651098014786839, 5140948.706664113327861 ] } },
{ "type": "Feature", "id": "plants", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753400.1736701708287, 5140914.305984682403505 ] } },
{ "type": "Feature", "id": "jades", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753444.028104778379202, 5140892.304086741060019 ] } },
{ "type": "Feature", "id": "gems", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753521.822038451209664, 5140891.065686972811818 ] } },
{ "type": "Feature", "id": "hoffman", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753454.932073699310422, 5140926.617824981920421 ] } },
{ "type": "Feature", "id": "ese_eja", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753623.242853654548526, 5140994.967897944152355 ] } },
{ "type": "Feature", "id": "d_day", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753623.839864023029804, 5140975.720307347364724 ] } },
{ "type": "Feature", "id": "sue", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753415.70459409058094, 5140999.929715652018785 ] } },
{ "type": "Feature", "id": "carl_cotton", "properties": { }, "geometry": { "type": "Point", "coordinates": [ -9753459.233758240938187, 5141042.435043804347515 ] } }
]
}

View File

@ -0,0 +1,168 @@
{
"type": "FeatureCollection",
"name": "upper_level_outline",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
-9753499.119832681,
5140882.252865437
],
[
-9753498.99721111,
5140875.334965191
],
[
-9753504.27525736,
5140875.241410456
],
[
-9753504.397878932,
5140882.159310702
],
[
-9753505.75459869,
5140882.135262494
],
[
-9753520.005730372,
5140881.840724009
],
[
-9753520.436209707,
5140900.713844343
],
[
-9753604.649909299,
5140899.149926858
],
[
-9753604.515620952,
5140894.47189398
],
[
-9753624.759478115,
5140894.120713461
],
[
-9753627.263055293,
5141029.316713676
],
[
-9753607.058847541,
5141029.665062087
],
[
-9753607.063939754,
5141025.976314691
],
[
-9753522.679233605,
5141027.535322215
],
[
-9753522.9851005,
5141045.864679184
],
[
-9753500.989227334,
5141046.23173022
],
[
-9753500.836293887,
5141037.067051736
],
[
-9753470.057296634,
5141037.612014778
],
[
-9753470.272536302,
5141046.74270805
],
[
-9753448.410219844,
5141047.258072832
],
[
-9753447.97974051,
5141028.996686283
],
[
-9753363.97362249,
5141030.378862222
],
[
-9753364.081583722,
5141034.230408727
],
[
-9753343.803741354,
5141034.615574449
],
[
-9753342.425458858,
5140959.843749279
],
[
-9753341.31149256,
5140899.4110779315
],
[
-9753361.521364525,
5140899.071225817
],
[
-9753361.622032342,
5140903.625476609
],
[
-9753445.578118956,
5140902.073252767
],
[
-9753445.283580465,
5140883.290759662
],
[
-9753459.738623409,
5140882.9509075545
],
[
-9753461.060609734,
5140882.927475005
],
[
-9753460.9388513,
5140876.0582701815
],
[
-9753466.397806836,
5140875.961508783
],
[
-9753466.51956527,
5140882.830713606
],
[
-9753499.119832681,
5140882.252865437
]
]
]
]
}
}
]
}

View File

@ -0,0 +1,70 @@
{
"type": "FeatureCollection",
"name": "upper_level_pictograms",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::3857"
}
},
"features": [
{
"type": "Feature",
"properties": {
"id": "stone_lion"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753455.007197991,
5140963.491790502
]
},
"id": "stone_lion"
},
{
"type": "Feature",
"id": "sue",
"properties": {
"id": "sue",
"label": "SUE the T. rex"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753415.70459409,
5140999.929715652
]
}
},
{
"type": "Feature",
"properties": {
"id": "trike"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753360.544303231,
5140993.9080106765
]
},
"id": "trike"
},
{
"type": "Feature",
"properties": {
"id": "maori_house",
"label": "Maori\nHouse"
},
"geometry": {
"type": "Point",
"coordinates": [
-9753618.928280002,
5140942.947180382
]
},
"id": "maori_house"
}
]
}

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500px" height="500px" viewBox="0 0 20 20" version="1.1">
<g id="surface1">
<rect x="0" y="0" width="20" height="20" style="fill:rgb(13.72549%,12.156863%,12.54902%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 15 11.875 C 14.757812 11.597656 14.410156 11.433594 14.042969 11.429688 L 10.292969 11.429688 C 10.109375 11.433594 9.929688 11.351562 9.808594 11.210938 C 9.738281 11.140625 9.707031 11.035156 9.726562 10.9375 L 11.0625 5.789062 L 11.136719 5.789062 C 11.792969 5.785156 12.34375 5.300781 12.433594 4.652344 C 12.519531 4 12.117188 3.386719 11.488281 3.207031 C 10.859375 3.027344 10.191406 3.339844 9.925781 3.941406 C 9.660156 4.539062 9.875 5.242188 10.429688 5.589844 L 10.210938 6.421875 C 9.90625 6.363281 9.59375 6.328125 9.285156 6.316406 C 7.75 6.320312 6.277344 6.914062 5.167969 7.980469 L 5.621094 8.421875 C 6.621094 7.507812 7.929688 7.007812 9.285156 7.019531 C 9.535156 7.003906 9.789062 7.003906 10.042969 7.019531 L 9.714844 8.328125 L 9.273438 8.328125 C 7.019531 8.328125 5.191406 10.15625 5.191406 12.410156 C 5.191406 14.667969 7.019531 16.496094 9.273438 16.496094 C 11.53125 16.496094 13.359375 14.667969 13.359375 12.410156 C 13.363281 12.316406 13.363281 12.222656 13.359375 12.125 L 14.050781 12.125 C 14.222656 12.121094 14.386719 12.191406 14.5 12.320312 C 14.613281 12.449219 14.660156 12.621094 14.632812 12.789062 L 14.019531 16.398438 L 14.671875 16.503906 L 15.285156 12.894531 C 15.347656 12.527344 15.242188 12.152344 15 11.875 Z M 15 11.875 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 924 B

Some files were not shown because too many files have changed in this diff Show More