Merge pull request #1 from monosolutions/MODE-11365
(MODE-11365) Open Street Map updates
This commit is contained in:
commit
e80c76f041
1326 changed files with 26743 additions and 714 deletions
172
.circleci/config.yml
Normal file
172
.circleci/config.yml
Normal file
|
|
@ -0,0 +1,172 @@
|
|||
version: 2
|
||||
jobs:
|
||||
build-package:
|
||||
working_directory: /usr/src/app
|
||||
docker:
|
||||
- image: monosolutions/ubuntu-nodejs
|
||||
steps:
|
||||
- checkout
|
||||
- restore_cache:
|
||||
key: node-dependencies-{{ checksum "package.json" }}
|
||||
- run: npm install
|
||||
- save_cache:
|
||||
paths:
|
||||
- node_modules
|
||||
key: node-dependencies-{{ checksum "package.json" }}
|
||||
- run:
|
||||
name: Build Artifact
|
||||
command: |
|
||||
mkdir ./artifact
|
||||
DEPLOYABLE="${CIRCLE_PROJECT_REPONAME}-${CIRCLE_SHA1}.tar.gz"
|
||||
cp -rf configuration \
|
||||
node_modules \
|
||||
src \
|
||||
run.sh \
|
||||
package.json \
|
||||
public \
|
||||
docs \
|
||||
publish.js \
|
||||
./artifact/
|
||||
pushd ./artifact
|
||||
echo "Taring ${DEPLOYABLE}"
|
||||
tar -zcvf $DEPLOYABLE *
|
||||
popd
|
||||
cp -rf ./deployment ./artifact/
|
||||
mkdir -p /tmp/repo && mv artifact /tmp/repo/
|
||||
- persist_to_workspace:
|
||||
root: /tmp/repo
|
||||
paths:
|
||||
- artifact
|
||||
upload-package:
|
||||
environment:
|
||||
ENVIRONMENT: "dev"
|
||||
REGION: "eu-central-1"
|
||||
working_directory: /tmp/repo
|
||||
docker:
|
||||
- image: monosolutions/awscli:latest
|
||||
steps:
|
||||
- attach_workspace:
|
||||
at: /tmp/repo
|
||||
- run:
|
||||
name: Upload Artifact Dev
|
||||
command: |
|
||||
aws configure set aws_access_key_id "${AWS_DEV_ACCESS_KEY}"
|
||||
aws configure set aws_secret_access_key "${AWS_DEV_SECRET_KEY}"
|
||||
BUCKET="mono-deployment-${ENVIRONMENT}"
|
||||
DEPLOYABLE="${CIRCLE_PROJECT_REPONAME}-${CIRCLE_SHA1}.tar.gz"
|
||||
{
|
||||
aws s3api create-bucket --bucket "${BUCKET}"
|
||||
} || {
|
||||
echo "Bucket is here"
|
||||
}
|
||||
aws s3 cp "/tmp/repo/artifact/${DEPLOYABLE}" "s3://${BUCKET}/tileserver-gl/${DEPLOYABLE}"
|
||||
- run:
|
||||
name: Upload Artifact Prod
|
||||
command: |
|
||||
ENVIRONMENT="prod"
|
||||
aws configure set aws_access_key_id "${AWS_PROD_ACCESS_KEY}"
|
||||
aws configure set aws_secret_access_key "${AWS_PROD_SECRET_KEY}"
|
||||
BUCKET="mono-deployment-${ENVIRONMENT}"
|
||||
DEPLOYABLE="${CIRCLE_PROJECT_REPONAME}-${CIRCLE_SHA1}.tar.gz"
|
||||
{
|
||||
aws s3api create-bucket --bucket "${BUCKET}"
|
||||
} || {
|
||||
echo "Bucket is here"
|
||||
}
|
||||
aws s3 cp "/tmp/repo/artifact/${DEPLOYABLE}" "s3://${BUCKET}/tileserver-gl/${DEPLOYABLE}"
|
||||
- persist_to_workspace:
|
||||
root: /tmp/repo
|
||||
paths:
|
||||
- artifact
|
||||
deploy-to-dev:
|
||||
docker:
|
||||
- image: monosolutions/terraform:1.0.4
|
||||
working_directory: /tmp/repo/artifact/deployment
|
||||
environment:
|
||||
REGION: "eu-central-1"
|
||||
ENVIRONMENT: "dev"
|
||||
steps:
|
||||
- attach_workspace:
|
||||
at: /tmp/repo
|
||||
- run:
|
||||
name: Configure deployment
|
||||
command: |
|
||||
aws configure set aws_access_key_id "${AWS_DEV_ACCESS_KEY}"
|
||||
aws configure set aws_secret_access_key "${AWS_DEV_SECRET_KEY}"
|
||||
aws configure set region "${REGION}"
|
||||
ssh -T -oStrictHostKeyChecking=no git@github.com || true
|
||||
mkdir ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts
|
||||
wget https://github.com/gruntwork-io/terragrunt/releases/download/v0.14.10/terragrunt_linux_amd64 -O terragrunt
|
||||
chmod a+x terragrunt
|
||||
mv terragrunt /bin/
|
||||
- run:
|
||||
name: Deploy tileserver-alb to fra dev
|
||||
command: |
|
||||
cd /tmp/repo/artifact/deployment/eu-central-1/dev/tileserver-alb && \
|
||||
terragrunt apply --terragrunt-non-interactive -auto-approve
|
||||
- run:
|
||||
name: Deploy tileserver to fra dev
|
||||
command: |
|
||||
cd /tmp/repo/artifact/deployment/eu-central-1/dev/tileserver && \
|
||||
terragrunt apply \
|
||||
-var="aws_access_key=$AWS_DEV_ACCESS_KEY" \
|
||||
-var="aws_secret_key=$AWS_DEV_SECRET_KEY" \
|
||||
-var="repo_version=$CIRCLE_SHA1" \
|
||||
--terragrunt-non-interactive -auto-approve
|
||||
deploy-to-prod:
|
||||
docker:
|
||||
- image: monosolutions/terraform:1.0.4
|
||||
working_directory: /tmp/repo/artifact/deployment
|
||||
environment:
|
||||
REGION: "eu-central-1"
|
||||
ENVIRONMENT: "prod"
|
||||
steps:
|
||||
- attach_workspace:
|
||||
at: /tmp/repo
|
||||
- run:
|
||||
name: Configure deployment
|
||||
command: |
|
||||
aws configure set aws_access_key_id "${AWS_PROD_ACCESS_KEY}"
|
||||
aws configure set aws_secret_access_key "${AWS_PROD_SECRET_KEY}"
|
||||
aws configure set region "${REGION}"
|
||||
ssh -T -oStrictHostKeyChecking=no git@github.com || true
|
||||
mkdir ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts
|
||||
wget https://github.com/gruntwork-io/terragrunt/releases/download/v0.14.10/terragrunt_linux_amd64 -O terragrunt
|
||||
chmod a+x terragrunt
|
||||
mv terragrunt /bin/
|
||||
- run:
|
||||
name: Deploy tileserver-alb to fra prod
|
||||
command: |
|
||||
cd /tmp/repo/artifact/deployment/eu-central-1/prod/tileserver-alb && \
|
||||
terragrunt apply --terragrunt-non-interactive -auto-approve
|
||||
- run:
|
||||
name: Deploy tileserver to fra prod
|
||||
command: |
|
||||
cd /tmp/repo/artifact/deployment/eu-central-1/prod/tileserver && \
|
||||
terragrunt apply \
|
||||
-var="aws_access_key=$AWS_DEV_ACCESS_KEY" \
|
||||
-var="aws_secret_key=$AWS_DEV_SECRET_KEY" \
|
||||
-var="repo_version=$CIRCLE_SHA1" \
|
||||
--terragrunt-non-interactive -auto-approve
|
||||
workflows:
|
||||
version: 2
|
||||
deploy:
|
||||
jobs:
|
||||
- build-package
|
||||
- upload-package:
|
||||
requires:
|
||||
- build-package
|
||||
- deploy-to-dev:
|
||||
requires:
|
||||
- upload-package
|
||||
- approve-for-live:
|
||||
requires:
|
||||
- deploy-to-dev
|
||||
filters:
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
type: approval
|
||||
- deploy-to-prod:
|
||||
requires:
|
||||
- approve-for-live
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -4,5 +4,4 @@ test_data
|
|||
data
|
||||
light
|
||||
plugins
|
||||
config.json
|
||||
*.mbtiles
|
||||
|
|
|
|||
35
Dockerfile_test
Normal file
35
Dockerfile_test
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# Run tests inside docker without requiring full installation of dependencies on local machine
|
||||
# Simply run "docker build -f Dockerfile_test ."
|
||||
# WARNING: sometimes it fails with a core dumped exception
|
||||
|
||||
FROM node:6-stretch
|
||||
MAINTAINER Petr Sloup <petr.sloup@klokantech.com>
|
||||
|
||||
RUN apt-get -qq update \
|
||||
&& DEBIAN_FRONTEND=noninteractive apt-get -y install \
|
||||
apt-transport-https \
|
||||
curl \
|
||||
unzip \
|
||||
build-essential \
|
||||
python \
|
||||
libcairo2-dev \
|
||||
libgles2-mesa-dev \
|
||||
libgbm-dev \
|
||||
libllvm3.9 \
|
||||
libprotobuf-dev \
|
||||
libxxf86vm-dev \
|
||||
xvfb \
|
||||
&& apt-get clean
|
||||
|
||||
RUN mkdir -p /usr/src/app
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
RUN wget -O test_data.zip https://github.com/klokantech/tileserver-gl/releases/download/v1.3.0/test_data.zip
|
||||
RUN unzip -q test_data.zip -d test_data
|
||||
|
||||
ENV NODE_ENV="test"
|
||||
|
||||
COPY package.json .
|
||||
RUN npm install
|
||||
COPY / .
|
||||
RUN xvfb-run --server-args="-screen 0 1024x768x24" npm test
|
||||
|
|
@ -2,8 +2,6 @@ It is great you want to help us making TileServer GL project better!
|
|||
|
||||
This is the right place only for a software bug report or a new software feature request.
|
||||
|
||||
NOTE: Questions about OpenMapTiles data, OpenMapTiles Server, TileHosting and other software/products do not belong here (and will not be answered)!
|
||||
|
||||
The usage and installation questions belongs to https://stackoverflow.com/questions/tagged/openmaptiles
|
||||
A guaranteed support and consulting from the core developers via https://openmaptiles.com/support/
|
||||
|
||||
|
|
|
|||
28
README.md
28
README.md
|
|
@ -20,7 +20,7 @@ npm install -g tileserver-gl
|
|||
Now download vector tiles from [OpenMapTiles](https://openmaptiles.org/downloads/).
|
||||
|
||||
```bash
|
||||
curl -o zurich_switzerland.mbtiles https://[GET-YOUR-LINK]/extracts/zurich_switzerland.mbtiles
|
||||
curl -o zurich_switzerland.mbtiles https://openmaptiles.os.zhdk.cloud.switch.ch/v3.3/extracts/zurich_switzerland.mbtiles
|
||||
```
|
||||
|
||||
Start `tileserver-gl` with the downloaded vector tiles.
|
||||
|
|
@ -46,3 +46,29 @@ On laptop you can use [Docker Kitematic](https://kitematic.com/) and search "til
|
|||
## Documentation
|
||||
|
||||
You can read full documentation of this project at http://tileserver.readthedocs.io/.
|
||||
|
||||
## Offline development to fix styles
|
||||
|
||||
Tool and instructions: https://openmaptiles.org/docs/style/maputnik/
|
||||
Run the `maputnik` executable to start a server on `localhost:8000`, open your browser and visit the address.
|
||||
|
||||
To inspect and make temporary changes to our styles you can load them using the live tileJSON URLs either for dev or prod.
|
||||
To load the map data that we use make sure you use the live URL that points to the data OSM2Vector tileJSON.
|
||||
|
||||
Latest tilserver README: https://buildmedia.readthedocs.org/media/pdf/tileserver/latest/tileserver.pdf
|
||||
|
||||
### Updating Styles/Sprites
|
||||
|
||||
Updated the point label groups, grouping by rank and zoom level.
|
||||
|
||||
Fixed some landuse colors of class pitch (Fx #15.65/55.698642/12.572399).
|
||||
|
||||
Railway lines added to each style.
|
||||
|
||||
Updated the "image-icon" reference in the styles from {maki}-11 to {class}-11.
|
||||
The name of each icon to be shown is the same as the class name.
|
||||
|
||||
|
||||
### NOTE:
|
||||
When uploading a local JSON file to the the Maputnik editor, change the source URL, the sprite and glyphs to URLs.
|
||||
Fx: ["sprite": "mono"] to ["sprite": "https://maps.monomaps.com/styles/updated-mono/sprite"]
|
||||
|
|
|
|||
33
configuration/map_files/config.json
Normal file
33
configuration/map_files/config.json
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
"options": {
|
||||
"paths": {
|
||||
"root": "mbtiles/2019-05-20_data",
|
||||
"fonts": "glyphs",
|
||||
"sprites": "sprites",
|
||||
"mbtiles": "mbtiles",
|
||||
"styles": "styles"
|
||||
}
|
||||
},
|
||||
"styles": {
|
||||
"updated-mono": {
|
||||
"style": "mono.json"
|
||||
},
|
||||
"mono-bw": {
|
||||
"style": "mono-bw.json"
|
||||
},
|
||||
"mono-blue-water": {
|
||||
"style": "mono-blue-water.json"
|
||||
},
|
||||
"mono-blue": {
|
||||
"style": "mono-blue.json"
|
||||
},
|
||||
"mono-chrome": {
|
||||
"style": "mono-chrome.json"
|
||||
}
|
||||
},
|
||||
"data": {
|
||||
"osm2vectortiles": {
|
||||
"mbtiles": "planet.mbtiles"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
configuration/map_files/glyphs/Open Sans Bold/0-255.pbf
Executable file
BIN
configuration/map_files/glyphs/Open Sans Bold/0-255.pbf
Executable file
Binary file not shown.
BIN
configuration/map_files/glyphs/Open Sans Bold/1024-1279.pbf
Executable file
BIN
configuration/map_files/glyphs/Open Sans Bold/1024-1279.pbf
Executable file
Binary file not shown.
3
configuration/map_files/glyphs/Open Sans Bold/10240-10495.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/10240-10495.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold10240-10495
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/10496-10751.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/10496-10751.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold10496-10751
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/10752-11007.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/10752-11007.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold10752-11007
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/11008-11263.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/11008-11263.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold11008-11263
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/11264-11519.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/11264-11519.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold11264-11519
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/11520-11775.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/11520-11775.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold11520-11775
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/11776-12031.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/11776-12031.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold11776-12031
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/12032-12287.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/12032-12287.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold12032-12287
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/12288-12543.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/12288-12543.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold12288-12543
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/12544-12799.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/12544-12799.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold12544-12799
|
||||
BIN
configuration/map_files/glyphs/Open Sans Bold/1280-1535.pbf
Executable file
BIN
configuration/map_files/glyphs/Open Sans Bold/1280-1535.pbf
Executable file
Binary file not shown.
3
configuration/map_files/glyphs/Open Sans Bold/12800-13055.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/12800-13055.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold12800-13055
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/13056-13311.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/13056-13311.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold13056-13311
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/13312-13567.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/13312-13567.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold13312-13567
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/13568-13823.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/13568-13823.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold13568-13823
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/13824-14079.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/13824-14079.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold13824-14079
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/14080-14335.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/14080-14335.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold14080-14335
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/14336-14591.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/14336-14591.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold14336-14591
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/14592-14847.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/14592-14847.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold14592-14847
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/14848-15103.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/14848-15103.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold14848-15103
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/15104-15359.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/15104-15359.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold15104-15359
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/1536-1791.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/1536-1791.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold 1536-1791
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/15360-15615.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/15360-15615.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold15360-15615
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/15616-15871.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/15616-15871.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold15616-15871
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/15872-16127.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/15872-16127.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold15872-16127
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/16128-16383.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/16128-16383.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold16128-16383
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/16384-16639.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/16384-16639.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold16384-16639
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/16640-16895.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/16640-16895.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold16640-16895
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/16896-17151.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/16896-17151.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold16896-17151
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/17152-17407.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/17152-17407.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold17152-17407
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/17408-17663.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/17408-17663.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold17408-17663
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/17664-17919.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/17664-17919.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold17664-17919
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/1792-2047.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/1792-2047.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold 1792-2047
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/17920-18175.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/17920-18175.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold17920-18175
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/18176-18431.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/18176-18431.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold18176-18431
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/18432-18687.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/18432-18687.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold18432-18687
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/18688-18943.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/18688-18943.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold18688-18943
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/18944-19199.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/18944-19199.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold18944-19199
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/19200-19455.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/19200-19455.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold19200-19455
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/19456-19711.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/19456-19711.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold19456-19711
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/19712-19967.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/19712-19967.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold19712-19967
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/19968-20223.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/19968-20223.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold19968-20223
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/20224-20479.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/20224-20479.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold20224-20479
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/2048-2303.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/2048-2303.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold 2048-2303
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/20480-20735.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/20480-20735.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold20480-20735
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/20736-20991.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/20736-20991.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold20736-20991
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/20992-21247.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/20992-21247.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold20992-21247
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/21248-21503.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/21248-21503.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold21248-21503
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/21504-21759.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/21504-21759.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold21504-21759
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/21760-22015.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/21760-22015.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold21760-22015
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/22016-22271.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/22016-22271.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold22016-22271
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/22272-22527.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/22272-22527.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold22272-22527
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/22528-22783.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/22528-22783.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold22528-22783
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/22784-23039.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/22784-23039.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold22784-23039
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/2304-2559.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/2304-2559.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold 2304-2559
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/23040-23295.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/23040-23295.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold23040-23295
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/23296-23551.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/23296-23551.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold23296-23551
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/23552-23807.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/23552-23807.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold23552-23807
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/23808-24063.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/23808-24063.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold23808-24063
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/24064-24319.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/24064-24319.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold24064-24319
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/24320-24575.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/24320-24575.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold24320-24575
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/24576-24831.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/24576-24831.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold24576-24831
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/24832-25087.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/24832-25087.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold24832-25087
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/25088-25343.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/25088-25343.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold25088-25343
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/25344-25599.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/25344-25599.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold25344-25599
|
||||
BIN
configuration/map_files/glyphs/Open Sans Bold/256-511.pbf
Executable file
BIN
configuration/map_files/glyphs/Open Sans Bold/256-511.pbf
Executable file
Binary file not shown.
3
configuration/map_files/glyphs/Open Sans Bold/2560-2815.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/2560-2815.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold 2560-2815
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/25600-25855.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/25600-25855.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold25600-25855
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/25856-26111.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/25856-26111.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold25856-26111
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/26112-26367.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/26112-26367.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold26112-26367
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/26368-26623.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/26368-26623.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold26368-26623
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/26624-26879.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/26624-26879.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold26624-26879
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/26880-27135.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/26880-27135.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold26880-27135
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/27136-27391.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/27136-27391.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold27136-27391
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/27392-27647.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/27392-27647.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold27392-27647
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/27648-27903.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/27648-27903.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold27648-27903
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/27904-28159.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/27904-28159.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold27904-28159
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/2816-3071.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/2816-3071.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold 2816-3071
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/28160-28415.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/28160-28415.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold28160-28415
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/28416-28671.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/28416-28671.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold28416-28671
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/28672-28927.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/28672-28927.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold28672-28927
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/28928-29183.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/28928-29183.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold28928-29183
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/29184-29439.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/29184-29439.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold29184-29439
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/29440-29695.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/29440-29695.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold29440-29695
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/29696-29951.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/29696-29951.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold29696-29951
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/29952-30207.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/29952-30207.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold29952-30207
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/30208-30463.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/30208-30463.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold30208-30463
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/30464-30719.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/30464-30719.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold30464-30719
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/3072-3327.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/3072-3327.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold 3072-3327
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/30720-30975.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/30720-30975.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold30720-30975
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/30976-31231.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/30976-31231.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold30976-31231
|
||||
3
configuration/map_files/glyphs/Open Sans Bold/31232-31487.pbf
Executable file
3
configuration/map_files/glyphs/Open Sans Bold/31232-31487.pbf
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
|
||||
Open Sans Bold31232-31487
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue