ol-geom-multi-point
ol-geom--multi-point can be used inside a ol-feature to draw multiple points at once.
Demo
Setup
Plugin usage
This component is part of the Geometries
plugin. If not installed globally, you need to import and use
the plugin in your main.ts
or use the explicit component import (see section below).
Import and use the Geometries
plugin
ts
import { createApp } from "vue";
import App from "./App.vue";
import {
Map,
Layers,
Sources,
Geometries,
} from "vue3-openlayers";
const app = createApp(App);
// ...
app.use(Geometries);
// ...
Explicit import
If you don't want to install a plugin, you can import the component explicitly. It's available as a child of the named export Geometries
.
NOTE
The following documentation refers to the plugin usage. Please make sure to adopt the component names, when you decided to use explicit component imports (e. g. <ol-map>
becomes <Map.OlMap>
etc.).
Usage
Plugin Usage | Explicit Import |
---|---|
<ol-geom-multi-point> | <Geometries.OlGeomMultiPoint> |
vue
<template>
<ol-map
:loadTilesWhileAnimating="true"
:loadTilesWhileInteracting="true"
style="height: 400px"
>
<ol-view
ref="view"
:center="center"
:zoom="zoom"
:projection="projection"
/>
<ol-tile-layer>
<ol-source-osm />
</ol-tile-layer>
<ol-vector-layer>
<ol-source-vector>
<ol-feature>
<ol-geom-multi-point
:coordinates="[
[116.547539, 40.450996],
[116.544639, 40.451996],
[116.546739, 40.451996],
[116.546739, 40.448996],
]"
></ol-geom-multi-point>
<ol-style>
<ol-style-circle :radius="radius">
<ol-style-fill :color="fillColor"></ol-style-fill>
<ol-style-stroke
:color="strokeColor"
:width="strokeWidth"
></ol-style-stroke>
</ol-style-circle>
</ol-style>
</ol-feature>
<ol-feature>
<ol-geom-polygon
:coordinates="[
[
[116.54825, 40.44664],
[116.55125, 40.44664],
[116.55175, 40.45364],
[116.54875, 40.45364],
[116.54825, 40.44664],
],
]"
></ol-geom-polygon>
<ol-style>
<ol-style-fill color="red" />
</ol-style>
</ol-feature>
<ol-feature>
<ol-geom-polygon
:coordinates="[
[
[116.55325, 40.44364],
[116.55625, 40.44364],
[116.55675, 40.45164],
[116.55375, 40.45164],
[116.55325, 40.44364],
],
]"
></ol-geom-polygon>
<ol-style>
<ol-style-fill :gradient="linearGradient" />
</ol-style>
</ol-feature>
<ol-feature>
<ol-geom-polygon
:coordinates="[
[
[116.53415, 40.45154],
[116.54245, 40.45154],
[116.54385, 40.44664],
[116.53555, 40.44664],
[116.53415, 40.45154],
],
]"
></ol-geom-polygon>
<ol-style>
<ol-style-fill :gradient="radialGradient" />
</ol-style>
</ol-feature>
</ol-source-vector>
</ol-vector-layer>
</ol-map>
</template>
<script setup>
import { ref } from "vue";
const center = ref([116.54875, 40.45064]);
const projection = ref("EPSG:4326");
const zoom = ref(15);
const radius = ref(10);
const strokeWidth = ref(4);
const strokeColor = ref("red");
const fillColor = ref("white");
const linearGradient = {
type: "linear",
x0: 0,
y0: 0,
x1: 0,
y1: 256,
colorStops: [
[0, "red"], // Start color
[0.5, "yellow"], // Middle color
[1, "green"], // End color
],
};
const radialGradient = {
type: "radial",
x0: 128,
y0: 128,
r0: 0,
x1: 128,
y1: 128,
r1: 128,
colorStops: [
[0, "blue"], // Center color
[0.5, "cyan"], // Middle color
[1, "white"], // Edge color
],
};
</script>
Properties
coordinates
- Type:
number[][]
An array of points in units of the map's projection.