mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
42 lines
934 B
Plaintext
42 lines
934 B
Plaintext
---
|
|
import DefaultLayout from '@shared/layouts/DefaultLayout.astro';
|
|
import MapVector from '@ui/MapVector.astro';
|
|
import Card from '@ui/Card.astro';
|
|
import CardBody from '@ui/CardBody.astro';
|
|
import CardTitle from '@ui/CardTitle.astro';
|
|
---
|
|
|
|
<DefaultLayout
|
|
title="Vector Maps"
|
|
pageHeader="Vector Maps"
|
|
pageMenu="plugins.maps-vector"
|
|
pageLibs={['jsvectormap']}
|
|
>
|
|
<div class="row row-cards">
|
|
<div class="col-md-6">
|
|
<Card>
|
|
<CardBody>
|
|
<CardTitle>World map</CardTitle>
|
|
<MapVector mapId="world-merc" />
|
|
</CardBody>
|
|
</Card>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<Card>
|
|
<CardBody>
|
|
<CardTitle>Map with markers</CardTitle>
|
|
<MapVector mapId="world-markers" />
|
|
</CardBody>
|
|
</Card>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<Card>
|
|
<CardBody>
|
|
<CardTitle>Map with markers and lines</CardTitle>
|
|
<MapVector mapId="world-lines" />
|
|
</CardBody>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
</DefaultLayout>
|