Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JIDEA-171: Add Antarctica to the globe #94

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions components/Globe.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import { rgba2hex } from "@amcharts/amcharts5/.internal/core/util/Color";
import * as am5 from "@amcharts/amcharts5/index";
import * as am5map from "@amcharts/amcharts5/map";
import am5themes_Animated from "@amcharts/amcharts5/themes/Animated";
import worldLow from "@amcharts/amcharts5-geodata/worldLow";
import throttle from "lodash.throttle";

const appStore = useAppStore();
Expand Down Expand Up @@ -299,6 +300,10 @@ const setUpBackgroundSeries = () => {
backgroundSeries.mapPolygons.template.on("active", (_active, target) => handlePolygonActive(target, prevBackgroundPolygon));
};

const setUpAntarcticaSeries = () => {
initializeSeries({ ...backgroundSeriesSettings, geoJSON: worldLow, include: ["AQ"] });
};

const setUpSelectableCountriesSeries = () => {
selectableCountriesSeries = initializeSeries({ ...selectableCountriesSeriesSettings, reverseGeodata: false });
selectableCountriesSeries.mapPolygons.template.setAll({
Expand Down Expand Up @@ -350,6 +355,7 @@ const setUpChart = () => {
root.setThemes([am5themes_Animated.new(root)]);
chart = root.container.children.push(am5map.MapChart.new(root, chartDefaultSettings));
setUpBackgroundSeries();
setUpAntarcticaSeries();
setUpSelectableCountriesSeries();
setUpDisputedAreasSeries();
gentleRotateAnimation = createRotateAnimation();
Expand Down