Skip to content

Commit

Permalink
fix geometries coordinates types
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Pavilonets authored and d-koppenhagen committed Jun 25, 2024
1 parent f943ff3 commit ee8fb7f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/geometries/OlGeomLineString.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import useGeometry from "@/composables/useGeometry";
const props = withDefaults(
defineProps<{
coordinates: number[];
coordinates: number[][];
opt_layout?: string;
}>(),
{
Expand Down
2 changes: 1 addition & 1 deletion src/components/geometries/OlGeomMultiLineString.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import useGeometry from "@/composables/useGeometry";
const props = withDefaults(
defineProps<{
coordinates: number[];
coordinates: number[][][];
opt_layout?: string;
}>(),
{
Expand Down
2 changes: 1 addition & 1 deletion src/components/geometries/OlGeomMultiPoint.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import useGeometry from "@/composables/useGeometry";
const props = withDefaults(
defineProps<{
coordinates: number[];
coordinates: number[][];
opt_layout?: string;
}>(),
{
Expand Down
2 changes: 1 addition & 1 deletion src/components/geometries/OlGeomMultiPolygon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import useGeometry from "@/composables/useGeometry";
const props = withDefaults(
defineProps<{
coordinates: number[];
coordinates: number[][][][];
opt_layout?: string;
}>(),
{
Expand Down
2 changes: 1 addition & 1 deletion src/components/geometries/OlGeomPolygon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import useGeometry from "@/composables/useGeometry";
const props = withDefaults(
defineProps<{
coordinates: number[];
coordinates: number[][][];
opt_layout?: string;
}>(),
{
Expand Down

0 comments on commit ee8fb7f

Please sign in to comment.