This repository was archived by the owner on Apr 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TokyoCityMapCard を largemap.vue から分離し単独表示用の設定を追加
- Loading branch information
1 parent
e2e7640
commit 7febdd7
Showing
4 changed files
with
44 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<template> | ||
<v-col cols="12" md="12" class="DataCard"> | ||
<map-card | ||
:title="''" | ||
:caption="$t('※7:30〜8:30の平均値')" | ||
:title-id="'tokyo-city-heatmap'" | ||
:chart-id="'tokyo-city-chart'" | ||
:map-id="'tokyo-city-map'" | ||
:initial-bounds="[ | ||
[139.695239, 35.676437], | ||
[139.773774, 35.694493] | ||
]" | ||
:map-height="640" | ||
:map-options="{ interactive: true }" | ||
:unit="'人'" | ||
:url="'https://ds.yahoo.co.jp/datapolicy/'" | ||
:source-link-header="$t('※本データは2020年3月31日までの掲載となります')" | ||
:heatmap-legend="[20000, 40000, 60000]" | ||
:link-string="$t('ヤフー・データソリューション')" | ||
:date="''" | ||
/> | ||
</v-col> | ||
</template> | ||
|
||
<script> | ||
import MapCard from '@/components/MapCard.vue' | ||
export default { | ||
components: { | ||
MapCard | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters