Skip to content

Commit b1ff734

Browse files
authored
Set writing systems roadmap item to released (#432)
1 parent 95cbea6 commit b1ff734

File tree

6 files changed

+46
-9
lines changed

6 files changed

+46
-9
lines changed

src/content/roadmap/globe-view/index.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ heroImage: "./image.png"
44
status: released
55
bountyActive: true
66
bountyLink: https://github.com/maplibre/maplibre/issues/190
7+
released: December 2024
78
---
89

910
Goals:
Lines changed: 45 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,56 @@
11
---
22
title: Writing Systems
33
heroImage: "./image.png"
4-
status: in-progress
4+
status: released
55
bountyActive: true
66
bountyLink: https://github.com/maplibre/maplibre/issues/193
7+
released: July 2025
78
---
89

9-
Goals:
10+
## MapLibre Native
1011

11-
- Support text rendering for more languages, in particular Brahmic/Indic scripts.
12+
The [`font-faces`](https://maplibre.org/maplibre-style-spec/font-faces/) property landed in MapLibre iOS 6.18.0 and MapLibre Android 11.13.0.
1213

13-
Image Credit: <a href="https://en.wikipedia.org/wiki/Brahmic_scripts#/media/File:Different_scripts_of_different_languages_of_India.jpg">Wikipedia</a>
14+
import myanmarImg from "./myanmar.png";
15+
import thaiImg from "./thai.png";
16+
import { Image } from "astro:assets";
1417

15-
Discussion Thread: https://github.com/maplibre/maplibre/discussions/166
18+
<div
19+
style={{
20+
display: "flex",
21+
gap: "1rem",
22+
flexWrap: "wrap",
23+
justifyContent: "center",
24+
}}
25+
>
26+
<Image
27+
src={myanmarImg}
28+
alt="Myanmar"
29+
style={{
30+
maxWidth: "300px",
31+
width: "100%",
32+
height: "auto",
33+
flex: "1 1 300px",
34+
}}
35+
/>
36+
<Image
37+
src={thaiImg}
38+
alt="Thai"
39+
style={{
40+
maxWidth: "300px",
41+
width: "100%",
42+
height: "auto",
43+
flex: "1 1 300px",
44+
}}
45+
/>
46+
<p>
47+
Screenshots showing complex map rendering. Style © OpenMapTiles. Map data
48+
from OpenStreetMap
49+
</p>
50+
</div>
1651

17-
[MapLibre Native Status](https://github.com/maplibre/maplibre-native/milestone/14)
52+
## MapLibre GL JS
53+
54+
See [#4564](https://github.com/maplibre/maplibre-gl-js/pull/4564) which will allow rendering local (web) fonts with TinySDF.
55+
56+
Also see [maplibre-gl-complex-text](https://github.com/wipfli/maplibre-gl-complex-text) for a plugin-based approach for rendering complex texts.
2.14 MB
Loading
1.69 MB
Loading

src/pages/categories/[...slug].astro

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ function capitalizeFirstLetter(val: string) {
2424
2525
const category = Astro.props;
2626
27-
console.log(category);
28-
2927
const posts = (
3028
await getCollection("news", (post) => {
3129
return post.data.categories.includes(category.category);

src/pages/news/index.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import TitleHeader from "../../components/TitleHeader.astro";
88
import PostExcerpt from "@igor.dvlpr/astro-post-excerpt";
99
1010
const posts = (await getCollection("news")).sort((a, b) => {
11-
console.log(b.data);
1211
return b.data.date.valueOf() - a.data.date.valueOf();
1312
});
1413
---

0 commit comments

Comments
 (0)