mirror of
https://github.com/hyperknot/openfreemap.git
synced 2026-05-22 06:22:16 +00:00
22 lines
764 B
Plaintext
22 lines
764 B
Plaintext
---
|
|
import Layout from '../layouts/Layout.astro'
|
|
|
|
import { Content as MaplibreText } from '../content/how_to_use/maplibre.md'
|
|
import { Content as MapboxText } from '../content/how_to_use/mapbox.md'
|
|
import { Content as LeafletText } from '../content/how_to_use/leaflet.md'
|
|
import { Content as MobileText } from '../content/how_to_use/mobile.md'
|
|
import { Content as CustomStylesText } from '../content/how_to_use/custom_styles.md'
|
|
import { Content as SelfHostingText } from '../content/how_to_use/self_hosting.md'
|
|
---
|
|
|
|
<Layout title="How to use OpenFreeMap in your website or app">
|
|
<h1>How to use OpenFreeMap in your website or app</h1>
|
|
|
|
<MaplibreText />
|
|
<MapboxText />
|
|
<LeafletText />
|
|
<MobileText />
|
|
<CustomStylesText />
|
|
<SelfHostingText />
|
|
</Layout>
|